From 07678a69a94da51cb2c39705b7e2a425ba178691 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 28 Apr 2005 19:16:22 +0000 Subject: [PATCH] - 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 --- bacula/autoconf/configure.in | 2 +- bacula/configure | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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="" -- 2.39.5