]> granicus.if.org Git - apache/commitdiff
Currently pcre/config.h and pcre/internal.h are getting installed - it
authorAaron Bannert <aaron@apache.org>
Wed, 23 Jan 2002 07:10:16 +0000 (07:10 +0000)
committerAaron Bannert <aaron@apache.org>
Wed, 23 Jan 2002 07:10:16 +0000 (07:10 +0000)
seems they aren't used, and adding a rogue config.h into the include
path can cause problems for a module which picks it up.

(Better late than never -- this patch was submitted Fri, 7 Dec 2001.)

Submitted by: Joe Orton <joe@manyfish.co.uk>
Reviewed by: Aaron Bannert

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92979 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
Makefile.in

diff --git a/CHANGES b/CHANGES
index 02439d6146d18a54e0b48a297b733aba39d82d7f..0377dbf10268bc1ac75df9c867c8ddec59a1b25e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,7 @@
 Changes with Apache 2.0.31-dev
+  *) Do not install unnecessary pcre headers like config.h and internal.h.
+     [Joe Orton <joe@manyfish.co.uk>]
+
   *) Change in quick_hanlder behavior for subrequests. it now passes DONE
      (as it does for a normal request). quick_handled sub-requests now work
      in mod-include [Ian Holsman]
index 9ea6e662075a231116a423e2a6526e5e14ec73f8..6d8a23daca0c6c564ab08521f370dd472b0cead6 100644 (file)
@@ -158,7 +158,7 @@ install-include:
        @cp -p $(srcdir)/modules/http/mod_core.h $(includedir)
        @cp -p $(srcdir)/modules/proxy/mod_proxy.h $(includedir)
        @cp -p $(srcdir)/modules/ssl/*.h $(includedir)
-       @cp -p $(srcdir)/srclib/pcre/*.h $(includedir)
+       @cp -p $(srcdir)/srclib/pcre/pcre*.h $(includedir)
        @cp -p $(srcdir)/srclib/apr/include/*.h $(includedir)
        @cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir)
        @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir)