diff options
author | Sebastian Bergmann <sebastian@gentoo.org> | 2005-05-06 05:10:41 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@gentoo.org> | 2005-05-06 05:10:41 +0000 |
commit | 58104432148bacfbf1b290593f28f5f5c3cd4e36 (patch) | |
tree | 5d92f695a30266e9e55edd2a1aac3b9077163936 /eclass | |
parent | reverse GNU userland logic since a binary called "gm4" is not common (diff) | |
download | gentoo-2-58104432148bacfbf1b290593f28f5f5c3cd4e36.tar.gz gentoo-2-58104432148bacfbf1b290593f28f5f5c3cd4e36.tar.bz2 gentoo-2-58104432148bacfbf1b290593f28f5f5c3cd4e36.zip |
Support for Hardened-PHP for PHP versions 4.3.9, 4.3.10, and 4.3.11.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-sapi.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/php-sapi.eclass b/eclass/php-sapi.eclass index b6a7255943bf..97202479cc83 100644 --- a/eclass/php-sapi.eclass +++ b/eclass/php-sapi.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/php-sapi.eclass,v 1.58 2005/05/05 16:44:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-sapi.eclass,v 1.59 2005/05/06 05:10:41 sebastian Exp $ # Author: Robin H. Johnson <robbat2@gentoo.org> inherit eutils flag-o-matic multilib @@ -56,6 +56,9 @@ case "$PV" in 4.3.6) HARDENEDPHP_PATCH="hardened-php-$PV-0.1.2.patch.gz" ;; 4.3.7) HARDENEDPHP_PATCH="hardened-php-$PV-0.1.2.patch.gz" ;; 4.3.8) HARDENEDPHP_PATCH="hardened-php-$PV-0.2.2.patch.gz" ;; + 4.3.9) HARDENEDPHP_PATCH="hardened-php-$PV-0.2.6.patch.gz" ;; + 4.3.10) HARDENEDPHP_PATCH="hardened-php-$PV-0.2.7.patch.gz" ;; + 4.3.11) HARDENEDPHP_PATCH="hardened-php-$PV-0.2.7.patch.gz" ;; esac [ -n "$HARDENEDPHP_PATCH" ] && SRC_URI="${SRC_URI} hardenedphp? ( http://www.hardened-php.net/$HARDENEDPHP_PATCH )" |