summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2005-02-04 00:39:21 +0100
committerJustin Erenkrantz <jerenkrantz@apache.org>2005-02-04 00:39:21 +0100
commit47d226131880f8f293f80ed4ea3a8356eb20c429 (patch)
tree13ad412096aecb8cdf727de2a5437c42aea2b589 /server
parentmod_proxy: Fix ProxyRemoteMatch directive. (diff)
downloadapache2-47d226131880f8f293f80ed4ea3a8356eb20c429.tar.xz
apache2-47d226131880f8f293f80ed4ea3a8356eb20c429.zip
Fix --with-apr=/usr and/or --with-apr-util=/usr.
PR: 29740 Submitted by: Max Bowsher <maxb ukf.net> Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@151255 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/server/Makefile.in b/server/Makefile.in
index 5f5df99b9f..97b602f7d9 100644
--- a/server/Makefile.in
+++ b/server/Makefile.in
@@ -30,7 +30,8 @@ test_char.h: gen_test_char
util.lo: test_char.h
-EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR) $(APR_INCLUDEDIR) $(APU_INCLUDEDIR) $(top_srcdir)/modules/http
+EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR) $(top_srcdir)/modules/http
+EXPORT_DIRS_APR = $(APR_INCLUDEDIR) $(APU_INCLUDEDIR)
# If export_files is a dependency here, but we remove it during this stage,
# when exports.c is generated, make will not detect that export_files is no
@@ -58,6 +59,10 @@ export_files:
for dir in $(EXPORT_DIRS); do \
ls $$dir/*.h >> $$tmp; \
done; \
+ for dir in $(EXPORT_DIRS_APR); do \
+ ls $$dir/ap[ru].h >> $$tmp; \
+ ls $$dir/ap[ru]_*.h >> $$tmp; \
+ done; \
sort -u $$tmp > $@; \
rm -f $$tmp