trawick 2003/06/11 08:10:46
Modified: . configure.in Log: pick up apr-determined cflags and cppflags for apr-util configure Revision Changes Path 1.67 +4 -1 apr-util/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr-util/configure.in,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- configure.in 28 May 2003 04:45:46 -0000 1.66 +++ configure.in 11 Jun 2003 15:10:45 -0000 1.67 @@ -80,10 +80,13 @@ dnl dnl even though we use apr_rules.mk for building apr-util, we need dnl to grab CC and CPP ahead of time so that apr-util config tests -dnl use the same compiler as APR +dnl use the same compiler as APR; we need the same compiler options +dnl and feature test macros as well dnl APR_SETIFNULL(CC, `$apr_config --cc`) APR_SETIFNULL(CPP, `$apr_config --cpp`) +APR_ADDTO(CFLAGS, `$apr_config --cflags`) +APR_ADDTO(CPPFLAGS, `$apr_config --cppflags`) dnl Find LDAP library dnl Determine what DBM backend type to use.
