]> granicus.if.org Git - apache/commitdiff
configure: Fix THREADED_MPMS so that mod_cgid is
authorTakashi Sato <takashi@apache.org>
Sat, 10 Oct 2009 05:32:37 +0000 (05:32 +0000)
committerTakashi Sato <takashi@apache.org>
Sat, 10 Oct 2009 05:32:37 +0000 (05:32 +0000)
enabled again for worker MPM.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@823794 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/mpm/config.m4

diff --git a/CHANGES b/CHANGES
index 8f509176ebe4060596d3842023ddbe7bad23e783..640e42087eeae489bed5944e96e99ac93edc5f9a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,9 @@ Changes with Apache 2.3.3
      mod_proxy_ftp: NULL pointer dereference on error paths.
      [Stefan Fritsch <sf fritsch.de>, Joe Orton]
 
+  *) configure: Fix THREADED_MPMS so that mod_cgid is enabled again 
+     for worker MPM. [Takashi Sato]
+
   *) mod_dav: Provide a mechanism to obtain the request_rec and pathname
      from the dav_resource. [Jari Urpalainen <jari.urpalainen nokia.com>,
      Brian France <brian brianfrance.com>]
index 4c4f0b3fefd193c0953e7c1c698fdf6e1ec2c1e2..04d85629814da50222dec786755e7ec4ada74c32 100644 (file)
@@ -43,7 +43,7 @@ dnl APACHE_MPM_SUPPORTED(name, supports-shared, is_threaded)
 AC_DEFUN(APACHE_MPM_SUPPORTED,[
     SUPPORTED_MPMS="$SUPPORTED_MPMS $1 "
     if test "$3" = "yes"; then
-        THREADED_MPMS="$THREADED_MPMS $1"
+        THREADED_MPMS="$THREADED_MPMS $1 "
     fi
 ])dnl