summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2007-03-04 23:41:45 +0000
committerLuca Longinotti <chtekk@gentoo.org>2007-03-04 23:41:45 +0000
commit8e3f55ebeea29ea2019fcc4109b0474d9ddd1baf (patch)
tree725c909110e011273572c5205cb4651bb4d6c379 /dev-php5/pecl-pdo-mysql
parenttouchup superh ioctls (diff)
downloadgentoo-2-8e3f55ebeea29ea2019fcc4109b0474d9ddd1baf.tar.gz
gentoo-2-8e3f55ebeea29ea2019fcc4109b0474d9ddd1baf.tar.bz2
gentoo-2-8e3f55ebeea29ea2019fcc4109b0474d9ddd1baf.zip
Fix ZTS discovery.
(Portage version: 2.1.2.1)
Diffstat (limited to 'dev-php5/pecl-pdo-mysql')
-rw-r--r--dev-php5/pecl-pdo-mysql/ChangeLog6
-rw-r--r--dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild8
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-php5/pecl-pdo-mysql/ChangeLog b/dev-php5/pecl-pdo-mysql/ChangeLog
index 035448d73ad0..4cb12def2c4e 100644
--- a/dev-php5/pecl-pdo-mysql/ChangeLog
+++ b/dev-php5/pecl-pdo-mysql/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-php5/pecl-pdo-mysql
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-pdo-mysql/ChangeLog,v 1.19 2007/03/04 21:19:28 chtekk Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-pdo-mysql/ChangeLog,v 1.20 2007/03/04 23:41:45 chtekk Exp $
+
+ 04 Mar 2007; Luca Longinotti <chtekk@gentoo.org>
+ pecl-pdo-mysql-1.0.2.ebuild:
+ Fix ZTS discovery.
04 Mar 2007; Luca Longinotti <chtekk@gentoo.org>
+files/pecl-pdo-mysql-1.0.2-charsetphpini.patch,
diff --git a/dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild b/dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild
index 55fcf387460a..8bb5c5847f4f 100644
--- a/dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild
+++ b/dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild
@@ -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/dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild,v 1.3 2007/03/04 21:19:28 chtekk Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-pdo-mysql/pecl-pdo-mysql-1.0.2.ebuild,v 1.4 2007/03/04 23:41:45 chtekk Exp $
PHP_EXT_NAME="pdo_mysql"
PHP_EXT_PECL_PKG="PDO_MYSQL"
@@ -47,6 +47,10 @@ src_unpack() {
src_compile() {
has_php
- my_conf="--with-pdo-mysql=/usr"
+ if has_zts ; then
+ my_conf="--with-pdo-mysql=/usr --enable-maintainer-zts"
+ else
+ my_conf="--with-pdo-mysql=/usr"
+ fi
php-ext-pecl-r1_src_compile
}