From: serassio <> Date: Sun, 24 Dec 2006 21:12:24 +0000 (+0000) Subject: Windows port: Fixed build error on MinGW using SSL support X-Git-Tag: SQUID_3_0_PRE6~169 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ee86c79b2c578e2e19829284fdfc14fbd710c33f;p=thirdparty%2Fsquid.git Windows port: Fixed build error on MinGW using SSL support --- diff --git a/configure.in b/configure.in index bef9a48f39..e84e4f4d41 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Configuration input file for Squid dnl -dnl $Id: configure.in,v 1.445 2006/12/21 20:12:26 serassio Exp $ +dnl $Id: configure.in,v 1.446 2006/12/24 14:12:24 serassio Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AM_CONFIG_HEADER(include/autoconf.h) AC_CONFIG_AUX_DIR(cfgaux) AC_CONFIG_SRCDIR([src/main.cc]) AM_INIT_AUTOMAKE([tar-ustar]) -AC_REVISION($Revision: 1.445 $)dnl +AC_REVISION($Revision: 1.446 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -933,7 +933,7 @@ AC_ARG_ENABLE(ssl, case "$host_os" in mingw|mingw32) dnl Native Windows port of OpenSSL needs -lgdi32 - SSLLIB='-lssl -lcrypto -lgdi32' + SSLLIB='-lssleay32 -leay32 -lgdi32' ;; *) SSLLIB='-lssl -lcrypto'