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: Tue Mar 4 09:37:39 UTC 2025
Modified Files:
pkgsrc/audio/libcddb: Makefile
pkgsrc/converters/utf8proc: Makefile
pkgsrc/databases/postgresql-postgis2: Makefile
pkgsrc/devel/nss: Makefile
pkgsrc/editors/mle: Makefile
pkgsrc/editors/vim-share: Makefile.common
pkgsrc/emulators/blastem: Makefile
pkgsrc/emulators/mame: Makefile
pkgsrc/geography/gdal-lib: Makefile
pkgsrc/geography/py-gdal: Makefile
pkgsrc/graphics/ImageMagick6: Makefile
pkgsrc/graphics/babl: Makefile
pkgsrc/graphics/qr-code-generator: Makefile
pkgsrc/lang/gcc10: Makefile.common
pkgsrc/lang/gcc12: Makefile.common
pkgsrc/lang/gcc13: Makefile.common
pkgsrc/lang/gcc14: Makefile.common
pkgsrc/lang/gcc6: Makefile
pkgsrc/lang/gcc7: Makefile
pkgsrc/lang/gcc8: Makefile
pkgsrc/lang/gcc9: Makefile
pkgsrc/lang/ocaml: Makefile.common
pkgsrc/lang/perl5: Makefile
pkgsrc/multimedia/vlc: Makefile
pkgsrc/net/kea: Makefile
pkgsrc/net/vinagre: Makefile
pkgsrc/news/canlock-hp: Makefile
pkgsrc/news/libcanlock: Makefile
pkgsrc/wm/i3: Makefile
pkgsrc/x11/libXvMC: Makefile
pkgsrc/x11/libxkbfile: Makefile
Log Message:
*: Assume that the user has a C99-capable compiler.
A compiler that supports -std=c99 is required for
bootstrap, so it doesn't make sense to specify a c99
compiler everywhere in package makefiles.
At any rate, I would bet my entire life's savings that
this is a small fraction of the total number of packages
requiring c99.
Note that compilers that default to c89 but support c99
are still supported...
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 pkgsrc/audio/libcddb/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/converters/utf8proc/Makefile
cvs rdiff -u -r1.168 -r1.169 pkgsrc/databases/postgresql-postgis2/Makefile
cvs rdiff -u -r1.273 -r1.274 pkgsrc/devel/nss/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/editors/mle/Makefile
cvs rdiff -u -r1.168 -r1.169 pkgsrc/editors/vim-share/Makefile.common
cvs rdiff -u -r1.15 -r1.16 pkgsrc/emulators/blastem/Makefile
cvs rdiff -u -r1.210 -r1.211 pkgsrc/emulators/mame/Makefile
cvs rdiff -u -r1.182 -r1.183 pkgsrc/geography/gdal-lib/Makefile
cvs rdiff -u -r1.78 -r1.79 pkgsrc/geography/py-gdal/Makefile
cvs rdiff -u -r1.75 -r1.76 pkgsrc/graphics/ImageMagick6/Makefile
cvs rdiff -u -r1.61 -r1.62 pkgsrc/graphics/babl/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/graphics/qr-code-generator/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/lang/gcc10/Makefile.common
cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/gcc12/Makefile.common
cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/gcc13/Makefile.common
cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/gcc14/Makefile.common
cvs rdiff -u -r1.48 -r1.49 pkgsrc/lang/gcc6/Makefile
cvs rdiff -u -r1.50 -r1.51 pkgsrc/lang/gcc7/Makefile
cvs rdiff -u -r1.42 -r1.43 pkgsrc/lang/gcc8/Makefile
cvs rdiff -u -r1.49 -r1.50 pkgsrc/lang/gcc9/Makefile
cvs rdiff -u -r1.67 -r1.68 pkgsrc/lang/ocaml/Makefile.common
cvs rdiff -u -r1.283 -r1.284 pkgsrc/lang/perl5/Makefile
cvs rdiff -u -r1.304 -r1.305 pkgsrc/multimedia/vlc/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/net/kea/Makefile
cvs rdiff -u -r1.133 -r1.134 pkgsrc/net/vinagre/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/news/canlock-hp/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/news/libcanlock/Makefile
cvs rdiff -u -r1.62 -r1.63 pkgsrc/wm/i3/Makefile
cvs rdiff -u -r1.23 -r1.24 pkgsrc/x11/libXvMC/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/x11/libxkbfile/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/libcddb/Makefile
diff -u pkgsrc/audio/libcddb/Makefile:1.32 pkgsrc/audio/libcddb/Makefile:1.33
--- pkgsrc/audio/libcddb/Makefile:1.32 Tue Jul 18 12:56:05 2023
+++ pkgsrc/audio/libcddb/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2023/07/18 12:56:05 nia Exp $
+# $NetBSD: Makefile,v 1.33 2025/03/04 09:37:36 nia Exp $
DISTNAME= libcddb-1.3.2
PKGREVISION= 1
@@ -18,9 +18,6 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-cdio
USE_TOOLS+= pkg-config
-# "The package needs at least gcc 2.95 since it uses variadic macros"
-USE_CC_FEATURES+= c99
-
TEST_TARGET= check
.include "../../converters/libiconv/buildlink3.mk"
Index: pkgsrc/converters/utf8proc/Makefile
diff -u pkgsrc/converters/utf8proc/Makefile:1.19 pkgsrc/converters/utf8proc/Makefile:1.20
--- pkgsrc/converters/utf8proc/Makefile:1.19 Thu Jan 2 13:55:52 2025
+++ pkgsrc/converters/utf8proc/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2025/01/02 13:55:52 micha Exp $
+# $NetBSD: Makefile,v 1.20 2025/03/04 09:37:36 nia Exp $
DISTNAME= utf8proc-2.10.0
CATEGORIES= converters
@@ -11,7 +11,6 @@ COMMENT= C library for processing Unicod
LICENSE= mit AND unicode-v3
FORCE_C_STD= c99
-USE_CC_FEATURES+= c99
USE_LIBTOOL= yes
INSTALLATION_DIRS= include lib lib/pkgconfig
Index: pkgsrc/databases/postgresql-postgis2/Makefile
diff -u pkgsrc/databases/postgresql-postgis2/Makefile:1.168 pkgsrc/databases/postgresql-postgis2/Makefile:1.169
--- pkgsrc/databases/postgresql-postgis2/Makefile:1.168 Tue Feb 18 10:33:18 2025
+++ pkgsrc/databases/postgresql-postgis2/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.168 2025/02/18 10:33:18 wiz Exp $
+# $NetBSD: Makefile,v 1.169 2025/03/04 09:37:36 nia Exp $
# Note that the directory is still postgis2, for historical reasons.
# It remains, due to inertia and the pain of renaming outweighing the
@@ -32,7 +32,6 @@ CONFLICTS= postgis-[0-9]*
USE_GCC_RUNTIME= yes
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
USE_LIBTOOL= yes
USE_TOOLS+= gsed gmake lex pax perl pkg-config
GNU_CONFIGURE= yes
Index: pkgsrc/devel/nss/Makefile
diff -u pkgsrc/devel/nss/Makefile:1.273 pkgsrc/devel/nss/Makefile:1.274
--- pkgsrc/devel/nss/Makefile:1.273 Tue Feb 11 21:53:28 2025
+++ pkgsrc/devel/nss/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.273 2025/02/11 21:53:28 wiz Exp $
+# $NetBSD: Makefile,v 1.274 2025/03/04 09:37:36 nia Exp $
#
# release notes
# https://firefox-source-docs.mozilla.org/security/nss/releases/index.html
@@ -21,7 +21,6 @@ CTF_SUPPORTED= no # https://smartos.org
USE_GCC_RUNTIME= yes
USE_LANGUAGES= c
-USE_CC_FEATURES+= c99
USE_TOOLS+= gmake perl pax pkg-config
# Fails to detect jobserver on systems where /bin/make and /bin/gmake both
# exist. This is because nss uses "gmake" explicitly rather than $MAKE to
Index: pkgsrc/editors/mle/Makefile
diff -u pkgsrc/editors/mle/Makefile:1.3 pkgsrc/editors/mle/Makefile:1.4
--- pkgsrc/editors/mle/Makefile:1.3 Tue Jan 14 18:50:15 2025
+++ pkgsrc/editors/mle/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2025/01/14 18:50:15 ktnb Exp $
+# $NetBSD: Makefile,v 1.4 2025/03/04 09:37:36 nia Exp $
DISTNAME= mle-1.7.2
CATEGORIES= editors
@@ -17,8 +17,6 @@ BROKEN_ON_PLATFORM+= OpenBSD-*-*
USE_TOOLS+= pkg-config gmake
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
-
MAKE_FLAGS+= prefix=${PREFIX}
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
Index: pkgsrc/editors/vim-share/Makefile.common
diff -u pkgsrc/editors/vim-share/Makefile.common:1.168 pkgsrc/editors/vim-share/Makefile.common:1.169
--- pkgsrc/editors/vim-share/Makefile.common:1.168 Thu Nov 16 09:54:10 2023
+++ pkgsrc/editors/vim-share/Makefile.common Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.168 2023/11/16 09:54:10 wiz Exp $
+# $NetBSD: Makefile.common,v 1.169 2025/03/04 09:37:36 nia Exp $
# used by editors/vim/Makefile
# used by editors/vim-gtk2/Makefile
# used by editors/vim-gtk3/Makefile
@@ -25,7 +25,6 @@ LICENSE= vim-license OR gnu-gpl-v2
WRKSRC= ${WRKDIR}/${DISTNAME}/src
GNU_CONFIGURE= yes
USE_LANGUAGES+= c
-USE_CC_FEATURES+= c99
# http://www.netbsd.org/cgi-bin/query-pr-single.pl?number=38710
CHECK_INTERPRETER_SKIP= share/vim/${VIM_SUBDIR}/tools/vim132
Index: pkgsrc/emulators/blastem/Makefile
diff -u pkgsrc/emulators/blastem/Makefile:1.15 pkgsrc/emulators/blastem/Makefile:1.16
--- pkgsrc/emulators/blastem/Makefile:1.15 Wed Feb 12 06:44:42 2025
+++ pkgsrc/emulators/blastem/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2025/02/12 06:44:42 ryoon Exp $
+# $NetBSD: Makefile,v 1.16 2025/03/04 09:37:36 nia Exp $
DISTNAME= 8aeac7bd9fa7
PKGNAME= blastem-0.6.2
@@ -20,8 +20,6 @@ MAKE_FLAGS+= OPT=
MAKE_FLAGS+= NOLTO=1
MAKE_FLAGS+= DATA_PATH=${PREFIX}/share/blastem
-USE_CC_FEATURES+= c99
-
INSTALLATION_DIRS+= bin
INSTALLATION_DIRS+= share/applications
INSTALLATION_DIRS+= share/blastem
Index: pkgsrc/emulators/mame/Makefile
diff -u pkgsrc/emulators/mame/Makefile:1.210 pkgsrc/emulators/mame/Makefile:1.211
--- pkgsrc/emulators/mame/Makefile:1.210 Wed Feb 26 10:36:30 2025
+++ pkgsrc/emulators/mame/Makefile Tue Mar 4 09:37:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.210 2025/02/26 10:36:30 wiz Exp $
+# $NetBSD: Makefile,v 1.211 2025/03/04 09:37:36 nia Exp $
DISTNAME= mame-0.275
CATEGORIES= emulators
@@ -19,7 +19,6 @@ INSTALLATION_DIRS+= ${SHAREDIR}/artwork/
DEPENDS+= liberation-ttf-[0-9]*:../../fonts/liberation-ttf
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
USE_CXX_FEATURES+= c++17
USE_TOOLS+= gmake pkg-config
UNLIMIT_RESOURCES+= cputime datasize memorysize virtualsize
Index: pkgsrc/geography/gdal-lib/Makefile
diff -u pkgsrc/geography/gdal-lib/Makefile:1.182 pkgsrc/geography/gdal-lib/Makefile:1.183
--- pkgsrc/geography/gdal-lib/Makefile:1.182 Mon Jan 13 18:40:46 2025
+++ pkgsrc/geography/gdal-lib/Makefile Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.182 2025/01/13 18:40:46 gdt Exp $
+# $NetBSD: Makefile,v 1.183 2025/03/04 09:37:37 nia Exp $
.include "../../geography/gdal-lib/Makefile.common"
PKGNAME= ${DISTNAME:S/gdal/gdal-lib/}
@@ -7,7 +7,6 @@ PKGNAME= ${DISTNAME:S/gdal/gdal-lib/}
COMMENT= Translator library for raster geospatial data formats
USE_LANGUAGES+= c c++
-USE_CC_FEATURES+= c99
USE_CXX_FEATURES+= c++17 charconv
USE_TOOLS+= gmake
Index: pkgsrc/geography/py-gdal/Makefile
diff -u pkgsrc/geography/py-gdal/Makefile:1.78 pkgsrc/geography/py-gdal/Makefile:1.79
--- pkgsrc/geography/py-gdal/Makefile:1.78 Mon Jan 13 18:40:46 2025
+++ pkgsrc/geography/py-gdal/Makefile Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.78 2025/01/13 18:40:46 gdt Exp $
+# $NetBSD: Makefile,v 1.79 2025/03/04 09:37:37 nia Exp $
.include "../../geography/gdal-lib/Makefile.common"
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
@@ -10,7 +10,6 @@ COMMENT= Translator library for raster g
# hard-required must be present, separately from whether it is needed
# for the python bindings.
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
USE_CXX_FEATURES+= c++11
.include "../../mk/bsd.prefs.mk"
Index: pkgsrc/graphics/ImageMagick6/Makefile
diff -u pkgsrc/graphics/ImageMagick6/Makefile:1.75 pkgsrc/graphics/ImageMagick6/Makefile:1.76
--- pkgsrc/graphics/ImageMagick6/Makefile:1.75 Thu Nov 14 22:20:04 2024
+++ pkgsrc/graphics/ImageMagick6/Makefile Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.75 2024/11/14 22:20:04 wiz Exp $
+# $NetBSD: Makefile,v 1.76 2025/03/04 09:37:37 nia Exp $
PKGREVISION= 6
.include "Makefile.common"
@@ -49,7 +49,6 @@ SUBST_NOOP_OK.pkgcfg= yes
# modified, and they don't need to since their names don't appear in any
# "Requires:" line.
-USE_CC_FEATURES+= c99
FORCE_C_STD= c99
TEST_TARGET= check
Index: pkgsrc/graphics/babl/Makefile
diff -u pkgsrc/graphics/babl/Makefile:1.61 pkgsrc/graphics/babl/Makefile:1.62
--- pkgsrc/graphics/babl/Makefile:1.61 Thu Nov 7 07:38:56 2024
+++ pkgsrc/graphics/babl/Makefile Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.61 2024/11/07 07:38:56 wiz Exp $
+# $NetBSD: Makefile,v 1.62 2025/03/04 09:37:37 nia Exp $
DISTNAME= babl-0.1.110
CATEGORIES= graphics
@@ -13,8 +13,6 @@ LICENSE= gnu-gpl-v3
USE_TOOLS+= pkg-config
USE_LANGUAGES= c
-USE_CC_FEATURES+= c99
-
MESON_ARGS+= -Dwith-docs=false
PKGCONFIG_OVERRIDE+= babl.pc.in
Index: pkgsrc/graphics/qr-code-generator/Makefile
diff -u pkgsrc/graphics/qr-code-generator/Makefile:1.6 pkgsrc/graphics/qr-code-generator/Makefile:1.7
--- pkgsrc/graphics/qr-code-generator/Makefile:1.6 Sat Sep 28 08:27:55 2024
+++ pkgsrc/graphics/qr-code-generator/Makefile Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2024/09/28 08:27:55 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2025/03/04 09:37:37 nia Exp $
DISTNAME= QR-Code-generator-1.8.0
PKGNAME= ${DISTNAME:tl}
@@ -13,7 +13,6 @@ LICENSE= mit
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
USE_CXX_FEATURES+= c++11
USE_TOOLS+= gmake
Index: pkgsrc/lang/gcc10/Makefile.common
diff -u pkgsrc/lang/gcc10/Makefile.common:1.11 pkgsrc/lang/gcc10/Makefile.common:1.12
--- pkgsrc/lang/gcc10/Makefile.common:1.11 Tue Jan 7 19:54:31 2025
+++ pkgsrc/lang/gcc10/Makefile.common Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.11 2025/01/07 19:54:31 riastradh Exp $
+# $NetBSD: Makefile.common,v 1.12 2025/03/04 09:37:37 nia Exp $
# used by lang/gcc10-libjit/Makefile
GCC_PKGNAME= gcc10
@@ -43,7 +43,6 @@ INFO_FILES= yes
CONFIGURE_ARGS+= --disable-libstdcxx-pch
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
UNLIMIT_RESOURCES+= datasize
Index: pkgsrc/lang/gcc12/Makefile.common
diff -u pkgsrc/lang/gcc12/Makefile.common:1.10 pkgsrc/lang/gcc12/Makefile.common:1.11
--- pkgsrc/lang/gcc12/Makefile.common:1.10 Tue Jan 7 19:55:37 2025
+++ pkgsrc/lang/gcc12/Makefile.common Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.10 2025/01/07 19:55:37 riastradh Exp $
+# $NetBSD: Makefile.common,v 1.11 2025/03/04 09:37:37 nia Exp $
# used by lang/gcc12-libjit/Makefile
GCC_PKGNAME= gcc12
@@ -42,7 +42,6 @@ INFO_FILES= yes
CONFIGURE_ARGS+= --disable-libstdcxx-pch
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
USE_CXX_FEATURES+= c++11
FORCE_CXX_STD= c++11
Index: pkgsrc/lang/gcc13/Makefile.common
diff -u pkgsrc/lang/gcc13/Makefile.common:1.9 pkgsrc/lang/gcc13/Makefile.common:1.10
--- pkgsrc/lang/gcc13/Makefile.common:1.9 Tue Jan 7 19:55:52 2025
+++ pkgsrc/lang/gcc13/Makefile.common Tue Mar 4 09:37:37 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.9 2025/01/07 19:55:52 riastradh Exp $
+# $NetBSD: Makefile.common,v 1.10 2025/03/04 09:37:37 nia Exp $
# used by lang/gcc13-libjit/Makefile
GCC_PKGNAME= gcc13
@@ -42,7 +42,6 @@ INFO_FILES= yes
CONFIGURE_ARGS+= --disable-libstdcxx-pch
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
USE_CXX_FEATURES+= c++11
FORCE_CXX_STD= c++11
Index: pkgsrc/lang/gcc14/Makefile.common
diff -u pkgsrc/lang/gcc14/Makefile.common:1.6 pkgsrc/lang/gcc14/Makefile.common:1.7
--- pkgsrc/lang/gcc14/Makefile.common:1.6 Wed Feb 5 16:30:33 2025
+++ pkgsrc/lang/gcc14/Makefile.common Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.6 2025/02/05 16:30:33 adam Exp $
+# $NetBSD: Makefile.common,v 1.7 2025/03/04 09:37:38 nia Exp $
# used by lang/gcc14-libjit/Makefile
GCC_PKGNAME= gcc14
@@ -42,7 +42,6 @@ INFO_FILES= yes
CONFIGURE_ARGS+= --disable-libstdcxx-pch
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
USE_CXX_FEATURES+= c++11
FORCE_CXX_STD= c++11
Index: pkgsrc/lang/gcc6/Makefile
diff -u pkgsrc/lang/gcc6/Makefile:1.48 pkgsrc/lang/gcc6/Makefile:1.49
--- pkgsrc/lang/gcc6/Makefile:1.48 Tue Jan 7 19:56:15 2025
+++ pkgsrc/lang/gcc6/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.48 2025/01/07 19:56:15 riastradh Exp $
+# $NetBSD: Makefile,v 1.49 2025/03/04 09:37:38 nia Exp $
GCC_PKGNAME= gcc6
.include "version.mk"
@@ -51,7 +51,6 @@ CONFIGURE_ARGS+= --disable-libstdcxx-pch
GCC_TARGET_MACHINE= ${MACHINE_GNU_PLATFORM}
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
UNLIMIT_RESOURCES+= datasize
Index: pkgsrc/lang/gcc7/Makefile
diff -u pkgsrc/lang/gcc7/Makefile:1.50 pkgsrc/lang/gcc7/Makefile:1.51
--- pkgsrc/lang/gcc7/Makefile:1.50 Tue Aug 29 09:48:47 2023
+++ pkgsrc/lang/gcc7/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.50 2023/08/29 09:48:47 nia Exp $
+# $NetBSD: Makefile,v 1.51 2025/03/04 09:37:38 nia Exp $
GCC_PKGNAME= gcc7
.include "version.mk"
@@ -44,7 +44,6 @@ INFO_FILES= yes
CONFIGURE_ARGS+= --disable-libstdcxx-pch
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
UNLIMIT_RESOURCES+= datasize
Index: pkgsrc/lang/gcc8/Makefile
diff -u pkgsrc/lang/gcc8/Makefile:1.42 pkgsrc/lang/gcc8/Makefile:1.43
--- pkgsrc/lang/gcc8/Makefile:1.42 Thu Oct 5 05:27:38 2023
+++ pkgsrc/lang/gcc8/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.42 2023/10/05 05:27:38 gutteridge Exp $
+# $NetBSD: Makefile,v 1.43 2025/03/04 09:37:38 nia Exp $
GCC_PKGNAME= gcc8
.include "version.mk"
@@ -47,7 +47,6 @@ UNLIMIT_RESOURCES+= datasize
UNLIMIT_RESOURCES+= stacksize
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
CHECK_PORTABILITY_SKIP+= contrib/*
Index: pkgsrc/lang/gcc9/Makefile
diff -u pkgsrc/lang/gcc9/Makefile:1.49 pkgsrc/lang/gcc9/Makefile:1.50
--- pkgsrc/lang/gcc9/Makefile:1.49 Thu Oct 5 06:03:11 2023
+++ pkgsrc/lang/gcc9/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.49 2023/10/05 06:03:11 gutteridge Exp $
+# $NetBSD: Makefile,v 1.50 2025/03/04 09:37:38 nia Exp $
GCC_PKGNAME= gcc9
.include "version.mk"
@@ -44,7 +44,6 @@ CONFIGURE_ARGS+= --disable-libstdcxx-pch
UNLIMIT_RESOURCES= datasize stacksize
# error: 'for' loop initial declarations are only allowed in C99 mode
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
CHECK_PORTABILITY_SKIP+= contrib/* # not needed during the build
Index: pkgsrc/lang/ocaml/Makefile.common
diff -u pkgsrc/lang/ocaml/Makefile.common:1.67 pkgsrc/lang/ocaml/Makefile.common:1.68
--- pkgsrc/lang/ocaml/Makefile.common:1.67 Sat Nov 30 01:34:47 2024
+++ pkgsrc/lang/ocaml/Makefile.common Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.67 2024/11/30 01:34:47 gdt Exp $
+# $NetBSD: Makefile.common,v 1.68 2025/03/04 09:37:38 nia Exp $
# not used by anything else these days
@@ -17,7 +17,6 @@ COMMENT= The latest implementation of th
LICENSE= gnu-gpl-v2
USE_LANGUAGES+= c
-USE_CC_FEATURES+= c99
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
Index: pkgsrc/lang/perl5/Makefile
diff -u pkgsrc/lang/perl5/Makefile:1.283 pkgsrc/lang/perl5/Makefile:1.284
--- pkgsrc/lang/perl5/Makefile:1.283 Tue Feb 11 12:30:15 2025
+++ pkgsrc/lang/perl5/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.283 2025/02/11 12:30:15 ryoon Exp $
+# $NetBSD: Makefile,v 1.284 2025/03/04 09:37:38 nia Exp $
.include "license.mk"
.include "Makefile.common"
@@ -22,7 +22,6 @@ SUPERSEDES+= p5-experimental<=0.007
# XXX: requires that gcc use an external perl to avoid circular dependencies
USE_GCC_RUNTIME= yes
USE_LANGUAGES= c
-USE_CC_FEATURES+= c99
.include "../../mk/bsd.prefs.mk"
Index: pkgsrc/multimedia/vlc/Makefile
diff -u pkgsrc/multimedia/vlc/Makefile:1.304 pkgsrc/multimedia/vlc/Makefile:1.305
--- pkgsrc/multimedia/vlc/Makefile:1.304 Wed Feb 12 06:45:29 2025
+++ pkgsrc/multimedia/vlc/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.304 2025/02/12 06:45:29 ryoon Exp $
+# $NetBSD: Makefile,v 1.305 2025/03/04 09:37:38 nia Exp $
DISTNAME= vlc-3.0.21
PKGREVISION= 7
@@ -23,7 +23,6 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-kde-solid=${PREFIX}/share/kde/apps/solid/actions
PTHREAD_OPTS+= require
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
PLIST_VARS+= altivec cdrom egl oss v4l2 x86simd
.include "../../mk/bsd.prefs.mk"
Index: pkgsrc/net/kea/Makefile
diff -u pkgsrc/net/kea/Makefile:1.13 pkgsrc/net/kea/Makefile:1.14
--- pkgsrc/net/kea/Makefile:1.13 Thu Feb 6 00:00:44 2025
+++ pkgsrc/net/kea/Makefile Tue Mar 4 09:37:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2025/02/06 00:00:44 riastradh Exp $
+# $NetBSD: Makefile,v 1.14 2025/03/04 09:37:38 nia Exp $
DISTNAME= kea-${VERSION}
COMMENT= Next-generation ISC Dynamic Host Configuration Protocol (DHCP) Server
@@ -23,7 +23,6 @@ PKG_SYSCONFSUBDIR= kea
USE_TOOLS+= autoconf gmake
USE_LANGUAGES+= c++ c
-USE_CC_FEATURES+= c99
RCD_SCRIPTS= kea
Index: pkgsrc/net/vinagre/Makefile
diff -u pkgsrc/net/vinagre/Makefile:1.133 pkgsrc/net/vinagre/Makefile:1.134
--- pkgsrc/net/vinagre/Makefile:1.133 Wed Feb 12 06:45:32 2025
+++ pkgsrc/net/vinagre/Makefile Tue Mar 4 09:37:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.133 2025/02/12 06:45:32 ryoon Exp $
+# $NetBSD: Makefile,v 1.134 2025/03/04 09:37:39 nia Exp $
DISTNAME= vinagre-3.22.0
PKGREVISION= 9
@@ -17,8 +17,6 @@ USE_TOOLS+= gmake intltool pkg-config it
USE_TOOLS+= msgfmt msgmerge xgettext
USE_LANGUAGES= c c++
-USE_CC_FEATURES+= c99
-
USE_PKGLOCALEDIR= yes
CFLAGS.SunOS+= -D__EXTENSIONS__
Index: pkgsrc/news/canlock-hp/Makefile
diff -u pkgsrc/news/canlock-hp/Makefile:1.11 pkgsrc/news/canlock-hp/Makefile:1.12
--- pkgsrc/news/canlock-hp/Makefile:1.11 Fri May 31 10:55:37 2024
+++ pkgsrc/news/canlock-hp/Makefile Tue Mar 4 09:37:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2024/05/31 10:55:37 micha Exp $
+# $NetBSD: Makefile,v 1.12 2025/03/04 09:37:39 nia Exp $
DISTNAME= libcanlock-3.3.1
PKGNAME= ${DISTNAME:S/libcanlock/canlock-hp/}
@@ -13,7 +13,6 @@ LICENSE= icu
USE_TOOLS+= lex yacc
FORCE_C_STD= c99
-USE_CC_FEATURES+= c99
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
Index: pkgsrc/news/libcanlock/Makefile
diff -u pkgsrc/news/libcanlock/Makefile:1.12 pkgsrc/news/libcanlock/Makefile:1.13
--- pkgsrc/news/libcanlock/Makefile:1.12 Fri May 31 10:47:15 2024
+++ pkgsrc/news/libcanlock/Makefile Tue Mar 4 09:37:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2024/05/31 10:47:15 micha Exp $
+# $NetBSD: Makefile,v 1.13 2025/03/04 09:37:39 nia Exp $
DISTNAME= libcanlock-3.3.1
CATEGORIES= news
@@ -11,7 +11,6 @@ COMMENT= Standalone RFC 8315 Netnews Can
LICENSE= icu AND modified-bsd
FORCE_C_STD= c99
-USE_CC_FEATURES+= c99
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
Index: pkgsrc/wm/i3/Makefile
diff -u pkgsrc/wm/i3/Makefile:1.62 pkgsrc/wm/i3/Makefile:1.63
--- pkgsrc/wm/i3/Makefile:1.62 Fri Dec 27 08:20:46 2024
+++ pkgsrc/wm/i3/Makefile Tue Mar 4 09:37:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.62 2024/12/27 08:20:46 wiz Exp $
+# $NetBSD: Makefile,v 1.63 2025/03/04 09:37:39 nia Exp $
DISTNAME= i3-4.24
PKGREVISION= 1
@@ -19,8 +19,6 @@ GNU_CONFIGURE= yes
USE_TOOLS+= bash pkg-config perl:run
USE_LANGUAGES= c
-USE_CC_FEATURES+= c99
-
CFLAGS.SunOS+= -D__EXTENSIONS__
LDFLAGS.SunOS+= -lgen -lsocket
Index: pkgsrc/x11/libXvMC/Makefile
diff -u pkgsrc/x11/libXvMC/Makefile:1.23 pkgsrc/x11/libXvMC/Makefile:1.24
--- pkgsrc/x11/libXvMC/Makefile:1.23 Wed Feb 21 10:36:20 2024
+++ pkgsrc/x11/libXvMC/Makefile Tue Mar 4 09:37:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2024/02/21 10:36:20 nia Exp $
+# $NetBSD: Makefile,v 1.24 2025/03/04 09:37:39 nia Exp $
DISTNAME= libXvMC-1.0.14
CATEGORIES= x11
@@ -12,7 +12,6 @@ LICENSE= mit
USE_TOOLS+= pkg-config
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
PKGCONFIG_OVERRIDE+= output/meson-private/xvmc.pc
Index: pkgsrc/x11/libxkbfile/Makefile
diff -u pkgsrc/x11/libxkbfile/Makefile:1.16 pkgsrc/x11/libxkbfile/Makefile:1.17
--- pkgsrc/x11/libxkbfile/Makefile:1.16 Wed Feb 21 10:32:01 2024
+++ pkgsrc/x11/libxkbfile/Makefile Tue Mar 4 09:37:39 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2024/02/21 10:32:01 nia Exp $
+# $NetBSD: Makefile,v 1.17 2025/03/04 09:37:39 nia Exp $
DISTNAME= libxkbfile-1.1.3
CATEGORIES= x11
@@ -11,7 +11,6 @@ COMMENT= The xkbfile Library from modul
USE_TOOLS+= pkg-config
-USE_CC_FEATURES+= c99
FORCE_C_STD= gnu99
PKGCONFIG_OVERRIDE+= output/xkbfile.pc
Home |
Main Index |
Thread Index |
Old Index