aws-sdk-cpp: ignore openssl 3 deprecation warnings

This commit is contained in:
Sandro Jäckel 2022-08-31 17:28:35 +02:00
parent 08c6aef915
commit f5f1d11b9e
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -99,6 +99,11 @@ stdenv.mkDerivation rec {
] ++ lib.optional (apis != ["*"])
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
NIX_CFLAGS_COMPILE = [
# openssl 3 generates several deprecation warnings
"-Wno-error=deprecated-declarations"
];
# aws-cpp-sdk-core-tests/aws/client/AWSClientTest.cpp
# seem to have a datarace
enableParallelChecking = false;