Skip to content

Commit fefab18

Browse files
committed
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 <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
1 parent 03a53a8 commit fefab18

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
Changes with Apache 2.0.31-dev
2+
*) Do not install unnecessary pcre headers like config.h and internal.h.
3+
[Joe Orton <joe@manyfish.co.uk>]
4+
25
*) Change in quick_hanlder behavior for subrequests. it now passes DONE
36
(as it does for a normal request). quick_handled sub-requests now work
47
in mod-include [Ian Holsman]

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ install-include:
158158
@cp -p $(srcdir)/modules/http/mod_core.h $(includedir)
159159
@cp -p $(srcdir)/modules/proxy/mod_proxy.h $(includedir)
160160
@cp -p $(srcdir)/modules/ssl/*.h $(includedir)
161-
@cp -p $(srcdir)/srclib/pcre/*.h $(includedir)
161+
@cp -p $(srcdir)/srclib/pcre/pcre*.h $(includedir)
162162
@cp -p $(srcdir)/srclib/apr/include/*.h $(includedir)
163163
@cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir)
164164
@cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir)

0 commit comments

Comments
 (0)