Skip to content

Commit

Permalink
OpenSSL 3.0 deprecated low level HMAC and other
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
simo5 committed Aug 29, 2022
1 parent 463d932 commit 3d82ddf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ if [ x$FLAKE == xyes ]; then
flake8
fi

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

0 comments on commit 3d82ddf

Please sign in to comment.