From 5e711068e4afb2d2b93af55f449f3af3e7170f95 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Mon, 9 Nov 2020 20:26:30 -0500 Subject: [build] check for xxhash in more ways pkg-config libxxhash.pc might not be provided with xxhash < 0.7.3 x-ref: "Update build-dep for xxhash [...]" https://salsa.debian.org/debian/lighttpd/-/merge_requests/29 --- configure.ac | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 97ced9ea..a47980a9 100644 --- a/configure.ac +++ b/configure.ac @@ -1204,7 +1204,13 @@ if test "$WITH_XXHASH" != no; then CPPFLAGS="$CPPFLAGS -I$WITH_XXHASH" else PKG_CHECK_MODULES([XXHASH], [libxxhash], [], [ - AC_MSG_ERROR([xxhash not found, install it or build without --with-xxhash]) + AC_CHECK_LIB([xxhash], [XXH_versionNumber], + [XXHASH_LIBS=-lxxhash], + [AC_MSG_ERROR([xxhash not found, install it or build without --with-xxhash])] + ) + AC_CHECK_HEADERS([xxhash.h], [], + [AC_MSG_ERROR([xxhash not found, install it or build without --with-xxhash])] + ) ]) fi -- cgit v1.2.1