pkgsrc-Changes archive

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

CVS commit: pkgsrc/mk/compiler



Module Name:    pkgsrc
Committed By:   gdt
Date:           Mon Jun 22 18:20:10 UTC 2026

Modified Files:
        pkgsrc/mk/compiler: gcc-style-args.mk

Log Message:
mk/compiler/gcc-style-args.mk: Prune historical C dialects

Drop c90, c9x, c1x, c2x, and add c23.

None of the dropped names are used in pkgsrc (or wip), and they were
not supported in USE_CC_FEATURES.  (c23 remains unsupported, but
that's separable from fixing c2x->c23.)

As discussed on tech-pkg@.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/mk/compiler/gcc-style-args.mk

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

Modified files:

Index: pkgsrc/mk/compiler/gcc-style-args.mk
diff -u pkgsrc/mk/compiler/gcc-style-args.mk:1.5 pkgsrc/mk/compiler/gcc-style-args.mk:1.6
--- pkgsrc/mk/compiler/gcc-style-args.mk:1.5    Sun Mar 17 14:15:59 2024
+++ pkgsrc/mk/compiler/gcc-style-args.mk        Mon Jun 22 18:20:10 2026
@@ -1,4 +1,4 @@
-# $NetBSD: gcc-style-args.mk,v 1.5 2024/03/17 14:15:59 nia Exp $
+# $NetBSD: gcc-style-args.mk,v 1.6 2026/06/22 18:20:10 gdt Exp $
 
 #
 # Some compilers (e.g. clang) share command line argument formats with GCC.
@@ -21,7 +21,7 @@ CWRAPPERS_PREPEND.cc+=        -fcommon
 # Language dialects
 #
 
-_GCC_C_DIALECTS=       c89 c90 c99 c9x c11 c1x c17 c18 c2x
+_GCC_C_DIALECTS=       c89 c99 c11 c17 c23
 
 _GCC_C_DIALECTS+=      gnu89 gnu90 gnu99 gnu9x gnu11 gnu1x gnu17 gnu18 \
                        gnu2x



Home | Main Index | Thread Index | Old Index