From: Nick Kew Date: Mon, 16 Nov 2009 15:24:34 +0000 (+0000) Subject: Build: fix --with-module to work as documented X-Git-Tag: 2.3.4~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48726802e11aec56526fa39a86c5e6c83847d567;p=thirdparty%2Fapache%2Fhttpd.git Build: fix --with-module to work as documented PR 43881 Submitted: Gez Saunders Reviewed: Nick Kew git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@880794 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index cb6d9820085..357e07bf56d 100644 --- a/CHANGES +++ b/CHANGES @@ -9,6 +9,9 @@ Changes with Apache 2.3.3 *) SECURITY: CVE-2009-3094 (cve.mitre.org) mod_proxy_ftp: NULL pointer dereference on error paths. [Stefan Fritsch , Joe Orton] + + *) Build: fix --with-module to work as documented + PR 43881 [Gez Saunders ] *) mod_ssl: enable support for ECC keys and ECDH ciphers. Tested against OpenSSL 1.0.0b3. [Vipul Gupta , Sander Temme] diff --git a/modules/config5.m4 b/modules/config5.m4 index b8a5868bfef..7dd021ee29a 100644 --- a/modules/config5.m4 +++ b/modules/config5.m4 @@ -18,7 +18,7 @@ AC_ARG_WITH(module, fi cp $pkg $modpath_current/$modfilec fi - module=`echo $pkg | sed -e 's;\(.*/\)*mod_\(.*\).c;\2;'` + module=`echo $pkg | sed -e 's;\(.*/\).*mod_\(.*\).c;\2;'` objects="mod_$module.lo" # The filename of a convenience library must have a "lib" prefix: libname="libmod_$module.la"