summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-11-27 21:32:45 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-11-27 21:32:45 +0800
commit593a969e280aa8ec2b343ba23d6065ac70591a8a (patch)
tree8cbe07af908a1e6df33ec88ea1f3fd1d6b0d98fa
parent47bd93bc8e9a954e5a196b5f2be7ffa66c0f4510 (diff)
parentd9b06fd27dac0dd0ef48f3c93d212b9e56f2840d (diff)
downloaddropbear-593a969e280aa8ec2b343ba23d6065ac70591a8a.tar.gz
merge
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index aa932fc..e63d164 100644
--- a/configure.ac
+++ b/configure.ac
@@ -371,16 +371,16 @@ AC_ARG_ENABLE(bundled-libtom,
AC_MSG_NOTICE(Forcing bundled libtom*)
else
BUNDLED_LIBTOM=0
- AC_CHECK_LIB(tomcrypt, register_cipher, ,
- [AC_MSG_ERROR([Missing system libtomcrypt and --disable-bundled-libtom was specified])] )
AC_CHECK_LIB(tommath, mp_exptmod, ,
[AC_MSG_ERROR([Missing system libtomcrypt and --disable-bundled-libtom was specified])] )
+ AC_CHECK_LIB(tomcrypt, register_cipher, ,
+ [AC_MSG_ERROR([Missing system libtomcrypt and --disable-bundled-libtom was specified])] )
fi
],
[
BUNDLED_LIBTOM=0
- AC_CHECK_LIB(tomcrypt, register_cipher, , BUNDLED_LIBTOM=1)
AC_CHECK_LIB(tommath, mp_exptmod, , BUNDLED_LIBTOM=1)
+ AC_CHECK_LIB(tomcrypt, register_cipher, , BUNDLED_LIBTOM=1)
]
)