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 BD5811396D0 for ; Fri, 18 Aug 2017 16:33:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FFEEE0D2E; Fri, 18 Aug 2017 16:33:18 +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 0E58CE0D2E for ; Fri, 18 Aug 2017 16:33:17 +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 1F55534198A for ; Fri, 18 Aug 2017 16:33:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F30367A34 for ; Fri, 18 Aug 2017 16:33:13 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1503073988.d71ab1ab0c02acafad494ac843b5019c796e4c3a.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/curl/files/, net-misc/curl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/curl/curl-7.55.1.ebuild net-misc/curl/files/curl-7.55.1-fix-build.patch X-VCS-Directories: net-misc/curl/files/ net-misc/curl/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: d71ab1ab0c02acafad494ac843b5019c796e4c3a X-VCS-Branch: master Date: Fri, 18 Aug 2017 16:33:13 +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: 148d3834-bd51-4a42-bcde-c5c6de498397 X-Archives-Hash: 0a81f7de9e954559c647803456b6685c commit: d71ab1ab0c02acafad494ac843b5019c796e4c3a Author: Anthony G. Basile gentoo org> AuthorDate: Fri Aug 18 16:32:52 2017 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Aug 18 16:33:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71ab1ab net-misc/curl: fix build for 7.55.1. bug #627960. Package-Manager: Portage-2.3.6, Repoman-2.3.1 net-misc/curl/curl-7.55.1.ebuild | 1 + net-misc/curl/files/curl-7.55.1-fix-build.patch | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/net-misc/curl/curl-7.55.1.ebuild b/net-misc/curl/curl-7.55.1.ebuild index 5227717914f..62d6e1d8a33 100644 --- a/net-misc/curl/curl-7.55.1.ebuild +++ b/net-misc/curl/curl-7.55.1.ebuild @@ -107,6 +107,7 @@ src_prepare() { eapply "${FILESDIR}"/${PN}-7.30.0-prefix.patch eapply "${FILESDIR}"/${PN}-respect-cflags-3.patch eapply "${FILESDIR}"/${PN}-fix-gnutls-nettle.patch + eapply "${FILESDIR}"/${P}-fix-build.patch sed -i '/LD_LIBRARY_PATH=/d' configure.ac || die #382241 diff --git a/net-misc/curl/files/curl-7.55.1-fix-build.patch b/net-misc/curl/files/curl-7.55.1-fix-build.patch new file mode 100644 index 00000000000..b9749d59c7f --- /dev/null +++ b/net-misc/curl/files/curl-7.55.1-fix-build.patch @@ -0,0 +1,22 @@ +index d77a884..6dcd0f1 100644 +--- a/m4/curl-confopts.m4 ++++ b/m4/curl-confopts.m4 +@@ -37,14 +37,14 @@ AC_HELP_STRING([--enable-threaded-resolver],[Enable threaded resolver]) + AC_HELP_STRING([--disable-threaded-resolver],[Disable threaded resolver]), + OPT_THRES=$enableval) + case "$OPT_THRES" in +- *) +- dnl configure option not specified +- want_thres="yes" +- ;; + no) + dnl --disable-threaded-resolver option used + want_thres="no" + ;; ++ *) ++ dnl configure option not specified ++ want_thres="yes" ++ ;; + esac + AC_MSG_RESULT([$want_thres]) + ])