From: Jeff Trawick Date: Thu, 14 Apr 2011 19:16:44 +0000 (+0000) Subject: move -L/path/to/pcrelib -lpcre out beyond all the LDFLAGS X-Git-Tag: 2.3.12~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a6c58716f901d10d42fc29f8ca0ca90c4f53c716;p=apache move -L/path/to/pcrelib -lpcre out beyond all the LDFLAGS this fixes unresolved symbol errors on on MinGW git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1092445 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 93d6029dc7..417ab25397 100644 --- a/configure.in +++ b/configure.in @@ -204,9 +204,7 @@ else AC_MSG_ERROR([pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/]) fi APACHE_SUBST(PCRE_LIBS) - -dnl Add PCRE_LIBS to HTTPD_LDFLAGS -APR_ADDTO(HTTPD_LDFLAGS, [\$(PCRE_LIBS)]) +APR_ADDTO(AP_LIBS, [\$(PCRE_LIBS)]) echo $ac_n "${nl}Configuring Apache httpd ...${nl}"