From 1316e88606991f97fe85abd154a5a55e7804ccc3 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Sun, 8 Sep 2024 04:49:23 -0700 Subject: [PATCH] community/ucl: hackfix GCC 14 build by injecting stddef.h in CFLAGS --- community/ucl/APKBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/community/ucl/APKBUILD b/community/ucl/APKBUILD index 7c93b88aed2..475aefd3eeb 100644 --- a/community/ucl/APKBUILD +++ b/community/ucl/APKBUILD @@ -20,6 +20,7 @@ prepare() { } build() { + export CFLAGS="$CFLAGS -std=gnu99 -fPIC -include stddef.h" ./configure \ --prefix=/usr \ --enable-shared \