diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6194f835b..bd18a430b 100644 --- a/configure.ac +++ b/configure.ac @@ -129,11 +129,16 @@ AC_CHECK_HEADERS([gnunet/platform.h gnunet/gnunet_util_lib.h], [AC_CHECK_LIB([gnunetutil], [GNUNET_SCHEDULER_run], libgnunetutil=1)], [], [#ifdef HAVE_GNUNET_PLATFORM_H #include <gnunet/platform.h> + #endif + #include <gnunet/gnunet_common.h> + #if GNUNET_UTIL_VERSION < 0x00A0104 + #fail libgnunetutil is too old #endif]) AS_IF([test $libgnunetutil != 1], [AC_MSG_ERROR([[ *** -*** You need libgnunetutil to build this program. +*** You need libgnunetutil > 0.14.0 to build this program. +*** (Yes, ">", libgnunetutil 0.14.0 is NOT enough.) *** This library is part of GNUnet, available at *** https://gnunet.org *** ]])]) |