dnl
dnl Check if LoadLibrary exists on Windows
dnl
-if test "${WIN32}" == "yes"; then
+if test "${WIN32}" = "yes"; then
if test "$PLUGINS" = "yes"; then
AC_TRY_LINK([
#include <windows.h>
],
[
AC_DEFINE(USE_CRYPTO, 1, [Use OpenSSL crypto library])
- OPENVPN_ADD_LIBS(-lcrypto)
+ if test "${WIN32}" = "yes"; then
+ OPENVPN_ADD_LIBS(-leay32)
+ else
+ OPENVPN_ADD_LIBS(-lcrypto)
+ fi
AC_CHECK_FUNCS(EVP_CIPHER_CTX_set_key_length)
dnl check for OpenSSL crypto acceleration capability
[AC_MSG_ERROR([OpenSSL SSL headers not found.])]
)
AC_DEFINE(USE_SSL, 1, [Use OpenSSL SSL library])
- OPENVPN_ADD_LIBS(-lssl)
+ if test "${WIN32}" = "yes"; then
+ OPENVPN_ADD_LIBS(-lssl32)
+ else
+ OPENVPN_ADD_LIBS(-lssl)
+ fi
fi
fi
-F=pkcs11-helper-1.05
+F=pkcs11-helper-1.06-beta1
OPENSSL_DIR=`pwd`/openssl-0.9.8h
PKCS11_HELPER_DIR=`pwd`/pkcs11-helper
--disable-crypto-engine-nss \
PKG_CONFIG=true \
OPENSSL_CFLAGS="-I${OPENSSL_DIR}/include" \
- OPENSSL_LIBS="-L${OPENSSL_DIR}/out -lcrypto"
+ OPENSSL_LIBS="-L${OPENSSL_DIR}/out -leay32"
make
make install DESTDIR="${PKCS11_HELPER_DIR}"