]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r880794 from trunk:
authorJim Jagielski <jim@apache.org>
Fri, 18 Dec 2009 14:12:02 +0000 (14:12 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 18 Dec 2009 14:12:02 +0000 (14:12 +0000)
Build: fix --with-module to work as documented
PR 43881
Submitted: Gez Saunders
Reviewed: Nick Kew

Submitted by: niq
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@892259 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/config5.m4

diff --git a/CHANGES b/CHANGES
index 5d5d88c03241346d03b800b915c15c660af348a2..79f44ad20283c4dc1921a9ef9266d81093a90609 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,9 @@ Changes with Apache 2.2.15
      control is still vulnerable, unless using OpenSSL >= 0.9.8l.  
      [Joe Orton, Ruediger Pluem]
 
+   *) Build: fix --with-module to work as documented
+      PR 43881 [Gez Saunders <???>]
+
    *) mod_mime: Make RemoveType override the info from TypesConfig.
       PR 38330. [Stefan Fritsch]
 
diff --git a/STATUS b/STATUS
index a807febe851b6c61e35012952c8aed46ac84e947..dd4a80114f6d057da35701e6180c65809488b3ec 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -87,11 +87,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  * build: fix --with-module option to work as documented
-    PR 43881
-    Patch: http://svn.apache.org/viewvc?rev=880794&view=rev
-    +1: niq, pgollucci, rjung, jim
-
   * mod_disk_cache, mod_mem_cache: don't cache incomplete responses,
     per RFC 2616, 13.8.
     PR 15866
index b8a5868bfefba3443f5d49337cf38b3942022f8d..7dd021ee29a4e9106ea046e30f90ff197e8dc5b7 100644 (file)
@@ -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"