pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/plotutils



Module Name:    pkgsrc
Committed By:   nia
Date:           Tue Jun 16 12:12:15 UTC 2026

Modified Files:
        pkgsrc/graphics/plotutils: Makefile

Log Message:
plotutils: Fix build with GCC 15.

This defines its own bool type, which is incompatible
with C23 having it as a built-in keyword.

gnu99 is chosen for being the minimum bootstrap requirement
and safety against APIs being hidden in standards mode.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 pkgsrc/graphics/plotutils/Makefile

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

Modified files:

Index: pkgsrc/graphics/plotutils/Makefile
diff -u pkgsrc/graphics/plotutils/Makefile:1.54 pkgsrc/graphics/plotutils/Makefile:1.55
--- pkgsrc/graphics/plotutils/Makefile:1.54     Sun Sep 21 21:22:39 2025
+++ pkgsrc/graphics/plotutils/Makefile  Tue Jun 16 12:12:14 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.54 2025/09/21 21:22:39 wiz Exp $
+# $NetBSD: Makefile,v 1.55 2026/06/16 12:12:14 nia Exp $
 
 DISTNAME=      plotutils-2.6
 PKGREVISION=   4
@@ -20,6 +20,13 @@ CONFIGURE_ARGS+=     --enable-libplotter
 MAKE_JOBS_SAFE=                no
 INFO_FILES=            yes
 
+# This defines its own bool type, which is incompatible
+# with C23 having it as a built-in keyword.
+#
+# gnu99 is chosen for being the minimum bootstrap requirement
+# and safety against APIs being hidden in standards mode.
+FORCE_C_STD=           gnu99
+
 .include "options.mk"
 
 .include "../../converters/libiconv/buildlink3.mk"



Home | Main Index | Thread Index | Old Index