diff options
author | John Levon <john.levon@nutanix.com> | 2022-05-09 09:58:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 09:58:02 +0100 |
commit | bc44bd1a246dc95b91faae30defafc3c259f5c4d (patch) | |
tree | 08dbf2d5d4949d28716604bfe3db650b5c534e75 /README.md | |
parent | e47daa3ca898d9cfaed8630a01519cd51fc4aeea (diff) | |
download | libvfio-user-bc44bd1a246dc95b91faae30defafc3c259f5c4d.zip libvfio-user-bc44bd1a246dc95b91faae30defafc3c259f5c4d.tar.gz libvfio-user-bc44bd1a246dc95b91faae30defafc3c259f5c4d.tar.bz2 |
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 <john.levon@nutanix.com>
Reviewed-by: Swapnil Ingle <swapnil.ingle@nutanix.com>
Reviewed-by: Thanos Makatos <thanos.makatos@nutanix.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -59,8 +59,8 @@ Building libvfio-user Build requirements: * `cmake` (v2 or above) - * `apt install libjson-c-dev libcmocka-dev libssl-dev` *or* - * `yum install json-c-devel libcmocka-devel openssl-devel` + * `apt install libjson-c-dev libcmocka-dev` *or* + * `yum install json-c-devel libcmocka-devel` To build: |