pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/boolstuff



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Jan  4 11:30:47 UTC 2026

Modified Files:
        pkgsrc/math/boolstuff: Makefile

Log Message:
boolstuff: force C++11

since this doesn't build with the C++17 default of gcc 14


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/boolstuff/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/boolstuff/Makefile
diff -u pkgsrc/math/boolstuff/Makefile:1.6 pkgsrc/math/boolstuff/Makefile:1.7
--- pkgsrc/math/boolstuff/Makefile:1.6  Mon Jul 25 11:12:25 2022
+++ pkgsrc/math/boolstuff/Makefile      Sun Jan  4 11:30:47 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2022/07/25 11:12:25 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2026/01/04 11:30:47 wiz Exp $
 
 DISTNAME=      boolstuff-0.1.16
 PKGREVISION=   2
@@ -17,4 +17,7 @@ TOOLS_BROKEN+=        perl
 
 PKGCONFIG_OVERRIDE+=   boolstuff-0.1.pc.in
 
+# BoolExprParser.cpp:145:35: error: ISO C++17 does not allow dynamic exception specifications
+FORCE_CXX_STD= c++11
+
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index