]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
More --with-openssl corrections. Was refering to --with-ssl for the path
authorhno <>
Thu, 29 Nov 2001 18:11:01 +0000 (18:11 +0000)
committerhno <>
Thu, 29 Nov 2001 18:11:01 +0000 (18:11 +0000)
argument..

configure.in

index 249baeaa740f5b9835468594e38871a73b57003f..1ec1b6908dab43e5cf9adb0627e8e38955dbc347 100644 (file)
@@ -3,7 +3,7 @@ dnl  Configuration input file for Squid
 dnl
 dnl  Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
 dnl
-dnl  $Id: configure.in,v 1.246 2001/11/29 11:07:02 hno Exp $
+dnl  $Id: configure.in,v 1.247 2001/11/29 11:11:01 hno Exp $
 dnl
 dnl
 dnl
@@ -11,7 +11,7 @@ AC_INIT(src/main.c)
 AC_CONFIG_AUX_DIR(cfgaux)
 AM_INIT_AUTOMAKE(Squid, 2.5-DEVEL)
 AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.246 $)dnl
+AC_REVISION($Revision: 1.247 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -569,7 +569,7 @@ AC_ARG_WITH(openssl,
                          installation can be specified if outside of the
                          system standard directories],
 [ 
-  case "$with_ssl" in
+  case "$with_openssl" in
   yes)
     USE_OPENSSL=1
     ;;
@@ -577,8 +577,8 @@ AC_ARG_WITH(openssl,
     USE_OPENSSL=
     ;;
   *)
-    SSLLIBDIR="$with_ssl/lib"
-    CFLAGS="-I$with_ssl/include $CFLAGS"
+    SSLLIBDIR="$with_openssl/lib"
+    CFLAGS="-I$with_openssl/include $CFLAGS"
     USE_OPENSSL=1
   esac
 ])