diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-04-25 17:34:28 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-04-25 17:34:28 (GMT) |
commit | 863b3d6c73f42e316dd8416cad36b9dc3a30656b (patch) | |
tree | d8b7727637f8e89f8f76215e98a3f029cc262b20 | |
parent | 76b6528058e1cb9fefb0547b672acb83e7b41ff4 (diff) | |
download | swift-contrib-863b3d6c73f42e316dd8416cad36b9dc3a30656b.zip swift-contrib-863b3d6c73f42e316dd8416cad36b9dc3a30656b.tar.bz2 |
Make SCons list Schannel as TLS mechanism instead of 'None'.
-rw-r--r-- | BuildTools/SCons/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index b3d3c8f..e91dd6e 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -523,6 +523,6 @@ print " Projects: " + ' '.join(env["PROJECTS"]) print "" print " XML Parsers: " + ' '.join(parsers) -print " TLS Support: " + ("OpenSSL" if env.get("HAVE_OPENSSL",0) else "Disabled") +print " TLS Support: " + ("OpenSSL" if env.get("HAVE_OPENSSL",0) else ("Schannel" if env.get("HAVE_SCHANNEL", 0) else "Disabled")) print " DNSSD Support: " + ("Bonjour" if env.get("HAVE_BONJOUR") else ("Avahi" if env.get("HAVE_AVAHI") else "Disabled")) print |