masqmail

diff configure.ac @ 363:02bc0331e390

Removed support for openssl linking It had been rarely used and could have caused legal problems. For explanations, see this mail message: Date: Sun, 04 Sep 2011 17:35:23 +0200 From: markus schnalke <meillo@marmaro.de> To: masqmail@marmaro.de Subject: [masqmail] RFC: Removal of configure options Message-ID: <1R0EjD-4aX-00@serveme.home.schnalke.org>
author markus schnalke <meillo@marmaro.de>
date Wed, 14 Sep 2011 12:07:34 +0200
parents 4916f9df5051
children 72653295b75d
line diff
     1.1 --- a/configure.ac	Wed Sep 14 11:50:45 2011 +0200
     1.2 +++ b/configure.ac	Wed Sep 14 12:07:34 2011 +0200
     1.3 @@ -136,25 +136,8 @@
     1.4  fi
     1.5  AC_SUBST(BASE64_LIBS)
     1.6  
     1.7 -dnl libcrypto
     1.8 -AC_ARG_WITH(libcrypto,
     1.9 -	[  --with-libcrypto        use libcrypto (usually not needed)],
    1.10 -	)
    1.11 -if test "x$with_libcrypto" != 'xyes'; then
    1.12 -	with_libcrypto='no'
    1.13 -fi
    1.14 -
    1.15  if test "x$need_md5" = 'xyes'; then
    1.16 -dnl check whether we have md5 in libcrypto if md5 needed and we shall link with libcrypto
    1.17 -	if test "x$with_libcrypto" = "xyes"; then
    1.18 -		AC_CHECK_LIB(crypto, MD5, has_crypto='yes', AC_MSG_ERROR('no libcrypto'))
    1.19 -		if test "x$has_crypto" = 'xyes'; then
    1.20 -			AC_DEFINE(USE_LIB_CRYPTO, 1, [If libcrypto is available])
    1.21 -			MD5_LIBS='-lcrypto'
    1.22 -		fi
    1.23 -	else
    1.24 -		MD5_LIBS='md5/libmd5.a'
    1.25 -	fi
    1.26 +	MD5_LIBS='md5/libmd5.a'
    1.27  fi
    1.28  AC_SUBST(MD5_LIBS)
    1.29