pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/libp11



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Jun 14 18:23:46 UTC 2026

Modified Files:
        pkgsrc/security/libp11: Makefile

Log Message:
libp11: Fails with C23 default language.

Uses "true" and "false" as variable names, which conflict with the
C23 keywords.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/libp11/Makefile

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

Modified files:

Index: pkgsrc/security/libp11/Makefile
diff -u pkgsrc/security/libp11/Makefile:1.18 pkgsrc/security/libp11/Makefile:1.19
--- pkgsrc/security/libp11/Makefile:1.18        Fri Jun 28 13:37:59 2024
+++ pkgsrc/security/libp11/Makefile     Sun Jun 14 18:23:46 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2024/06/28 13:37:59 manu Exp $
+# $NetBSD: Makefile,v 1.19 2026/06/14 18:23:46 nia Exp $
 #
 
 DISTNAME=              libp11-0.4.12
@@ -18,6 +18,10 @@ USE_LIBTOOL=         yes
 USE_PKGLOCALEDIR=      yes
 PKGCONFIG_OVERRIDE+=   src/libp11.pc.in
 
+# Uses "true" and "false" as variable names, which conflict with the
+# C23 keywords.
+FORCE_C_STD=           gnu99
+
 CONFIGURE_ARGS+=       --with-enginesdir=${PREFIX}/lib/engines-1.1
 
 CHECK_PORTABILITY_SKIP+=       tests/search-all-matching-tokens.softhsm



Home | Main Index | Thread Index | Old Index