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 B995C138334 for ; Sun, 27 Oct 2019 09:09:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14CEBE08C2; Sun, 27 Oct 2019 09:09:10 +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 EFC00E08C2 for ; Sun, 27 Oct 2019 09:09:09 +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 1539F34C425 for ; Sun, 27 Oct 2019 09:09:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94C46898 for ; Sun, 27 Oct 2019 09:09:07 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1572167338.5a78e4dc89f02a15ad86b09a8fe84d1c02822d71.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libspt/, dev-libs/libspt/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libspt/files/libspt-glibc-2.30.patch dev-libs/libspt/libspt-1.1-r2.ebuild dev-libs/libspt/libspt-1.1-r3.ebuild dev-libs/libspt/libspt-1.1-r4.ebuild X-VCS-Directories: dev-libs/libspt/ dev-libs/libspt/files/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 5a78e4dc89f02a15ad86b09a8fe84d1c02822d71 X-VCS-Branch: master Date: Sun, 27 Oct 2019 09:09:07 +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: 57138897-f16b-4bc0-8176-a202074d30c6 X-Archives-Hash: b5e7a2141331ddfd3703ced2ab943cba commit: 5a78e4dc89f02a15ad86b09a8fe84d1c02822d71 Author: Akinori Hattori gentoo org> AuthorDate: Sun Oct 27 09:06:16 2019 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun Oct 27 09:08:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a78e4dc dev-libs/libspt: fix build with >=sys-libs/glibc-2.30 Closes: https://bugs.gentoo.org/691762 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Akinori Hattori gentoo.org> dev-libs/libspt/files/libspt-glibc-2.30.patch | 12 ++++++++++++ dev-libs/libspt/libspt-1.1-r2.ebuild | 1 + dev-libs/libspt/libspt-1.1-r3.ebuild | 1 + dev-libs/libspt/libspt-1.1-r4.ebuild | 1 + 4 files changed, 15 insertions(+) diff --git a/dev-libs/libspt/files/libspt-glibc-2.30.patch b/dev-libs/libspt/files/libspt-glibc-2.30.patch new file mode 100644 index 00000000000..1ebb9b969b2 --- /dev/null +++ b/dev-libs/libspt/files/libspt-glibc-2.30.patch @@ -0,0 +1,12 @@ +--- a/libspt.c ++++ b/libspt.c +@@ -7,9 +7,6 @@ + #include + #include /* for perror() */ + #include +-#ifdef HAVE_PTY_SVR4 +-#include +-#endif + + struct spt_handle_tag { + connection *pconn; diff --git a/dev-libs/libspt/libspt-1.1-r2.ebuild b/dev-libs/libspt/libspt-1.1-r2.ebuild index 1118a347b3a..a2bbec0ed4d 100644 --- a/dev-libs/libspt/libspt-1.1-r2.ebuild +++ b/dev-libs/libspt/libspt-1.1-r2.ebuild @@ -22,6 +22,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-gentoo.patch" + "${FILESDIR}/${PN}-glibc-2.30.patch" "${FILESDIR}/${PN}-rpc.patch" ) diff --git a/dev-libs/libspt/libspt-1.1-r3.ebuild b/dev-libs/libspt/libspt-1.1-r3.ebuild index c629d49e661..4ed4bdc71bf 100644 --- a/dev-libs/libspt/libspt-1.1-r3.ebuild +++ b/dev-libs/libspt/libspt-1.1-r3.ebuild @@ -22,6 +22,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-gentoo.patch" + "${FILESDIR}/${PN}-glibc-2.30.patch" "${FILESDIR}/${PN}-rpc.patch" ) diff --git a/dev-libs/libspt/libspt-1.1-r4.ebuild b/dev-libs/libspt/libspt-1.1-r4.ebuild index 8cd01a692c3..4679b16bc3f 100644 --- a/dev-libs/libspt/libspt-1.1-r4.ebuild +++ b/dev-libs/libspt/libspt-1.1-r4.ebuild @@ -21,6 +21,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-gentoo.patch" + "${FILESDIR}/${PN}-glibc-2.30.patch" "${FILESDIR}/${PN}-rpc.patch" )