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 02351138334 for ; Sat, 11 May 2019 02:21:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 245DCE088F; Sat, 11 May 2019 02:21:54 +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 07159E088F for ; Sat, 11 May 2019 02:21:53 +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 57C4A343F5B for ; Sat, 11 May 2019 02:21:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C14DA5D9 for ; Sat, 11 May 2019 02:21:50 +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: <1557541305.cb76da37b02ed5bca29ca8f21be989f1dd5e80b6.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libetpan/files/, net-libs/libetpan/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libetpan/files/libetpan-1.9.3-missing-stddev_h.patch net-libs/libetpan/libetpan-1.9.3.ebuild X-VCS-Directories: net-libs/libetpan/files/ net-libs/libetpan/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: cb76da37b02ed5bca29ca8f21be989f1dd5e80b6 X-VCS-Branch: master Date: Sat, 11 May 2019 02:21:50 +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: be187e74-2e13-43e0-a57a-f131e4867763 X-Archives-Hash: 286378ade112599cd05d92417e168ce6 commit: cb76da37b02ed5bca29ca8f21be989f1dd5e80b6 Author: Anthony G. Basile gentoo org> AuthorDate: Sat May 11 02:21:18 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat May 11 02:21:45 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb76da37 net-libs/libetpan: upstream patch to fix build on musl Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 .../files/libetpan-1.9.3-missing-stddev_h.patch | 30 ++++++++++++++++++++++ net-libs/libetpan/libetpan-1.9.3.ebuild | 1 + 2 files changed, 31 insertions(+) diff --git a/net-libs/libetpan/files/libetpan-1.9.3-missing-stddev_h.patch b/net-libs/libetpan/files/libetpan-1.9.3-missing-stddev_h.patch new file mode 100644 index 00000000000..9d53f90190b --- /dev/null +++ b/net-libs/libetpan/files/libetpan-1.9.3-missing-stddev_h.patch @@ -0,0 +1,30 @@ +commit da9fd7839c9affea48f74a159a789fbb183b4be1 +Author: maxice8 <30738253+maxice8@users.noreply.github.com> +Date: Fri Feb 1 01:58:08 2019 -0200 + + add missing stddef.h include for 'NULL' (#322) + + clientid.c: In function 'mailimap_clientid': + clientid.c:66:38: error: 'NULL' undeclared (first use in this function) + if (mailimap_read_line(session) == NULL) + ^~~~ + clientid.c:66:38: note: 'NULL' is defined in header ''; did you forget to '#include '? + clientid.c:39:1: + +#include + + clientid.c:66:38: + if (mailimap_read_line(session) == NULL) + +diff --git a/src/low-level/imap/clientid.c b/src/low-level/imap/clientid.c +index 1c34637..38880dd 100644 +--- a/src/low-level/imap/clientid.c ++++ b/src/low-level/imap/clientid.c +@@ -33,6 +33,8 @@ + # include + #endif + ++#include ++ + #include "mailimap_sender.h" + #include "clientid_sender.h" + #include "clientid.h" diff --git a/net-libs/libetpan/libetpan-1.9.3.ebuild b/net-libs/libetpan/libetpan-1.9.3.ebuild index b700e23e776..262ae83217d 100644 --- a/net-libs/libetpan/libetpan-1.9.3.ebuild +++ b/net-libs/libetpan/libetpan-1.9.3.ebuild @@ -30,6 +30,7 @@ RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}"/${PN}-1.0-nonnull.patch + "${FILESDIR}"/${PN}-1.9.3-missing-stddev_h.patch ) pkg_pretend() {