From: Justin Erenkrantz Date: Thu, 6 Jun 2002 06:42:09 +0000 (+0000) Subject: Fix breakage introduced in mod_cgi commit since we need to now include X-Git-Tag: 2.0.37~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec6be43c104d4da4cb0d5bbbba374ceb64192e37;p=apache Fix breakage introduced in mod_cgi commit since we need to now include mod_include's headers all the time. (Also fix mod_proxy header not being listed in builddir for VPATH builds) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95543 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 86124d8060..306bf587a5 100644 --- a/configure.in +++ b/configure.in @@ -115,9 +115,9 @@ dnl then we are running in VPATH mode. if test "$abs_builddir" != "$abs_srcdir"; then USE_VPATH=1 - APR_ADDTO(INCLUDES, [-I. -I\$(srcdir) -I\$(top_builddir)/os/\$(OS_DIR) -I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_builddir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_srcdir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_builddir)/modules/http -I\$(top_srcdir)/modules/http -I\$(top_srcdir)/modules/proxy -I\$(top_builddir)/include -I\$(top_srcdir)/include]) + APR_ADDTO(INCLUDES, [-I. -I\$(srcdir) -I\$(top_builddir)/os/\$(OS_DIR) -I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_builddir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_srcdir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_builddir)/modules/http -I\$(top_srcdir)/modules/http -I\$(top_builddir)/modules/proxy -I\$(top_srcdir)/modules/proxy -I\$(top_builddir)/modules/filters -I\$(top_srcdir)/modules/filters -I\$(top_builddir)/include -I\$(top_srcdir)/include]) else - APR_ADDTO(INCLUDES, [-I. -I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_srcdir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_srcdir)/modules/http -I\$(top_srcdir)/modules/proxy -I\$(top_srcdir)/include]) + APR_ADDTO(INCLUDES, [-I. -I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_srcdir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_srcdir)/modules/http -I\$(top_srcdir)/modules/filters -I\$(top_srcdir)/modules/proxy -I\$(top_srcdir)/include]) fi echo $ac_n "${nl}Applying OS-specific hints for httpd ...${nl}"