0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00

Lower xxHash minimum version to 0.7.0

xxHash works just as well and allows us to compile with system libraries
on Ubuntu 20 and Debian 11
This commit is contained in:
Arne Schwabe 2022-01-07 13:43:52 +01:00 committed by David Sommerseth
parent 39443bff46
commit 0de7a58347
No known key found for this signature in database
GPG Key ID: 86CF944C9671FDF2

View File

@ -28,8 +28,8 @@
#define USE_OPENVPN_HASH
#define XXH_INLINE_ALL
#include <xxhash.h>
#if XXH_VERSION_NUMBER < 800
#error requires XXHash version 0.8.0 or higher
#if XXH_VERSION_NUMBER < 700
#error requires XXHash version 0.7.0 or higher
#endif
#endif