projects
/
umurmur.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfbdcab
)
Change order of OpenSSL library checks. libssl needs libcrypto so if statically linki...
author
Martin Johansson
<martin@fatbob.nu>
Thu, 7 Apr 2011 20:54:20 +0000
(22:54 +0200)
committer
Martin Johansson
<martin@fatbob.nu>
Thu, 7 Apr 2011 20:54:20 +0000
(22:54 +0200)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 560025a45ae224027aa51aa9e38972863ce97404..cef0d63f523a3a880d46b2b7f989d9033d788c61 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-49,11
+49,11
@@
AS_IF([test "x$with_openssl" == xno], [
AC_CHECK_HEADERS([polarssl/ssl.h])
AC_CHECK_LIB([polarssl], [ssl_init])
])
-AS_IF([test "x$with_openssl" != xno], [
-
AC_CHECK_HEADERS([openssl/ssl.h])
-
AC_CHECK_LIB([ssl], [SSL_library
_init])
-
AC_CHECK_LIB([crypto], [BN
_init])
-])
+
+AC_CHECK_HEADERS([openssl/ssl.h])
+
AC_CHECK_LIB([crypto], [BN
_init])
+
AC_CHECK_LIB([ssl], [SSL_library
_init])
+
# Checks for header files.
AC_FUNC_ALLOCA