commit: 4c4999d039d778198b06bc5224841b93e78032ef
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 17:48:55 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 16 17:48:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4999d0
sys-fs/hfsplusutils: build w/ -std=gnu17
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild
b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild
index 203f0abf002b..189fa9cfe1a8 100644
--- a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild
+++ b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -38,6 +38,8 @@ src_prepare() {
src_configure() {
# brittle codebase with lots of type punning, breaks LTO (#863902)
append-cflags -fno-strict-aliasing
+ # breaks w/ C23 dropping unprototyped funcs
+ append-cflags -std=gnu17
default
}