summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2019-07-14 12:17:18 +0300
committerDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2019-07-14 12:17:18 +0300
commit5df63c6ffba10ecdb3660531ad67424eb14d8552 (patch)
tree3cf4efe8cd82a72265d33ba59c0be68b840c8542 /configure.ac
parentda8e1b83208f8736acf29a138be9ec4495418b1f (diff)
downloadgnutls-5df63c6ffba10ecdb3660531ad67424eb14d8552.tar.gz
nettle/backport: fix xts-backport guarding check
Check for nettle_xts_encrypt_message() function rather than just xts_encrypt_message(). All functions in nettle are renamed to contain `nettle_` prefix. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9728f316ed..c388704bbb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -573,7 +573,7 @@ LIBS=$save_LIBS
# Check if nettle has XTS support
save_LIBS=$LIBS
LIBS="$LIBS $NETTLE_LIBS"
-AC_CHECK_FUNCS(xts_encrypt_message)
+AC_CHECK_FUNCS(nettle_xts_encrypt_message)
LIBS=$save_LIBS
# Check for Gosthash94 with CryptoPro S-box support