Config script: Disallow turning off SSL

There is no good reason SSL should ever be disabled.
This commit is contained in:
Sam Dodrill 2014-04-16 11:12:29 -07:00
parent f31302d01d
commit 6ccb7036db
1 changed files with 0 additions and 12 deletions

12
Config
View File

@ -55,13 +55,6 @@ while nicklen > 51:
print("")
print("Would you like to use SSL (Secure Socket Layer) encryption for client and")
print("server links? (Highly reccomended)")
usessl = promptYesNo("SSL? (Y/N)")
print("")
print("Would you like to disable small network support? This increases the size")
print("of a few buffers in the code and can increase performance on large networks.")
@ -70,11 +63,6 @@ smallnet = promptYesNo("Small network? (Y/N)")
configflags.append("--prefix=%s" % installloc)
configflags.append("--with-nicklen=%s" % nicklen)
if usessl:
configflags.append("--enable-openssl")
else:
configflags.append("--disable-openssl")
if not smallnet:
configflags.append("--enable-small-net")
else: