diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-06-23 21:47:54 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-06-23 21:47:54 +0800 |
commit | 1490c0c3a6eddfa0bace7729bad87f34c10399c6 (patch) | |
tree | e498620bd58fec612a2bfe20edb7f9b7883c3f5c | |
parent | 3f5c106a880a02b21739f2022746e6aa7672474c (diff) |
check for poly1305_init in other libtomcrypt configure test
-rw-r--r-- | configure.ac | 2 |
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) ] ) |