From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 33357138334 for ; Thu, 20 Sep 2018 02:33:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03BF7E095D; Thu, 20 Sep 2018 02:33:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEC49E095D for ; Thu, 20 Sep 2018 02:33:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDC6B335C36 for ; Thu, 20 Sep 2018 02:33:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFE973CC for ; Thu, 20 Sep 2018 02:33:12 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1537410736.a51890c8496984b6e774706bcdb05ff72bc8c4ce.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/php/php-7.1.22.ebuild dev-lang/php/php-7.2.10.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: a51890c8496984b6e774706bcdb05ff72bc8c4ce X-VCS-Branch: master Date: Thu, 20 Sep 2018 02:33:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7fd0d736-498b-4aa9-b21e-fa3a5f2afdb2 X-Archives-Hash: e4ac2718cc0314d0b289f2a56a2d7501 commit: a51890c8496984b6e774706bcdb05ff72bc8c4ce Author: Brian Evans gentoo org> AuthorDate: Thu Sep 20 02:32:16 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Sep 20 02:32:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a51890c8 dev-lang/php: Recent mysqlnd driver needs hash extension Set REQUIRED_USE on mysql and mysqli to need hash as build failures occur without. Example: ext/mysqlnd/mysqlnd_auth.o: In function `php_mysqlnd_scramble_sha2': mysqlnd_auth.c:(.text+0x1054): undefined reference to `PHP_SHA256Init' Does not affect PHP 5.6 or 7.0 as they are security only Closes: https://bugs.gentoo.org/666598 dev-lang/php/php-7.1.22.ebuild | 3 ++- dev-lang/php/php-7.2.10.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-lang/php/php-7.1.22.ebuild b/dev-lang/php/php-7.1.22.ebuild index 4d86e54abb4..feba2bb1708 100644 --- a/dev-lang/php/php-7.1.22.ebuild +++ b/dev-lang/php/php-7.1.22.ebuild @@ -142,7 +142,8 @@ REQUIRED_USE=" readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) - mysql? ( || ( mysqli pdo ) ) + mysql? ( hash || ( mysqli pdo ) ) + mysqli? ( hash ) " PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" diff --git a/dev-lang/php/php-7.2.10.ebuild b/dev-lang/php/php-7.2.10.ebuild index 4b8bb35fe16..8056b502a1f 100644 --- a/dev-lang/php/php-7.2.10.ebuild +++ b/dev-lang/php/php-7.2.10.ebuild @@ -146,7 +146,8 @@ REQUIRED_USE=" readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) - mysql? ( || ( mysqli pdo ) ) + mysql? ( hash || ( mysqli pdo ) ) + mysqli? ( hash ) zip-encryption? ( zip ) " PATCHES=(