You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2009/11/16 16:24:35 UTC

svn commit: r880794 - in /httpd/httpd/trunk: CHANGES modules/config5.m4

Author: niq
Date: Mon Nov 16 15:24:34 2009
New Revision: 880794

URL: http://svn.apache.org/viewvc?rev=880794&view=rev
Log:
Build: fix --with-module to work as documented
PR 43881
Submitted: Gez Saunders
Reviewed: Nick Kew


Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/modules/config5.m4

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=880794&r1=880793&r2=880794&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Mon Nov 16 15:24:34 2009
@@ -9,6 +9,9 @@
   *) SECURITY: CVE-2009-3094 (cve.mitre.org)
      mod_proxy_ftp: NULL pointer dereference on error paths.
      [Stefan Fritsch <sf fritsch.de>, 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 <vipul.gupta sun.com>, Sander Temme]

Modified: httpd/httpd/trunk/modules/config5.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/config5.m4?rev=880794&r1=880793&r2=880794&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/config5.m4 (original)
+++ httpd/httpd/trunk/modules/config5.m4 Mon Nov 16 15:24:34 2009
@@ -18,7 +18,7 @@
         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"