diff options
author | Yang Tse <yangsita@gmail.com> | 2008-09-20 12:44:44 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-09-20 12:44:44 +0000 |
commit | 6abbbaad1b0338b064b133ac0aa5ad9c75ad52ad (patch) | |
tree | 819289a3b6d8260e44211a374b53699907b6c39c /configure.ac | |
parent | fe5f448015b9b1c632d8725a4dc0fe6d1ab04736 (diff) | |
download | curl-6abbbaad1b0338b064b133ac0aa5ad9c75ad52ad.tar.gz |
fix regression in configure script which affected OpenSSL builds on MSYS
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2a1bce95d..ddde3b7a1 100644 --- a/configure.ac +++ b/configure.ac @@ -1275,6 +1275,24 @@ if test X"$OPT_SSL" != Xno; then fi fi + dnl This is for Msys/Mingw + case $host in + *-*-msys* | *-*-mingw*) + AC_MSG_CHECKING([for gdi32]) + my_ac_save_LIBS=$LIBS + LIBS="-lgdi32 $LIBS" + AC_TRY_LINK([#include <windef.h> + #include <wingdi.h>], + [GdiFlush();], + [ dnl worked! + AC_MSG_RESULT([yes])], + [ dnl failed, restore LIBS + LIBS=$my_ac_save_LIBS + AC_MSG_RESULT(no)] + ) + ;; + esac + AC_CHECK_LIB(crypto, CRYPTO_lock,[ HAVECRYPTO="yes" LIBS="-lcrypto $LIBS" |