diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-08-29 22:34:50 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-08-29 22:34:50 +0000 |
commit | 116c91009f5b3a949fd6156be5297d31a0189bd9 (patch) | |
tree | 627aa17c23c4288bbb29744e5603f8ececaa719f /eclass/php4_4-sapi.eclass | |
parent | version bump (diff) | |
download | gentoo-2-116c91009f5b3a949fd6156be5297d31a0189bd9.tar.gz gentoo-2-116c91009f5b3a949fd6156be5297d31a0189bd9.tar.bz2 gentoo-2-116c91009f5b3a949fd6156be5297d31a0189bd9.zip |
Remove PCRE support through external lib, it's broken (see http://bugs.php.net/bug.php?id=29914).
Diffstat (limited to 'eclass/php4_4-sapi.eclass')
-rw-r--r-- | eclass/php4_4-sapi.eclass | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/eclass/php4_4-sapi.eclass b/eclass/php4_4-sapi.eclass index b2316207bfb9..df3b2c418755 100644 --- a/eclass/php4_4-sapi.eclass +++ b/eclass/php4_4-sapi.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php4_4-sapi.eclass,v 1.26 2006/08/29 19:24:59 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php4_4-sapi.eclass,v 1.27 2006/08/29 22:34:50 chtekk Exp $ # # ######################################################################## # @@ -78,7 +78,6 @@ DEPEND="adabas? ( >=dev-db/unixODBC-1.8.13 ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( >=dev-db/unixODBC-1.8.13 ) - pcre? ( dev-libs/libpcre ) postgres? ( >=dev-db/libpq-7.1 ) readline? ( sys-libs/readline ) recode? ( app-text/recode ) @@ -386,6 +385,7 @@ php4_4-sapi_src_compile() { phpconfutils_extension_disable "overload" "overload" 0 phpconfutils_extension_with "ovrimos" "ovrimos" 1 phpconfutils_extension_enable "pcntl" "pcntl" 1 + phpconfutils_extension_without "pcre-regex" "pcre" 0 phpconfutils_extension_with "pfpro" "pfpro" 1 phpconfutils_extension_with "pgsql" "postgres" 1 phpconfutils_extension_disable "posix" "posix" 0 @@ -489,13 +489,6 @@ php4_4-sapi_src_compile() { phpconfutils_extension_with "solid" "solid" 1 fi - # PCRE support - if useq pcre || phpconfutils_usecheck pcre ; then - phpconfutils_extension_with "pcre-regex" "pcre" 0 "/usr" - else - phpconfutils_extension_without "pcre-regex" "pcre" 0 - fi - # readline/libedit support # You can use readline or libedit, but you can't use both phpconfutils_extension_with "readline" "readline" 0 |