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 33608139085 for ; Wed, 1 Feb 2017 14:45:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B2B621C131; Wed, 1 Feb 2017 14:45:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A01F21C131 for ; Wed, 1 Feb 2017 14:45: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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 052B7340806 for ; Wed, 1 Feb 2017 14:45:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C21FE3D50 for ; Wed, 1 Feb 2017 14:45: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: <1485960308.5e53b2d24b8e4abb071da123a81980093c76044c.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/curl/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/curl/files/curl-fix-mbedtls.patch X-VCS-Directories: net-misc/curl/files/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 5e53b2d24b8e4abb071da123a81980093c76044c X-VCS-Branch: master Date: Wed, 1 Feb 2017 14:45: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: 8fb8b0af-3735-4473-a224-65816bff1259 X-Archives-Hash: c339c90a7e1278be75016e7c05ce55a4 commit: 5e53b2d24b8e4abb071da123a81980093c76044c Author: Anthony G. Basile gentoo org> AuthorDate: Wed Feb 1 14:44:10 2017 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Feb 1 14:45:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e53b2d2 net-misc/curl: remove unused patch Package-Manager: portage-2.3.3 net-misc/curl/files/curl-fix-mbedtls.patch | 37 ------------------------------ 1 file changed, 37 deletions(-) diff --git a/net-misc/curl/files/curl-fix-mbedtls.patch b/net-misc/curl/files/curl-fix-mbedtls.patch deleted file mode 100644 index b82e4c6..00000000 --- a/net-misc/curl/files/curl-fix-mbedtls.patch +++ /dev/null @@ -1,37 +0,0 @@ -This addresses bug #599092 - -https://bugs.gentoo.org/show_bug.cgi?id=599092 - -commit 9ea3a6e150dfc822ba1565f649b634848597d2d9 -Author: Daniel Stenberg -Date: Fri Nov 4 11:13:16 2016 +0100 - - mbedtls: fix build with mbedtls versions < 2.4.0 - - Regression added in 62a8095e714 - - Reported-by: Tony Kelman - - Discussed in #1087 - -diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c -index 24249dd..9f29ff0 100644 ---- a/lib/vtls/mbedtls.c -+++ b/lib/vtls/mbedtls.c -@@ -31,11 +31,15 @@ - - #ifdef USE_MBEDTLS - -+#include -+#if MBEDTLS_VERSION_NUMBER >= 0x02040000 - #include -+#else -+#include -+#endif - #include - #include - #include --#include - - #include - #include