summaryrefslogtreecommitdiffhomepage
path: root/configure.ac
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
commit1490c0c3a6eddfa0bace7729bad87f34c10399c6 (patch)
treee498620bd58fec612a2bfe20edb7f9b7883c3f5c /configure.ac
parent3f5c106a880a02b21739f2022746e6aa7672474c (diff)
check for poly1305_init in other libtomcrypt configure test
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 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)
]
)