diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-09-02 02:27:42 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-09-02 02:27:42 +0000 |
commit | d5c04273acd70aadb667aefd4707ed03c13f0634 (patch) | |
tree | 9fd4ab8af9c8d753afb1faba63e3ceffc19d2d09 /dev-php | |
parent | disabled gmp support (diff) | |
download | gentoo-2-d5c04273acd70aadb667aefd4707ed03c13f0634.tar.gz gentoo-2-d5c04273acd70aadb667aefd4707ed03c13f0634.tar.bz2 gentoo-2-d5c04273acd70aadb667aefd4707ed03c13f0634.zip |
fixed mysql configure option
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/php/ChangeLog | 5 | ||||
-rw-r--r-- | dev-php/php/php-4.2.2-r1.ebuild | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/dev-php/php/ChangeLog b/dev-php/php/ChangeLog index 19cbce310fd6..1d1633fc811b 100644 --- a/dev-php/php/ChangeLog +++ b/dev-php/php/ChangeLog @@ -1,12 +1,13 @@ # ChangeLog for dev-lang/php # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-php/php/ChangeLog,v 1.10 2002/09/02 02:22:06 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/php/ChangeLog,v 1.11 2002/09/02 02:27:42 rphillips Exp $ *php-4.2.2-r1 (18 Aug 2002) 1 Sep 2002; Ryan Phillips <rphillips@gentoo.org> php-4.2.2-r1.ebuild : - too many users having trouble with gmp support + too many users having trouble with gmp support. + mysql support again? 30 Aug 2002; Ryan Phillips <rphillips@gentoo.org> php-4.2.2-r1.ebuild : diff --git a/dev-php/php/php-4.2.2-r1.ebuild b/dev-php/php/php-4.2.2-r1.ebuild index 32b0dd83d159..df1ad1ba46e4 100644 --- a/dev-php/php/php-4.2.2-r1.ebuild +++ b/dev-php/php/php-4.2.2-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Update: Roman Weber <gentoo@gonzo.ch> -# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-4.2.2-r1.ebuild,v 1.6 2002/09/02 02:22:06 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-4.2.2-r1.ebuild,v 1.7 2002/09/02 02:27:42 rphillips Exp $ MY_P=php-${PV} S=${WORKDIR}/${MY_P} @@ -95,7 +95,7 @@ src_compile() { use snmp && myconf="${myconf} --with-snmp --enable-ucd-snmp-hack" use gdbm && myconf="${myconf} --with-gdbm=/usr" use berkdb && myconf="${myconf} --with-db3=/usr" - use mysql && myconf="${myconf} --enable-mysql=/usr" || myconf="${myconf} --without-mysql" + use mysql && myconf="${myconf} --with-mysql=/usr" || myconf="${myconf} --without-mysql" use postgres && myconf="${myconf} --with-pgsql=/usr" use odbc && myconf="${myconf} --with-unixODBC=/usr" use ldap && myconf="${myconf} --with-ldap" |