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 | a6387cf62e61ce3998eaf1b51d1c6fe7460ca3d1 (patch) | |
tree | 8be37f111708d6140063cc0ad82f9efc95997a52 /eclass/php-sapi.eclass | |
parent | reverse GNU userland logic since a binary called "gm4" is not common (diff) | |
download | historical-a6387cf62e61ce3998eaf1b51d1c6fe7460ca3d1.tar.gz historical-a6387cf62e61ce3998eaf1b51d1c6fe7460ca3d1.tar.bz2 historical-a6387cf62e61ce3998eaf1b51d1c6fe7460ca3d1.zip |
Support for Hardened-PHP for PHP versions 4.3.9, 4.3.10, and 4.3.11.
Diffstat (limited to 'eclass/php-sapi.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 )" |