diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-12-25 08:44:57 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-12-25 08:44:57 +0100 |
commit | e1e9250ff770625d8a81326e6e5f5011f909cfca (patch) | |
tree | 02b06e9a0b6ac4b8d89588cc1260e5ece47c75eb /configure.ac | |
parent | 247d1ca3e56461069c02481c7071b56e950fe78a (diff) |
add check for sufficiently recent version of libgnunetutil, remove now unnecessary crypto blinding logic
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 *** ]])]) |