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 A831C138334 for ; Tue, 17 Sep 2019 17:45:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F11B6E098A; Tue, 17 Sep 2019 17:45:46 +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 D3E78E098A for ; Tue, 17 Sep 2019 17:45:46 +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 C944734B2AE for ; Tue, 17 Sep 2019 17:45:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44476763 for ; Tue, 17 Sep 2019 17:45:43 +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: <1568742033.d021621e343e8f247c92e48c00dc3f604299928d.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.4.0_rc1.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: d021621e343e8f247c92e48c00dc3f604299928d X-VCS-Branch: master Date: Tue, 17 Sep 2019 17:45:43 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 55d01dce-02ce-4be8-a007-85d208c2fbaa X-Archives-Hash: 7de035d5d85bbc71a262dab4831dc4ab commit: d021621e343e8f247c92e48c00dc3f604299928d Author: Brian Evans gentoo org> AuthorDate: Tue Sep 17 17:40:33 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Sep 17 17:40:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d021621e dev-lang/php: Emulate PHP ./buildconf in PHP 7.4 Upstream has changed how macros are defined by the autoconf system This breaks eautoreconf with latest libtool. Previously we attempted to copy in new libtool, but this breaks external extensions. Instead, do what upstream expects using our own tools to ensure cross-compliation support. Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Brian Evans gentoo.org> dev-lang/php/php-7.4.0_rc1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-lang/php/php-7.4.0_rc1.ebuild b/dev-lang/php/php-7.4.0_rc1.ebuild index 4c04d93e4d4..fafdcb64e83 100644 --- a/dev-lang/php/php-7.4.0_rc1.ebuild +++ b/dev-lang/php/php-7.4.0_rc1.ebuild @@ -218,9 +218,11 @@ src_prepare() { sapi/fpm/php-fpm.conf.in \ || die 'failed to move the include directory in php-fpm.conf' - # Bug 669566 - necessary so that build tools are updated for commands like pecl - cp "${BROOT}/usr/share/aclocal/libtool.m4" build/ || die - eautoreconf + # Emulate buildconf to support cross-compilation + rm -fr aclocal.m4 autom4te.cache config.cache \ + configure main/php_config.h.in || die + eautoconf --force + eautoheader } src_configure() {