From: sashan Date: Tue, 20 May 2025 01:22:24 +0000 (+0200) Subject: - drop s/-ansi/-std=c99 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=857156910d85cbe55fe0bd01554c3da80e15a946;p=thirdparty%2Fopenssl.git - drop s/-ansi/-std=c99 Reviewed-by: Neil Horman Reviewed-by: Tim Hudson Reviewed-by: Tom Cosgrove (Merged from https://github.com/openssl/openssl/pull/27659) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76dc3abea93..04b2fed5218 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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