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

svn commit: r832778 - /httpd/httpd/trunk/acinclude.m4

Author: trawick
Date: Wed Nov  4 15:55:10 2009
New Revision: 832778

URL: http://svn.apache.org/viewvc?rev=832778&view=rev
Log:
Add a LoadModule directive for the default MPM to the conf file when building MPMs
as shared modules.

Modified:
    httpd/httpd/trunk/acinclude.m4

Modified: httpd/httpd/trunk/acinclude.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/acinclude.m4?rev=832778&r1=832777&r2=832778&view=diff
==============================================================================
--- httpd/httpd/trunk/acinclude.m4 (original)
+++ httpd/httpd/trunk/acinclude.m4 Wed Nov  4 15:55:10 2009
@@ -248,6 +248,10 @@
 static =
 shared = $libname
 EOF
+            # add default MPM to LoadModule list
+            if test $1 = $default_mpm; then
+                DSO_MODULES="$DSO_MODULES mpm_$1"
+            fi
         fi
         $4
     fi