Config script: Disallow turning off SSL
There is no good reason SSL should ever be disabled.
This commit is contained in:
parent
f31302d01d
commit
6ccb7036db
12
Config
12
Config
|
@ -55,13 +55,6 @@ while nicklen > 51:
|
||||||
|
|
||||||
print("")
|
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("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.")
|
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("--prefix=%s" % installloc)
|
||||||
configflags.append("--with-nicklen=%s" % nicklen)
|
configflags.append("--with-nicklen=%s" % nicklen)
|
||||||
|
|
||||||
if usessl:
|
|
||||||
configflags.append("--enable-openssl")
|
|
||||||
else:
|
|
||||||
configflags.append("--disable-openssl")
|
|
||||||
|
|
||||||
if not smallnet:
|
if not smallnet:
|
||||||
configflags.append("--enable-small-net")
|
configflags.append("--enable-small-net")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue