pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/glpk



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Jun 14 17:45:05 UTC 2026

Modified Files:
        pkgsrc/math/glpk: Makefile

Log Message:
glpk: Fails with C23 default language.

Defines its own bool type which conflicts with the C23 keyword.


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 pkgsrc/math/glpk/Makefile

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

Modified files:

Index: pkgsrc/math/glpk/Makefile
diff -u pkgsrc/math/glpk/Makefile:1.48 pkgsrc/math/glpk/Makefile:1.49
--- pkgsrc/math/glpk/Makefile:1.48      Sun Nov 28 20:08:24 2021
+++ pkgsrc/math/glpk/Makefile   Sun Jun 14 17:45:05 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.48 2021/11/28 20:08:24 adam Exp $
+# $NetBSD: Makefile,v 1.49 2026/06/14 17:45:05 nia Exp $
 
 DISTNAME=      glpk-5.0
 CATEGORIES=    math
@@ -15,6 +15,9 @@ GNU_CONFIGURE=                yes
 CONFIGURE_ARGS+=       --with-gmp
 TEST_TARGET=           check
 
+# defines its own bool type which conflicts with the C23 keyword
+FORCE_C_STD=           gnu89
+
 .include "../../devel/gmp/buildlink3.mk"
 .include "../../devel/zlib/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index