From 8df2a798979b94d081d4c0cd173ac2e413758b84 Mon Sep 17 00:00:00 2001 From: frostycoolslug Date: Fri, 3 Feb 2006 20:01:41 +0000 Subject: Fixed Brain's bug, showing 'Using SSL Module' regardless of if you say yes or no. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3063 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index e41c39d6c..584944d2e 100755 --- a/configure +++ b/configure @@ -323,10 +323,14 @@ if (($config{HAS_GNUTLS} eq "y") && ($config{HAS_OPENSSL} eq "y")) { if ($config{HAS_GNUTLS} eq "y") { yesno(USE_GNUTLS, "Would you like to enable SSL Support?"); - print "\nUsing GnuTLS SSL module.\n"; + if ($config{USE_GNUTLS} eq "y") { + print "\nUsing GnuTLS SSL module.\n"; + } } elsif ($config{HAS_OPENSSL} eq "y") { yesno(USE_OPENSSL, "Would you like to enable SSL Support?"); - print "\nUsing OpenSSL SSL module.\nYou will get better performance if you move to GnuTLS in the future.\n"; + if ($config{USE_OPENSSL} eq "y") { + print "\nUsing OpenSSL SSL module.\nYou will get better performance if you move to GnuTLS in the future.\n"; + } } print "\nThe following questions will ask you for various figures relating\n"; -- cgit v1.2.3