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 3a83e31d2..5540d5aa4 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
@@ -1064,9 +1064,10 @@ AC_CHECK_LIB([kvm],[kvm_open])
1064AC_CHECK_LIB([kstat],[kstat_open]) 1064AC_CHECK_LIB([kstat],[kstat_open])
1065 1065
1066libsodium=0 1066libsodium=0
1067# test for libsodium 1067# test for libsodium >=1.017 (introduction of
1068# crypto_scalarmult_ed25519_base_noclamp API)
1068AC_CHECK_HEADER([sodium.h], 1069AC_CHECK_HEADER([sodium.h],
1069 [AC_CHECK_LIB([sodium], [crypto_pwhash_argon2id], 1070 [AC_CHECK_LIB([sodium], [crypto_scalarmult_ed25519_base_noclamp],
1070 [libsodium=1])]) 1071 [libsodium=1])])
1071 1072
1072AS_IF([test x$libsodium = x0], 1073AS_IF([test x$libsodium = x0],