From 2d348bb985db352176125d1efe60d05211adbe77 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Sun, 19 Sep 2010 15:20:35 -0700 Subject: [PATCH] Fatal error out if OpenSSL was not explicitly disabled, we just couldn't autodetect it. --- wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wscript b/wscript index bcbe69127e..5aecc0f20c 100644 --- a/wscript +++ b/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