diff options
author | Martin Willi <martin@strongswan.org> | 2008-06-06 08:04:42 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-06-06 08:04:42 +0000 |
commit | e581a31d6ade114e6cd7349166879450e52a19bd (patch) | |
tree | 3107371c6408376b2018d40db4687a197713a198 /configure.in | |
parent | 1e5522ffd7f69149a209fbd17c2bc88e3ec24874 (diff) | |
download | strongswan-e581a31d6ade114e6cd7349166879450e52a19bd.tar.bz2 strongswan-e581a31d6ade114e6cd7349166879450e52a19bd.tar.xz |
link against openssl crypto library only
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 594fa6123..939e6c486 100644 --- a/configure.in +++ b/configure.in @@ -667,7 +667,7 @@ if test x$sqlite = xtrue; then fi if test x$openssl = xtrue; then - AC_HAVE_LIBRARY([ssl],[LIBS="$LIBS"],[AC_MSG_ERROR([OpenSSL library ssl not found])]) + AC_HAVE_LIBRARY([crypto],[LIBS="$LIBS"],[AC_MSG_ERROR([OpenSSL crypto library not found])]) AC_CHECK_HEADER([openssl/evp.h],,[AC_MSG_ERROR([OpenSSL header openssl/evp.h not found!])]) fi |