diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-04-25 20:55:17 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-04-26 06:59:45 +0200 |
commit | f0048b99862439c8f968371f12dade3470e803ab (patch) | |
tree | 44e9a0029b998bd4913438a22b6c4ce08846cad2 /testing/source/gcc/c99.sh | |
parent | 33bcf3987f7635a5515f6b21d939a90bc9f4e900 (diff) | |
download | current-f0048b99862439c8f968371f12dade3470e803ab.tar.gz current-f0048b99862439c8f968371f12dade3470e803ab.tar.xz |
Mon Apr 25 20:55:17 UTC 202220220425205517
a/kernel-firmware-20220425_ac21ab5-noarch-1.txz: Upgraded.
d/meson-0.62.1-x86_64-1.txz: Upgraded.
d/parallel-20220422-noarch-1.txz: Upgraded.
l/harfbuzz-4.2.1-x86_64-1.txz: Upgraded.
l/imagemagick-7.1.0_31-x86_64-1.txz: Upgraded.
l/libseccomp-2.5.4-x86_64-1.txz: Upgraded.
l/libusb-1.0.26-x86_64-1.txz: Upgraded.
l/openal-soft-1.22.0-x86_64-1.txz: Upgraded.
n/proftpd-1.3.7d-x86_64-1.txz: Upgraded.
x/xdg-desktop-portal-1.14.3-x86_64-1.txz: Upgraded.
xap/freerdp-2.7.0-x86_64-1.txz: Upgraded.
This update is a security and maintenance release.
For more information, see:
https://github.com/FreeRDP/FreeRDP/blob/2.7.0/ChangeLog
(* Security fix *)
testing/packages/gcc-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-brig-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-g++-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-gdc-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-gfortran-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-gnat-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-go-11.3.0-x86_64-1.txz: Added.
testing/packages/gcc-objc-11.3.0-x86_64-1.txz: Added.
Diffstat (limited to 'testing/source/gcc/c99.sh')
-rw-r--r-- | testing/source/gcc/c99.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/source/gcc/c99.sh b/testing/source/gcc/c99.sh new file mode 100644 index 000000000..88dd80640 --- /dev/null +++ b/testing/source/gcc/c99.sh @@ -0,0 +1,10 @@ +#!/bin/sh +fl="-std=c99" +for opt; do + case "$opt" in + -std=c99|-std=iso9899:1999) fl="";; + -std=*) echo "`basename $0` called with non ISO C99 option $opt" >&2 + exit 1;; + esac +done +exec gcc $fl ${1+"$@"} |