From 0de7a58347c32dfc2b5db72cf3c4f2577245c439 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Fri, 7 Jan 2022 13:43:52 +0100 Subject: [PATCH] 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 --- openvpn/common/hash.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvpn/common/hash.hpp b/openvpn/common/hash.hpp index 36934b73..757b6fef 100644 --- a/openvpn/common/hash.hpp +++ b/openvpn/common/hash.hpp @@ -28,8 +28,8 @@ #define USE_OPENVPN_HASH #define XXH_INLINE_ALL #include -#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