]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
- drop s/-ansi/-std=c99
authorsashan <anedvedicky@gmail.com>
Tue, 20 May 2025 01:22:24 +0000 (03:22 +0200)
committerNeil Horman <nhorman@openssl.org>
Tue, 3 Jun 2025 13:02:21 +0000 (09:02 -0400)
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
(Merged from https://github.com/openssl/openssl/pull/27659)

.github/workflows/ci.yml

index 76dc3abea9342b305fc7907cef59f00c284c1ccc..04b2fed521843a78556fa2a661df01f7b6bccd3f 100644 (file)
@@ -64,12 +64,12 @@ jobs:
   # This checks that we use ANSI C language syntax and semantics.
   # We are not as strict with libraries, but rather adapt to what's
   # expected to be available in a certain version of each platform.
-  check-ansi:
+  check-c99:
     runs-on: ubuntu-latest
     steps:
     - uses: actions/checkout@v4
     - name: config
-      run: CPPFLAGS='-ansi -D_XOPEN_SOURCE=1 -D_POSIX_C_SOURCE=200809L' ./config --strict-warnings --banner=Configured enable-sslkeylog no-asm no-secure-memory no-makedepend enable-buildtest-c++ enable-fips && perl configdata.pm --dump
+      run: CPPFLAGS='-std=c99 -D_XOPEN_SOURCE=1 -D_POSIX_C_SOURCE=200809L' ./config --strict-warnings --banner=Configured enable-sslkeylog no-asm no-secure-memory no-makedepend enable-buildtest-c++ enable-fips && perl configdata.pm --dump
     - name: make
       run: make -s -j4