]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix --with-apr=/usr and/or --with-apr-util=/usr.
authorJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 4 Feb 2005 17:40:14 +0000 (17:40 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Fri, 4 Feb 2005 17:40:14 +0000 (17:40 +0000)
MFC: 151255
PR: 297409
Submitted by: Max Bowsher <maxb ukf.net>
Reviewed by: jerenkrantz, trawick, fielding, pquerna

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@151377 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/Makefile.in

diff --git a/CHANGES b/CHANGES
index df58a4193f53e9dbb2489ba35e42758e62474c8c..17e8c6d87f6dd84f0fc40fe5b666a9445050382b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.53
 
+  *) Fix --with-apr=/usr and/or --with-apr-util=/usr.  PR 29740.
+     [Max Bowsher <maxb ukf.net>]
+
   *) mod_proxy: Fix ProxyRemoteMatch directive.  PR 33170.
      [Rici Lake <rici ricilake.net>]
 
index b5598847946ddba54e2593e7d9fb759e87017b44..f51a683eb330d5705fdcc88e216dd5ab63f870cb 100644 (file)
@@ -31,7 +31,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