]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Only link the httpd binary against PCRE.
authorRainer Jung <rjung@apache.org>
Mon, 4 Jul 2011 17:03:13 +0000 (17:03 +0000)
committerRainer Jung <rjung@apache.org>
Mon, 4 Jul 2011 17:03:13 +0000 (17:03 +0000)
No other support binary needs PCRE.

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

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index b7dcd0be8018faaa8e445c7b731f86978a720c77..afc7a08c46a50d1f602c8121a4c1d7f447784072 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -20,6 +20,9 @@ Changes with Apache 2.3.14
   *) mod_lua, mod_deflate: respect platform specific runpath linker
      flag. [Rainer Jung]
 
+  *) configure: Only link the httpd binary against PCRE. No other support
+     binary needs PCRE. [Rainer Jung]
+
 Changes with Apache 2.3.13
 
   *) ab: Support specifying the local address to use. PR 48930.
index dcb3e9dc801b040806db5278757a2eee1f21149f..80c0ec46b87de099638a61e06144c48a45ee7c92 100644 (file)
@@ -207,7 +207,8 @@ else
   AC_MSG_ERROR([pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/])
 fi
 APACHE_SUBST(PCRE_LIBS)
-APR_ADDTO(AP_LIBS, [\$(PCRE_LIBS)])
+APR_ADDTO(HTTPD_LDFLAGS, [\$(PCRE_LIBS)])
+APACHE_SUBST(HTTPD_LDFLAGS)
 
 echo $ac_n "${nl}Configuring Apache httpd ...${nl}"