summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-06-23 21:47:54 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-06-23 21:47:54 +0800
commit30eedced1d8da15c95fd7b155ff538d267ccbaed (patch)
treeef06f8d9c3a70d97b1d8c7cf47764f192db89fc4
parent5f1df11381635af51d978a89b2700452aa7dccdd (diff)
downloaddropbear-30eedced1d8da15c95fd7b155ff538d267ccbaed.tar.gz
check for poly1305_init in other libtomcrypt configure test
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 848c261..473cea5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -549,7 +549,7 @@ AC_ARG_ENABLE(bundled-libtom,
[
BUNDLED_LIBTOM=0
AC_CHECK_LIB(tommath, mp_to_ubin, LIBTOM_LIBS="-ltommath $LIBTOM_LIBS", BUNDLED_LIBTOM=1)
- AC_CHECK_LIB(tomcrypt, register_cipher, LIBTOM_LIBS="-ltomcrypt $LIBTOM_LIBS", BUNDLED_LIBTOM=1)
+ AC_CHECK_LIB(tomcrypt, poly1305_init, LIBTOM_LIBS="-ltomcrypt $LIBTOM_LIBS", BUNDLED_LIBTOM=1)
]
)