From: William Lallemand Date: Mon, 11 Apr 2022 16:59:41 +0000 (+0200) Subject: CI: github actions: disable -Wno-deprecated X-Git-Tag: v2.6-dev6~141 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c24ac4339c7db15e148ce73d43bfd17676b5a418;p=thirdparty%2Fhaproxy.git CI: github actions: disable -Wno-deprecated The deprecrated code is now disabled by default, so we can build with quictls and openssl 3.0 without this option. --- diff --git a/.github/matrix.py b/.github/matrix.py index 2bd6506312..d070ae280d 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -119,8 +119,6 @@ for CC in ["gcc", "clang"]: flags = ["USE_OPENSSL=1"] if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes": flags.append("USE_QUIC=1") - if "OPENSSL_VERSION=3.0." in ssl or ssl == "QUICTLS=yes": - flags.append('DEBUG_CFLAGS="-g -Wno-deprecated-declarations"') if ssl != "stock": flags.append("SSL_LIB=${HOME}/opt/lib") flags.append("SSL_INC=${HOME}/opt/include")