jorton 2004/09/20 05:12:01
Modified: . configure.in
Log:
* configure.in: Ensure that $CC and $CPP are correctly passed through
to the pcre configure script if config caching is disabled (the
autoconf 2.5x default).
Revision Changes Path
1.269 +4 -0 httpd-2.0/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/httpd-2.0/configure.in,v
retrieving revision 1.268
retrieving revision 1.269
diff -d -w -u -r1.268 -r1.269
--- configure.in 5 Sep 2004 14:10:58 -0000 1.268
+++ configure.in 20 Sep 2004 12:12:01 -0000 1.269
@@ -116,6 +116,10 @@
AC_PROG_CC
AC_PROG_CPP
+# Likewise, ensure that CC and CPP are passed through to the pcre
+# configure script if caching is disabled (the autoconf 2.5x default).
+export CC; export CPP
+
echo $ac_n "${nl}Configuring PCRE regular expression library ...${nl}"
APR_SUBDIR_CONFIG(srclib/pcre,
|