From bc44bd1a246dc95b91faae30defafc3c259f5c4d Mon Sep 17 00:00:00 2001 From: John Levon Date: Mon, 9 May 2022 09:58:02 +0100 Subject: drop usage of MD5_*() (#667) These functions from openssl are deprecated, and hence break builds with openssl 3.0, which now has a compiler warning for them. We only use them to check buffer contents; replace them with CRC code from DPDK instead, and entirely drop use of openssl. Signed-off-by: John Levon Reviewed-by: Swapnil Ingle Reviewed-by: Thanos Makatos --- .github/workflows/pull_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 6299969..a970009 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -23,7 +23,7 @@ jobs: # NB: no working flake8 yum -y install make gcc-4.8.5 epel-release pciutils yum -y install clang cmake json-c-devel libcmocka-devel \ - openssl-devel valgrind python36-pytest which + valgrind python36-pytest which make pre-push VERBOSE=1 fedora-35: timeout-minutes: 10 @@ -34,6 +34,6 @@ jobs: - name: pre-push run: | dnf -y install --releasever=35 \ - gcc make clang cmake json-c-devel libcmocka-devel openssl-devel \ - pciutils diffutils valgrind python3-pytest python3-flake8 which + gcc make clang cmake json-c-devel libcmocka-devel pciutils \ + diffutils valgrind python3-pytest python3-flake8 which make pre-push VERBOSE=1 -- cgit v1.1