More explicit openssl configure warning
authorRyan Dahl <ry@tinyclouds.org>
Mon, 20 Sep 2010 19:52:07 +0000 (12:52 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Mon, 20 Sep 2010 19:52:07 +0000 (12:52 -0700)
wscript

diff --git a/wscript b/wscript
index 5aecc0f20cdc882776e38e952cf8be6620d7aa15..b39a8583f819b9b4dbacf08849726323f1cb169e 100644 (file)
--- a/wscript
+++ b/wscript
@@ -188,7 +188,9 @@ def configure(conf):
         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.")
+        conf.fatal("Could not autodetect OpenSSL support. " +
+                   "Make sure OpenSSL development packages are installed. " +
+                   "Use configure --without-ssl to disable this message.")
   else:
     Options.options.use_openssl = conf.env["USE_OPENSSL"] = False