From edba27a4659d714e44e9235a23dd2cc135a501e7 Mon Sep 17 00:00:00 2001 From: Aaron Bannert Date: Wed, 23 Jan 2002 07:10:16 +0000 Subject: [PATCH] Currently pcre/config.h and pcre/internal.h are getting installed - it 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 Reviewed by: Aaron Bannert git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92979 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ Makefile.in | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 02439d6146..0377dbf102 100644 --- 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 ] + *) 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] diff --git a/Makefile.in b/Makefile.in index 9ea6e66207..6d8a23daca 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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) -- 2.50.1