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 | 487343fca86ca03e246e21be270751893cd03bad (patch) | |
tree | 83e9a94e67fdde99e2618bde265b235c6de124b5 /eclass | |
parent | Enabled mysqli support for php-5.1 (diff) | |
download | historical-487343fca86ca03e246e21be270751893cd03bad.tar.gz historical-487343fca86ca03e246e21be270751893cd03bad.tar.bz2 historical-487343fca86ca03e246e21be270751893cd03bad.zip |
Disabled libedit for now
Diffstat (limited to '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 |