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 0B0541396D0 for ; Mon, 9 Oct 2017 13:22:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4616F2BC003; Mon, 9 Oct 2017 13:22:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1E6EE2BC003 for ; Mon, 9 Oct 2017 13:22:08 +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 E87CB33BEA7 for ; Mon, 9 Oct 2017 13:22:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A66938F66 for ; Mon, 9 Oct 2017 13:22:05 +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: <1507555306.ad8c6bb045491eb367a2b892e200278c5c5a967b.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-http/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-http/pecl-http-3.1.0-r1.ebuild dev-php/pecl-http/pecl-http-3.1.0.ebuild X-VCS-Directories: dev-php/pecl-http/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: ad8c6bb045491eb367a2b892e200278c5c5a967b X-VCS-Branch: master Date: Mon, 9 Oct 2017 13:22:05 +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: a5b73016-1883-46ba-90ab-9d0b580fbc93 X-Archives-Hash: a0161c258d14950eef0e773add6a210c commit: ad8c6bb045491eb367a2b892e200278c5c5a967b Author: Brian Evans gentoo org> AuthorDate: Mon Oct 9 13:21:46 2017 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon Oct 9 13:21:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad8c6bb0 dev-php/pecl-http: Fix build failure for SLOT 7 When libidn and libidn2 are installed, the build tries to use both. This causes an error in definitions. Choosing libidn for now, but it is simple enough to use the other. Package-Manager: Portage-2.3.11, Repoman-2.3.3 dev-php/pecl-http/pecl-http-3.1.0-r1.ebuild | 2 +- dev-php/pecl-http/pecl-http-3.1.0.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-php/pecl-http/pecl-http-3.1.0-r1.ebuild b/dev-php/pecl-http/pecl-http-3.1.0-r1.ebuild index 39ea6b2346b..df1e34b5a7e 100644 --- a/dev-php/pecl-http/pecl-http-3.1.0-r1.ebuild +++ b/dev-php/pecl-http/pecl-http-3.1.0-r1.ebuild @@ -33,7 +33,7 @@ DEPEND="dev-libs/libevent RDEPEND="${DEPEND} php_targets_php5-6? ( dev-php/pecl-http:2[php_targets_php5-6] )" -PHP_EXT_ECONF_ARGS=( --with-http --without-http-shared-deps ) +PHP_EXT_ECONF_ARGS=( --with-http --without-http-shared-deps --without-http-libidn2-dir ) PATCHES=( "${FILESDIR}/pecl-http-gnutls.patch" ) diff --git a/dev-php/pecl-http/pecl-http-3.1.0.ebuild b/dev-php/pecl-http/pecl-http-3.1.0.ebuild index 65164af8c53..c262cbac854 100644 --- a/dev-php/pecl-http/pecl-http-3.1.0.ebuild +++ b/dev-php/pecl-http/pecl-http-3.1.0.ebuild @@ -33,7 +33,7 @@ DEPEND="dev-libs/libevent RDEPEND="${DEPEND} php_targets_php5-6? ( dev-php/pecl-http:2[php_targets_php5-6] )" -PHP_EXT_ECONF_ARGS=( --with-http --without-http-shared-deps ) +PHP_EXT_ECONF_ARGS=( --with-http --without-http-shared-deps --without-http-libidn2-dir ) PATCHES=( "${FILESDIR}/pecl-http-gnutls.patch" )