aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index bd92bd0e9..3cf7e6cb6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@
21# 21#
22AC_PREREQ(2.61) 22AC_PREREQ(2.61)
23# Checks for programs. 23# Checks for programs.
24AC_INIT([gnunet], [0.13.2], [bug-gnunet@gnu.org]) 24AC_INIT([gnunet], [0.13.3], [bug-gnunet@gnu.org])
25AC_CONFIG_AUX_DIR([build-aux]) 25AC_CONFIG_AUX_DIR([build-aux])
26 26
27# check for legacy option that is no longer supported (#5627) and fail hard 27# check for legacy option that is no longer supported (#5627) and fail hard
@@ -1036,9 +1036,10 @@ AC_CHECK_LIB([kvm],[kvm_open])
1036AC_CHECK_LIB([kstat],[kstat_open]) 1036AC_CHECK_LIB([kstat],[kstat_open])
1037 1037
1038libsodium=0 1038libsodium=0
1039# test for libsodium 1039# test for libsodium >=1.017 (introduction of
1040# crypto_scalarmult_ed25519_base_noclamp API)
1040AC_CHECK_HEADER([sodium.h], 1041AC_CHECK_HEADER([sodium.h],
1041 [AC_CHECK_LIB([sodium], [crypto_pwhash_argon2id], 1042 [AC_CHECK_LIB([sodium], [crypto_scalarmult_ed25519_base_noclamp],
1042 [libsodium=1])]) 1043 [libsodium=1])])
1043 1044
1044AS_IF([test x$libsodium = x0], 1045AS_IF([test x$libsodium = x0],