X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 6F395DC8501 for ; Mon, 22 Feb 2016 10:52:07 +0000 (UTC) Received: from mail.infogroup.kiev.ua (tera.infogroup.kiev.ua [195.144.25.26]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 1E95BDC0225 for ; Mon, 22 Feb 2016 10:52:07 +0000 (UTC) Received: from aveo.com.ua ([195.144.25.27] helo=alpine) by mail.infogroup.kiev.ua with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80.1) (envelope-from ) id 1aXo61-0002T6-Jx; Mon, 22 Feb 2016 12:52:05 +0200 From: Valery Kartel To: alpine-aports@lists.alpinelinux.org Cc: Valery Kartel Subject: [alpine-aports] [PATCH] testing/php7: fix mysqli, mysqlnd and pdo_mysql extensions Date: Mon, 22 Feb 2016 12:56:28 +0200 Message-Id: <1456138588-28811-1-git-send-email-valery.kartel@gmail.com> X-Mailer: git-send-email 2.7.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: - mysqli and pdo_mysql now uses system libmysqlclient library - mysqlnd now has mysqli as a backend --- testing/php7/APKBUILD | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/testing/php7/APKBUILD b/testing/php7/APKBUILD index 72e889c..260befe 100644 --- a/testing/php7/APKBUILD +++ b/testing/php7/APKBUILD @@ -3,10 +3,10 @@ pkgname=php7 _pkgreal=php pkgver=7.0.3 -pkgrel=0 +pkgrel=1 pkgdesc="The PHP language runtime engine - 7th branch" url="http://www.php.net/" -arch="x86_64 armhf" +arch="all" license="PHP-3" options="textrels" depends="$pkgname-common" @@ -148,7 +148,8 @@ _build() { --with-mcrypt=shared \ --with-sqlite3=shared --with-pdo-sqlite=shared \ --with-pdo-dblib=shared \ - --with-mysqli=shared,mysqlnd --enable-mysqlnd=shared --with-pdo-mysql=shared --with-mysql-sock=/run/mysqld/mysqld.sock \ + --with-mysqli=shared,/usr/bin/mysql_config \ + --enable-mysqlnd=shared --with-pdo-mysql=shared,/usr/bin/mysql_config --with-mysql-sock=/run/mysqld/mysqld.sock \ --with-pgsql=shared --with-pdo-pgsql=shared \ --with-unixODBC=shared,/usr -with-pdo-odbc=shared,unixODBC,/usr \ --with-dbmaker=shared \ @@ -356,7 +357,7 @@ ldap() { _mv_ext ldap; } mbstring() { _mv_ext mbstring; } mcrypt() { _mv_ext mcrypt; } mysqli() { _mv_ext mysqli; } -mysqlnd() { _mv_ext mysqlnd; } +mysqlnd() { _mv_ext mysqlnd $pkgname-mysqli; } odbc() { _mv_ext odbc; } opcache() { _mv_ext opcache; } openssl() { _mv_ext openssl; } -- 2.7.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---