pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/argp



Module Name:    pkgsrc
Committed By:   mrg
Date:           Tue Oct 15 01:13:00 UTC 2024

Modified Files:
        pkgsrc/devel/argp: Makefile

Log Message:
fix the build on netbsd/arm64

this package uses alloca() to use gnu99 not c99, and probably fixes it
generally elsewhere since it won't be using the likely broken libc version
of this function (that we don't provide on arm64.)


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/argp/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/argp/Makefile
diff -u pkgsrc/devel/argp/Makefile:1.10 pkgsrc/devel/argp/Makefile:1.11
--- pkgsrc/devel/argp/Makefile:1.10     Tue Aug  6 18:55:26 2024
+++ pkgsrc/devel/argp/Makefile  Tue Oct 15 01:13:00 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2024/08/06 18:55:26 riastradh Exp $
+# $NetBSD: Makefile,v 1.11 2024/10/15 01:13:00 mrg Exp $
 
 DISTNAME=      argp-standalone-1.3
 PKGNAME=       argp-1.3
@@ -13,7 +13,7 @@ LICENSE=      gnu-lgpl-v2
 
 GNU_CONFIGURE= yes
 USE_LIBTOOL=   yes
-FORCE_C_STD=   c99
+FORCE_C_STD=   gnu99
 
 INSTALLATION_DIRS=     include lib
 



Home | Main Index | Thread Index | Old Index