]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix bug #1337 Console tries to build with SSL when libssl-dev not installed
authorKern Sibbald <kern@sibbald.com>
Wed, 22 Jul 2009 15:02:15 +0000 (15:02 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 22 Jul 2009 15:02:15 +0000 (15:02 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@9085 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/autoconf/configure.in
bacula/configure
bacula/technotes

index 886f4088b8a2ca9514c06bb501dcdd6eac09ad9e..67519956f41db7682fb573e2921b1ea3d7dc0bc3 100644 (file)
@@ -1164,6 +1164,11 @@ else
    OPENSSL_INC=""
 fi
 
+if test "$support_tls" = "no"; then
+   OPENSSL_LIBS=""
+   OPENSSL_INC=""
+fi  
+
 AC_MSG_RESULT([$support_tls])
 AC_SUBST(OPENSSL_LIBS)
 AC_SUBST(OPENSSL_INC)
index 4caae70a98bf7936c4d62497134544c84990d3fb..a165700550a98c96c9b415f2840939ccda1dd9ed 100755 (executable)
@@ -27258,6 +27258,11 @@ else
    OPENSSL_INC=""
 fi
 
+if test "$support_tls" = "no"; then
+   OPENSSL_LIBS=""
+   OPENSSL_INC=""
+fi
+
 { echo "$as_me:$LINENO: result: $support_tls" >&5
 echo "${ECHO_T}$support_tls" >&6; }
 
index 8a261b8bd5380173b1870448668b7940c118b59d..a30511997a0ceed655acbb2c139543cbf7cb0361 100644 (file)
@@ -2,6 +2,8 @@
           
 General:
 
+22Jul09
+kes  Fix bug #1337 Console tries to build with SSL when libssl-dev not installed. 
 21Jul09
 kes  Add setJobStatus method to JCR class.
 kes  Modify setJobStatus so cancel has same priority as fatal errors