From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id DCD471582EF for ; Sat, 08 Feb 2025 01:55:22 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id C39C3335DCD for ; Sat, 08 Feb 2025 01:55:22 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C3C021103CB; Sat, 08 Feb 2025 01:55:21 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B56331103CB for ; Sat, 08 Feb 2025 01:55:21 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 709BE335CAF for ; Sat, 08 Feb 2025 01:55:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07B5C268A for ; Sat, 08 Feb 2025 01:55:20 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1738979698.813a4bdc56ada6cd6dbf5e0576abc659d2ba0979.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/dev86/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/dev86/dev86-0.16.21-r3.ebuild X-VCS-Directories: sys-devel/dev86/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 813a4bdc56ada6cd6dbf5e0576abc659d2ba0979 X-VCS-Branch: master Date: Sat, 08 Feb 2025 01:55:20 +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: cb71aa42-037b-4e1d-9eea-979a82faaff8 X-Archives-Hash: 8664ee1f39b6646178c4ad8cf23e5d88 commit: 813a4bdc56ada6cd6dbf5e0576abc659d2ba0979 Author: Sam James gentoo org> AuthorDate: Sat Feb 8 01:54:48 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 8 01:54:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=813a4bdc sys-devel/dev86: try harder to use gnu89 in 0.16.21 Signed-off-by: Sam James gentoo.org> sys-devel/dev86/dev86-0.16.21-r3.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-devel/dev86/dev86-0.16.21-r3.ebuild b/sys-devel/dev86/dev86-0.16.21-r3.ebuild index 9ebecb55cb3d..e5f0660f954f 100644 --- a/sys-devel/dev86/dev86-0.16.21-r3.ebuild +++ b/sys-devel/dev86/dev86-0.16.21-r3.ebuild @@ -37,10 +37,11 @@ src_prepare() { makefile.in || die fi - sed -i -e "s|-O2 -g|${CFLAGS}|" -e '/INEXE=/s:-s::' makefile.in || die + sed -i -e "s|-O2 -g|${CFLAGS} -std=gnu89|" -e '/INEXE=/s:-s::' makefile.in || die sed -i -e "s:/lib/:/$(get_libdir)/:" bcc/bcc.c || die sed -i -e '/INSTALL_OPTS=/s:-s::' bin86/Makefile || die sed -i -e '/install -m 755 -s/s:-s::' dis88/Makefile || die + sed -i -e 's:CFLAGS=-O:CFLAGS=-O -std=gnu89:' dis88/Makefile || die } src_compile() { @@ -63,7 +64,7 @@ src_compile() { cd bootblocks || die emake \ - HOSTCC="$(tc-getCC)" + HOSTCC="$(tc-getCC) -std=gnu89" }