pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/unifdef
Module Name: pkgsrc
Committed By: nia
Date: Sun Jun 14 18:33:50 UTC 2026
Modified Files:
pkgsrc/devel/unifdef: Makefile
Log Message:
unifdef: Fails with C23 default language.
Uses constexpr as a variable name, which conflicts with the
C23 keyword.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/unifdef/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/unifdef/Makefile
diff -u pkgsrc/devel/unifdef/Makefile:1.2 pkgsrc/devel/unifdef/Makefile:1.3
--- pkgsrc/devel/unifdef/Makefile:1.2 Fri May 16 22:34:41 2025
+++ pkgsrc/devel/unifdef/Makefile Sun Jun 14 18:33:50 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2025/05/16 22:34:41 zafer Exp $
+# $NetBSD: Makefile,v 1.3 2026/06/14 18:33:50 nia Exp $
DISTNAME= unifdef-2.12
CATEGORIES= devel
@@ -13,4 +13,8 @@ LICENSE= 2-clause-bsd AND modified-bsd
MAKE_FLAGS+= prefix=${PREFIX}
MAKE_FLAGS+= mandir=${PREFIX}/${PKGMANDIR}
+# Uses constexpr as a variable name, which conflicts with the
+# C23 keyword.
+FORCE_C_STD= gnu99
+
.include "../../mk/bsd.pkg.mk"
Home |
Main Index |
Thread Index |
Old Index