summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorfrostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-03 20:01:41 +0000
committerfrostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-03 20:01:41 +0000
commit8df2a798979b94d081d4c0cd173ac2e413758b84 (patch)
treedbc905fb6658dcf92c58ee5476717d00dc0fce5e /configure
parent0f11d14045c143d481d714dd40e4674497c787cb (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 6 insertions, 2 deletions
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";