pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/libowfat



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu Jun 18 14:48:54 UTC 2026

Modified Files:
        pkgsrc/devel/libowfat: Makefile

Log Message:
libowfat: Avoid implicit declaration of alloca(3) on SunOS.

Should help the GCC 14 builds.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/libowfat/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/libowfat/Makefile
diff -u pkgsrc/devel/libowfat/Makefile:1.16 pkgsrc/devel/libowfat/Makefile:1.17
--- pkgsrc/devel/libowfat/Makefile:1.16 Mon Jan  5 09:18:30 2026
+++ pkgsrc/devel/libowfat/Makefile      Thu Jun 18 14:48:54 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2026/01/05 09:18:30 wiz Exp $
+# $NetBSD: Makefile,v 1.17 2026/06/18 14:48:54 nia Exp $
 
 DISTNAME=      libowfat-0.34
 PKGREVISION=   1
@@ -17,6 +17,9 @@ USE_TOOLS+=   gmake
 
 CFLAGS.SunOS+= -D__EXTENSIONS__
 
+# Avoid implicit declaration of alloca(3).
+CFLAGS.SunOS+= -Dalloca=__builtin_alloca
+
 post-extract:
        cd ${WRKSRC}; \
        ${MV} tai/tai_now.3 tai/tai_now_libowfat.3; \



Home | Main Index | Thread Index | Old Index