From: hno <> Date: Fri, 30 Nov 2001 17:23:17 +0000 (+0000) Subject: Support OpenSSL headers outside standard system locations.. X-Git-Tag: SQUID_3_0_PRE1~1265 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bcce53ced4db34f50fa9c52656f73297cc58c86c;p=thirdparty%2Fsquid.git Support OpenSSL headers outside standard system locations.. (need to use CPPFLAGS, not CFLAGS, else configure won't find the headers) --- diff --git a/configure.in b/configure.in index 176f11a782..0515380b48 100644 --- a/configure.in +++ b/configure.in @@ -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 ])