diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2010-10-12 19:34:49 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2010-10-12 19:34:49 +0000 |
commit | 1b1c1a08ca798438529d6c61206c8add523e4080 (patch) | |
tree | 94875130e94ccd2cd51607f9bbf29fb3b9c82a65 /eclass | |
parent | Remove old ebuilds (diff) | |
download | gentoo-2-1b1c1a08ca798438529d6c61206c8add523e4080.tar.gz gentoo-2-1b1c1a08ca798438529d6c61206c8add523e4080.tar.bz2 gentoo-2-1b1c1a08ca798438529d6c61206c8add523e4080.zip |
Also eqawarn if mhash is used with require_php_with_use
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/depend.php.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/depend.php.eclass b/eclass/depend.php.eclass index 3424ad9de670..e50d385137eb 100644 --- a/eclass/depend.php.eclass +++ b/eclass/depend.php.eclass @@ -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/eclass/depend.php.eclass,v 1.27 2010/10/02 15:23:57 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.28 2010/10/12 19:34:49 olemarkus Exp $ # Author: Stuart Herbert <stuart@gentoo.org> # Author: Luca Longinotti <chtekk@gentoo.org> @@ -208,8 +208,8 @@ require_php_with_use() { for x in $@ ; do case $x in - pcre|spl|reflection) - eqawarn "require_php_with_use MUST NOT check for the pcre, spl or reflection USE flag." + pcre|spl|reflection|mhash) + eqawarn "require_php_with_use MUST NOT check for the pcre, spl, mhash or reflection USE flag." eqawarn "These USE flags are removed from >=dev-lang/php-5.3 and your ebuild will break" eqawarn "if you check the USE flags against PHP 5.3 ebuilds." eqawarn "Please use USE dependencies from EAPI 2 instead" |