mirror of https://github.com/nodejs/node.git
Fatal error out if OpenSSL was not explicitly disabled, we just couldn't autodetect it.
parent
27af64ef46
commit
2d348bb985
2
wscript
2
wscript
|
@ -187,6 +187,8 @@ def configure(conf):
|
|||
if libcrypto and libssl:
|
||||
conf.env["USE_OPENSSL"] = Options.options.use_openssl = True
|
||||
conf.env.append_value("CXXFLAGS", "-DHAVE_OPENSSL=1")
|
||||
else:
|
||||
conf.fatal("Could not autodetect OpenSSL support. Make sure OpenSSL development packages are installed.")
|
||||
else:
|
||||
Options.options.use_openssl = conf.env["USE_OPENSSL"] = False
|
||||
|
||||
|
|
Loading…
Reference in New Issue