]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1652930, r1652933 from trunk
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 24 Feb 2015 06:30:03 +0000 (06:30 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 24 Feb 2015 06:30:03 +0000 (06:30 +0000)
   * acinclude.m4: Generate #LoadModule directive in default httpd.conf for
                   every --enable-mpms-shared. PR 53882.

Submitted by: olli hauer <ohauer gmx.de>, Yann Ylavic
Reviewed by: ylavic, rjung, jailletc36
Backported by: jailletc36

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

CHANGES
STATUS
acinclude.m4

diff --git a/CHANGES b/CHANGES
index 690032901c3677e55772e785941e23ba6b3189bd..ef32d263841b2dcab31da1f176d3fae1a6ccb52d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@
 
 Changes with Apache 2.4.13
 
+  *) acinclude.m4: Generate #LoadModule directive in default httpd.conf for
+     every --enable-mpms-shared. PR 53882.  [olli hauer <ohauer gmx.de>,
+     Yann Ylavic]
+
   *) mod_authn_dbd: Fix the error message logged in case of error while querying
      the database. This is associated to AH01656 and AH01661. [Christophe Jaillet]
 
diff --git a/STATUS b/STATUS
index bbac82e031923f9db9451029733ae67e0e1c25e7..0799733c8766ceb9d9ba274738d4660b7f28bf38 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -112,13 +112,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
      2.4.x patch: trunk works (module CHANGES)
      +1: ylavic, wrowe, minfrin
 
-   * acinclude.m4: Generate #LoadModule directive in default httpd.conf for
-                   every --enable-mpms-shared. PR 53882.
-     trunk patch: http://svn.apache.org/r1652930
-                  http://svn.apache.org/r1652933 (CHANGES)
-     2.4.x patch: trunks works (modulo CHANGES)
-     +1: ylavic, rjung, jailletc36
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 580eb4abd8703abc1ee224dee0fe0af0091931bc..6fa6382613eea07642cbbd885371f6ce901f7598 100644 (file)
@@ -267,9 +267,9 @@ DISTCLEAN_TARGETS = modules.mk
 static =
 shared = $libname
 EOF
+            DSO_MODULES="$DSO_MODULES mpm_$1"
             # add default MPM to LoadModule list
             if test $1 = $default_mpm; then
-                DSO_MODULES="$DSO_MODULES mpm_$1"
                 ENABLED_DSO_MODULES="${ENABLED_DSO_MODULES},mpm_$1"
             fi
         fi