Skip to content

Commit 3d82ddf

Browse files
committed
OpenSSL 3.0 deprecated low level HMAC and other
So we need to disable -Werror until we can replace those functions with calls to the EVP api or internal code. Signed-off-by: Simo Sorce <[email protected]>
1 parent 463d932 commit 3d82ddf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/ci.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ if [ x$FLAKE == xyes ]; then
2626
flake8
2727
fi
2828

29-
CFLAGS="-Werror"
29+
#Disable -Werror until we can replace the HMAC stuff which gives warnings
30+
#because it has been deprecated in OpenSSL 3.0
31+
#CFLAGS="-Werror"
3032
if [ x$COMPILER == xclang ]; then
3133
CFLAGS+=" -Wno-missing-field-initializers"
3234
CFLAGS+=" -Wno-missing-braces -Wno-cast-align"

0 commit comments

Comments
 (0)