From: Kern Sibbald Date: Thu, 28 Apr 2005 19:16:22 +0000 (+0000) Subject: - Make default no tls support. You must add X-Git-Tag: Release-1.38.0~532 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=07678a69a94da51cb2c39705b7e2a425ba178691;p=bacula%2Fbacula - Make default no tls support. You must add --with-openssl to get tls support. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1966 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 89858a2cec..8e4a4ac3c7 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -646,7 +646,7 @@ AC_ARG_WITH(openssl, AC_HELP_STRING([--with-openssl@<:@=DIR@:>@], [Include OpenSSL support. DIR is the OpenSSL base]), [with_openssl_directory=${withval}]) -if test "x$with_openssl_directory" != "xno"; then +if test "x$with_openssl_directory" != "x"; then OPENSSL_LIBS="-lssl -lcrypto" OPENSSL_INC="" diff --git a/bacula/configure b/bacula/configure index 88b90e7d11..4a0b4d2c5c 100755 --- a/bacula/configure +++ b/bacula/configure @@ -8013,7 +8013,7 @@ if test "${with_openssl+set}" = set; then with_openssl_directory=${withval} fi; -if test "x$with_openssl_directory" != "xno"; then +if test "x$with_openssl_directory" != "x"; then OPENSSL_LIBS="-lssl -lcrypto" OPENSSL_INC=""