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 E4DC5138334 for ; Tue, 8 Jan 2019 14:17:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEBC3E0BE2; Tue, 8 Jan 2019 14:17:19 +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 994EBE0BE2 for ; Tue, 8 Jan 2019 14:17:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 400B0335CDD for ; Tue, 8 Jan 2019 14:17:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF33E2A7 for ; Tue, 8 Jan 2019 14:17:15 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1546957027.526e80864c5dceb7840f9512023064fef69c0946.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/curl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/curl/curl-7.63.0-r1.ebuild X-VCS-Directories: net-misc/curl/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 526e80864c5dceb7840f9512023064fef69c0946 X-VCS-Branch: master Date: Tue, 8 Jan 2019 14:17:15 +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: 130a4433-e374-4399-9fb1-f2152b3e28ef X-Archives-Hash: cc9d28b770a31f2148ce658a3a533b96 commit: 526e80864c5dceb7840f9512023064fef69c0946 Author: Fabian Groffen gentoo org> AuthorDate: Tue Jan 8 14:16:56 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Jan 8 14:17:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526e8086 net-misc/curl: generalise darwin fixes darwin < 10.8 won't compile due to force injection of -mmacos-min-vers=10.8. Kill the messing around with CFLAGS for macOS entirely to resolve all build issues. Signed-off-by: Fabian Groffen gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-misc/curl/curl-7.63.0-r1.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/net-misc/curl/curl-7.63.0-r1.ebuild b/net-misc/curl/curl-7.63.0-r1.ebuild index 4e33ca7fc88..525bbd549f4 100644 --- a/net-misc/curl/curl-7.63.0-r1.ebuild +++ b/net-misc/curl/curl-7.63.0-r1.ebuild @@ -101,16 +101,11 @@ src_prepare() { eapply "${FILESDIR}"/${PN}-fix-gnutls-nettle.patch sed -i '/LD_LIBRARY_PATH=/d' configure.ac || die #382241 + sed -i '/CURL_MAC_CFLAGS/d' configure.ac || die #637252 eapply_user eprefixify curl-config.in eautoreconf - - if [[ ${CHOST} == *-darwin17 ]] ; then - # https://bugs.gentoo.org/show_bug.cgi?id=637252 - sed -i -e '/-Werror=partial-availability/s/Werror/Wno-error/g' \ - configure || die - fi } multilib_src_configure() {