diff options
author | Stuart Herbert <stuart@gentoo.org> | 2005-06-11 09:09:00 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2005-06-11 09:09:00 +0000 |
commit | ee4dafc925f9a4bf63d65532d486db3b6563c9db (patch) | |
tree | e8bd1de12aeb082160d2a5c1e7ab888d6bfdc4bb | |
parent | Removed old ebuilds (diff) | |
download | gentoo-2-ee4dafc925f9a4bf63d65532d486db3b6563c9db.tar.gz gentoo-2-ee4dafc925f9a4bf63d65532d486db3b6563c9db.tar.bz2 gentoo-2-ee4dafc925f9a4bf63d65532d486db3b6563c9db.zip |
Disabled hardenedphp for now
-rw-r--r-- | eclass/php5-sapi-r2.eclass | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/eclass/php5-sapi-r2.eclass b/eclass/php5-sapi-r2.eclass index 03302b0ea8d2..86f60f4d09fe 100644 --- a/eclass/php5-sapi-r2.eclass +++ b/eclass/php5-sapi-r2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php5-sapi-r2.eclass,v 1.16 2005/06/11 00:17:28 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5-sapi-r2.eclass,v 1.17 2005/06/11 09:09:00 stuart Exp $ # # eclass/php5-sapi-r2.eclass # Eclass for building different php5 SAPI instances @@ -122,6 +122,19 @@ EXPORT_FUNCTIONS pkg_setup src_compile src_install src_unpack pkg_postinst php5-sapi-r2_check_awkward_uses() { + # disabled hardenedphp after many reports of problems w/ apache + # need to look into this at some point + + if useq hardenedphp ; then + eerror + eerror "hardenedphp is reported to break php for some users." + eerror "We've disabled this feature for now until it has been" + eerror "thoroughly investigated." + eerror + eerror "Please disable the hardenedphp USE flag" + die "hardenedphp support disabled" + fi + # snmp support seems broken, haven't looked into a fix for it yet if useq snmp && [ "$PHP_PV" = "5.0.3" ] ; then |