diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-08-09 22:23:53 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-08-10 16:44:02 +0300 |
commit | 73f8ec5992d17a5431b7a2d123097981dbaa4769 (patch) | |
tree | ebca72ab4b907f2ba2bcd39712f2517a95d1b7c4 /tools/build | |
parent | dd6775f986144a9e0563dab70ef0398768227113 (diff) | |
download | linux-73f8ec5992d17a5431b7a2d123097981dbaa4769.tar.xz |
Revert "perf build: Suppress openssl v3 deprecation warnings in libcrypto feature test"
This reverts commit 10fef869a58e37ec649b61eddab545f2da57a79b.
Because a proper fix was submitted.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/build')
-rw-r--r-- | tools/build/feature/test-libcrypto.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/build/feature/test-libcrypto.c b/tools/build/feature/test-libcrypto.c index 31afff093d0b..a98174e0569c 100644 --- a/tools/build/feature/test-libcrypto.c +++ b/tools/build/feature/test-libcrypto.c @@ -2,12 +2,6 @@ #include <openssl/sha.h> #include <openssl/md5.h> -/* - * The MD5_* API have been deprecated since OpenSSL 3.0, which causes the - * feature test to fail silently. This is a workaround. - */ -#pragma GCC diagnostic ignored "-Wdeprecated-declarations" - int main(void) { MD5_CTX context; |