From: Ryan Dahl Date: Mon, 20 Sep 2010 19:52:07 +0000 (-0700) Subject: More explicit openssl configure warning X-Git-Tag: v0.3.0~144 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=754fde7325b54f7c2744b98bb2865721660622bb;p=platform%2Fupstream%2Fnodejs.git More explicit openssl configure warning --- diff --git a/wscript b/wscript index 5aecc0f20..b39a8583f 100644 --- 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