diff options
author | Patrik Nyblom <[email protected]> | 2011-05-13 12:11:20 +0200 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2011-05-13 12:11:20 +0200 |
commit | 33eba903b4bd0b18e8f8d9afacd3118c00557b39 (patch) | |
tree | c1e7eacd0a083ecfb9d4c581bce09bc6e779b6af | |
parent | 168535441f6be241adaba34b4971e7a580ad17d8 (diff) | |
download | otp-33eba903b4bd0b18e8f8d9afacd3118c00557b39.tar.gz otp-33eba903b4bd0b18e8f8d9afacd3118c00557b39.tar.bz2 otp-33eba903b4bd0b18e8f8d9afacd3118c00557b39.zip |
Mend --with-ssl= in erts/configure
-rw-r--r-- | erts/configure.in | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/erts/configure.in b/erts/configure.in index 3cd6f0b6bf..13bc86b14e 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -3882,8 +3882,32 @@ dnl so it is - be adoptable AC_MSG_ERROR(Invalid path to option --with-ssl=PATH) fi SSL_ROOT="$with_ssl" + SSL_CRYPTO_LIBNAME=crypto + SSL_SSL_LIBNAME=ssl if test "x$MIXED_CYGWIN" = "xyes" && test -d "$with_ssl/lib/VC"; then - SSL_LIBDIR="$with_ssl/lib/VC" + if test -f "$with_ssl/lib/VC/libeay32.lib"; then + SSL_LIBDIR="$with_ssl/lib/VC" + SSL_CRYPTO_LIBNAME=libeay32 + SSL_SSL_LIBNAME=ssleay32 + elif test -f "$with_ssl/lib/VC/openssl.lib"; then + SSL_LIBDIR="$with_ssl/lib/VC" + elif test -f $with_ssl/lib/VC/libeay32MD.lib; then + SSL_CRYPTO_LIBNAME=libeay32MD + SSL_SSL_LIBNAME=ssleay32MD + if test "x$enable_dynamic_ssl" = "xno" && \ + test -f $with_ssl/lib/VC/static/libeay32MD.lib; then + SSL_LIBDIR="$with_ssl/lib/VC/static" + else + SSL_LIBDIR="$with_ssl/lib/VC" + fi + elif test -f "$with_ssl/lib/libeay32.lib"; then + SSL_LIBDIR="$with_ssl/lib" + SSL_CRYPTO_LIBNAME=libeay32 + SSL_CRYPTO_LIBNAME=ssleay32 + else + # This probably wont work, but that's what the user said, so... + SSL_LIBDIR="$with_ssl/lib" + fi elif test "x$ac_cv_sizeof_void_p" = "x8"; then if test -f "$with_ssl/lib64/libcrypto.a"; then SSL_LIBDIR="$with_ssl/lib64" |