From: Takashi Sato Date: Sat, 10 Oct 2009 05:32:37 +0000 (+0000) Subject: configure: Fix THREADED_MPMS so that mod_cgid is X-Git-Tag: 2.3.3~176 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d80f3a669abbc87c17399024b74730f2cb045218;p=apache configure: Fix THREADED_MPMS so that mod_cgid is enabled again for worker MPM. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@823794 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 8f509176eb..640e42087e 100644 --- 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 , 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 , Brian France ] diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 4c4f0b3fef..04d8562981 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -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