diff options
author | Stuart Herbert <stuart@gentoo.org> | 2005-06-11 15:29:33 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2005-06-11 15:29:33 +0000 |
commit | ae01c7c1cfa93adc9c69967c0e3cadda373820e4 (patch) | |
tree | 2d698c3730cd768e1b22b17c60d6264cb5442e14 /eclass/php5-sapi-r3.eclass | |
parent | Enabled mysqli support for php-5.1 (diff) | |
download | gentoo-2-ae01c7c1cfa93adc9c69967c0e3cadda373820e4.tar.gz gentoo-2-ae01c7c1cfa93adc9c69967c0e3cadda373820e4.tar.bz2 gentoo-2-ae01c7c1cfa93adc9c69967c0e3cadda373820e4.zip |
Disabled libedit for now
Diffstat (limited to 'eclass/php5-sapi-r3.eclass')
-rw-r--r-- | eclass/php5-sapi-r3.eclass | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/eclass/php5-sapi-r3.eclass b/eclass/php5-sapi-r3.eclass index ddd3f9a665d0..e46753f11a1a 100644 --- a/eclass/php5-sapi-r3.eclass +++ b/eclass/php5-sapi-r3.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-r3.eclass,v 1.3 2005/06/11 14:55:17 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5-sapi-r3.eclass,v 1.4 2005/06/11 15:29:33 stuart Exp $ # # ######################################################################## # @@ -126,6 +126,15 @@ EXPORT_FUNCTIONS pkg_setup src_compile src_install src_unpack pkg_postinst php5-sapi-r3_check_awkward_uses() { + # unfortunately, libedit support is broken atm + + if useq libedit ; then + eerror + eerror "php-5.1-beta doesn't link successfully if you use libedit" + eerror "Please switch to using readline instead for now." + die "libedit support broken" + fi + # disabled hardenedphp after many reports of problems w/ apache # need to look into this at some point |