]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Support OpenSSL headers outside standard system locations..
authorhno <>
Fri, 30 Nov 2001 17:23:17 +0000 (17:23 +0000)
committerhno <>
Fri, 30 Nov 2001 17:23:17 +0000 (17:23 +0000)
(need to use CPPFLAGS, not CFLAGS, else configure won't find the headers)

configure.in

index 176f11a782397654379720508609a38fbec8b95f..0515380b48f15721a47a4d1843b4ce9b9108709b 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.248 2001/11/30 10:00:17 hno Exp $
+dnl  $Id: configure.in,v 1.249 2001/11/30 10:23:17 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.248 $)dnl
+AC_REVISION($Revision: 1.249 $)dnl
 AC_PREFIX_DEFAULT(/usr/local/squid)
 AM_MAINTAINER_MODE
 
@@ -578,7 +578,7 @@ AC_ARG_WITH(openssl,
     ;;
   *)
     SSLLIBDIR="$with_openssl/lib"
-    CFLAGS="-I$with_openssl/include $CFLAGS"
+    CPPFLAGS="-I$with_openssl/include $CPPFLAGS"
     USE_OPENSSL=1
   esac
 ])