pkgsrc-Changes archive

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

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu Aug  3 21:06:46 UTC 2023

Modified Files:
        pkgsrc/www/w3m: Makefile.common
        pkgsrc/x11/gtk3: Makefile

Log Message:
Use gnu99 where required to get definitions for libc symbols.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 pkgsrc/www/w3m/Makefile.common
cvs rdiff -u -r1.187 -r1.188 pkgsrc/x11/gtk3/Makefile

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

Modified files:

Index: pkgsrc/www/w3m/Makefile.common
diff -u pkgsrc/www/w3m/Makefile.common:1.79 pkgsrc/www/w3m/Makefile.common:1.80
--- pkgsrc/www/w3m/Makefile.common:1.79 Wed Aug  2 16:17:19 2023
+++ pkgsrc/www/w3m/Makefile.common      Thu Aug  3 21:06:46 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.79 2023/08/02 16:17:19 nia Exp $
+# $NetBSD: Makefile.common,v 1.80 2023/08/03 21:06:46 nia Exp $
 #
 # used by www/w3m/Makefile
 # used by www/w3m-img/Makefile
@@ -22,7 +22,8 @@ USE_TOOLS+=           msgfmt
 USE_PKGLOCALEDIR=      yes
 
 # error: 'for' loop initial declarations are only allowed in C99 mode
-FORCE_C_STD=   c99
+# needs strcasecmp, ISO C unacceptable on illumos
+FORCE_C_STD=   gnu99
 
 W3M_VERS=      0.5.3+git20230121
 W3M_PKGVERS=   ${W3M_VERS:S/+git/.0./}

Index: pkgsrc/x11/gtk3/Makefile
diff -u pkgsrc/x11/gtk3/Makefile:1.187 pkgsrc/x11/gtk3/Makefile:1.188
--- pkgsrc/x11/gtk3/Makefile:1.187      Wed Aug  2 16:17:19 2023
+++ pkgsrc/x11/gtk3/Makefile    Thu Aug  3 21:06:46 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.187 2023/08/02 16:17:19 nia Exp $
+# $NetBSD: Makefile,v 1.188 2023/08/03 21:06:46 nia Exp $
 
 DISTNAME=      gtk+-3.24.38
 PKGNAME=       ${DISTNAME:S/gtk/gtk3/}
@@ -20,7 +20,8 @@ USE_TOOLS+=           bash gdbus-codegen ggrep ms
 PTHREAD_AUTO_VARS=     yes
 
 # "error: 'for' loop initial declarations are only allowed in C99 mode"
-FORCE_C_STD=   c99
+# tests need M_PI, ISO C unacceptable on illumos
+FORCE_C_STD=   gnu99
 
 MESON_ARGS+=   -Dgtk_doc=true
 MESON_ARGS+=   -Dman=true



Home | Main Index | Thread Index | Old Index