From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1456175-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B6D3D158020 for <garchives@archives.gentoo.org>; Sun, 13 Nov 2022 11:49:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 030CBE0920; Sun, 13 Nov 2022 11:49:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DAB71E0920 for <gentoo-commits@lists.gentoo.org>; Sun, 13 Nov 2022 11:49:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0890340E9C for <gentoo-commits@lists.gentoo.org>; Sun, 13 Nov 2022 11:49:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F50961C for <gentoo-commits@lists.gentoo.org>; Sun, 13 Nov 2022 11:49:39 +0000 (UTC) From: "Matthew Smith" <matthew@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" <matthew@gentoo.org> Message-ID: <1668339940.51d70dea44f3adc722aa1a5f776dd0144a6fb544.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/sbcl/sbcl-2.2.0.ebuild dev-lisp/sbcl/sbcl-2.2.10.ebuild dev-lisp/sbcl/sbcl-2.2.9.ebuild X-VCS-Directories: dev-lisp/sbcl/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 51d70dea44f3adc722aa1a5f776dd0144a6fb544 X-VCS-Branch: master Date: Sun, 13 Nov 2022 11:49:39 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7e533f1f-4d3e-4f19-a692-517a39126fe2 X-Archives-Hash: 53bc8ab61663e084852db77d0c04329c commit: 51d70dea44f3adc722aa1a5f776dd0144a6fb544 Author: Matthew Smith <matthew <AT> gentoo <DOT> org> AuthorDate: Sun Nov 13 11:45:40 2022 +0000 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org> CommitDate: Sun Nov 13 11:45:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d70dea dev-lisp/sbcl: append -D_GNU_SOURCE Fixes build issue due to O_LARGEFILE hiding behind feature test macro. Closes: https://bugs.gentoo.org/869434 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org> dev-lisp/sbcl/sbcl-2.2.0.ebuild | 3 +++ dev-lisp/sbcl/sbcl-2.2.10.ebuild | 3 +++ dev-lisp/sbcl/sbcl-2.2.9.ebuild | 3 +++ 3 files changed, 9 insertions(+) diff --git a/dev-lisp/sbcl/sbcl-2.2.0.ebuild b/dev-lisp/sbcl/sbcl-2.2.0.ebuild index 39e5a7ef3dba..db275dcfbcc2 100644 --- a/dev-lisp/sbcl/sbcl-2.2.0.ebuild +++ b/dev-lisp/sbcl/sbcl-2.2.0.ebuild @@ -156,6 +156,9 @@ src_configure() { src_compile() { local bindir="${WORKDIR}"/sbcl-binary + # Bug #869434 + append-cppflags -D_GNU_SOURCE + # clear the environment to get rid of non-ASCII strings, see bug #174702 # set HOME for paludis env - HOME="${T}" PATH="${PATH}" \ diff --git a/dev-lisp/sbcl/sbcl-2.2.10.ebuild b/dev-lisp/sbcl/sbcl-2.2.10.ebuild index cf2899eb05bc..aa13ed1d98b9 100644 --- a/dev-lisp/sbcl/sbcl-2.2.10.ebuild +++ b/dev-lisp/sbcl/sbcl-2.2.10.ebuild @@ -158,6 +158,9 @@ src_configure() { src_compile() { local bindir="${WORKDIR}"/sbcl-binary + # Bug #869434 + append-cppflags -D_GNU_SOURCE + # clear the environment to get rid of non-ASCII strings, see bug #174702 # set HOME for paludis env - HOME="${T}" PATH="${PATH}" \ diff --git a/dev-lisp/sbcl/sbcl-2.2.9.ebuild b/dev-lisp/sbcl/sbcl-2.2.9.ebuild index 0342f59644d1..82e289d11953 100644 --- a/dev-lisp/sbcl/sbcl-2.2.9.ebuild +++ b/dev-lisp/sbcl/sbcl-2.2.9.ebuild @@ -161,6 +161,9 @@ src_configure() { src_compile() { local bindir="${WORKDIR}"/sbcl-binary + # Bug #869434 + append-cppflags -D_GNU_SOURCE + # clear the environment to get rid of non-ASCII strings, see bug #174702 # set HOME for paludis env - HOME="${T}" PATH="${PATH}" \