diff options
author | 2007-09-08 16:52:28 +0000 | |
---|---|---|
committer | 2007-09-08 16:52:28 +0000 | |
commit | 26b48a918e1afafb87538e9bbe19577eb5359033 (patch) | |
tree | 6ab8839073ab7494ed2e6f657b4684f8d2c392eb /www-servers | |
parent | Stable for HPPA (bug #191417). (diff) | |
download | gentoo-2-26b48a918e1afafb87538e9bbe19577eb5359033.tar.gz gentoo-2-26b48a918e1afafb87538e9bbe19577eb5359033.tar.bz2 gentoo-2-26b48a918e1afafb87538e9bbe19577eb5359033.zip |
fix mod_cgi(d) selection on threaded MPMs
(Portage version: 2.1.3.7)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/apache/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/apache/apache-2.2.6.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/www-servers/apache/ChangeLog b/www-servers/apache/ChangeLog index 42db771248c7..8984ed630f37 100644 --- a/www-servers/apache/ChangeLog +++ b/www-servers/apache/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/apache # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.20 2007/09/08 16:23:45 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.21 2007/09/08 16:52:28 hollow Exp $ + + 08 Sep 2007; Benedikt Böhm <hollow@gentoo.org> apache-2.2.6.ebuild: + fix mod_cgi(d) selection on threaded MPMs 08 Sep 2007; Jeroen Roovers <jer@gentoo.org> apache-2.0.59-r5.ebuild: Stable for HPPA (bug #190331). diff --git a/www-servers/apache/apache-2.2.6.ebuild b/www-servers/apache/apache-2.2.6.ebuild index 3073010e5fd5..94ccfac3ad4e 100644 --- a/www-servers/apache/apache-2.2.6.ebuild +++ b/www-servers/apache/apache-2.2.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.2.6.ebuild,v 1.2 2007/09/08 15:42:27 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.2.6.ebuild,v 1.3 2007/09/08 16:52:28 hollow Exp $ inherit eutils flag-o-matic multilib autotools @@ -147,7 +147,7 @@ src_compile() { myconf="${myconf} --enable-authnz-ldap=${modtype} --enable-ldap=${modtype}" fi - if use threads; then + if use threads || use mpm-worker || use mpm-event; then mods="${mods} cgid" myconf="${myconf} --enable-cgid=${modtype}" else |