Oh, darn. That shouldn't have been there. Well, we probably need it anyway. I'll commit the apr/apr-util changes right now that go with this. -- justinjerenkrantz 2003/01/30 08:50:12 Modified: . configure.in buildconf CHANGES Log: Make buildconf work with out-of-tree apr and apr-util by adding --with-apr and --with-apr-util flags.Submitted by: Thom May <[EMAIL PROTECTED]> Reviewed by: Justin Erenkrantz (with minor stylistic nit) Revision Changes Path 1.239 +5 -5 httpd-2.0/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/httpd-2.0/configure.in,v retrieving revision 1.238 retrieving revision 1.239 diff -u -u -r1.238 -r1.239 --- configure.in 19 Dec 2002 05:28:16 -0000 1.238 +++ configure.in 30 Jan 2003 16:50:11 -0000 1.239 @@ -80,7 +80,7 @@ APR_ADDTO(INCLUDES, `$apr_config --includes`) SHLIBPATH_VAR=`$apr_config --shlib-path-var` APR_BINDIR=`$apr_config --bindir` -APR_INCLUDEDIR=`$apr_config --includes | sed 's|^.*-I\([[^ ]]*apr[[^ ]]*\).*$|\1|'` +APR_INCLUDEDIR=`$apr_config --includedir` echo $ac_n "${nl}Configuring Apache Portable Runtime Utility library...${nl}" @@ -100,7 +100,7 @@ APR_ADDTO(LDFLAGS, `$apu_config --ldflags`) APR_ADDTO(INCLUDES, `$apu_config --includes`) APU_BINDIR=`$apu_config --bindir` -APU_INCLUDEDIR=`$apu_config --includes | sed 's|^ *-I\([[^ ]]*apr[[^ ]]*\).*$|\1|' +APU_INCLUDEDIR=`$apu_config --includedir` echo $ac_n "${nl}Configuring PCRE regular expression library ...${nl}"
--On Thursday, January 30, 2003 4:50 PM +0000 [EMAIL PROTECTED]
wrote: