From fcca836a2015de9bcad70cd6c00f9be21a06078d Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 6 Jan 2021 18:05:58 +1100 Subject: [PATCH] Fix 'configure --with-maxminddb=' --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4d10f2bfc1..c90014b7e7 100644 --- a/configure.ac +++ b/configure.ac @@ -496,7 +496,7 @@ AS_IF([test "$enable_geoip" = "yes"], LIBS="$LIBS $MAXMINDDB_LIBS" AC_SEARCH_LIBS([MMDB_open], [maxminddb], [AC_DEFINE([HAVE_GEOIP2], [1], [Build with GeoIP2 support]) - MAXMINDDB_LIBS="$MAXMINDDB_LIBS $ac_cv_search_mmdb_open" + MAXMINDDB_LIBS="$MAXMINDDB_LIBS $ac_cv_search_MMDB_open" AC_MSG_NOTICE([GeoIP2 default database path set to $with_maxminddb/share/GeoIP]) AS_VAR_COPY([MAXMINDDB_PREFIX], [$with_maxminddb]) ],