mirror of https://github.com/openssl/openssl.git
- drop s/-ansi/-std=c99
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)
This commit is contained in:
parent
a5d1eadde1
commit
857156910d
|
@ -64,12 +64,12 @@ jobs:
|
||||||
# This checks that we use ANSI C language syntax and semantics.
|
# This checks that we use ANSI C language syntax and semantics.
|
||||||
# We are not as strict with libraries, but rather adapt to what's
|
# We are not as strict with libraries, but rather adapt to what's
|
||||||
# expected to be available in a certain version of each platform.
|
# expected to be available in a certain version of each platform.
|
||||||
check-ansi:
|
check-c99:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: config
|
- 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
|
- name: make
|
||||||
run: make -s -j4
|
run: make -s -j4
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue