diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-11-03 21:21:13 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-11-03 21:21:13 (GMT) |
commit | 0b56244a3efbd20fa28c63bffad32165283a42df (patch) | |
tree | b7114f5ac1ef7ad1479a9ca4aaf23c6c27caa749 | |
parent | 7a26e76bd05283fcc329469d25a2640107966603 (diff) | |
download | swift-contrib-0b56244a3efbd20fa28c63bffad32165283a42df.zip swift-contrib-0b56244a3efbd20fa28c63bffad32165283a42df.tar.bz2 |
Exclude SChannel from Swiften.h
-rw-r--r-- | Swiften/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/SConscript b/Swiften/SConscript index 379576d..ee21ba8 100644 --- a/Swiften/SConscript +++ b/Swiften/SConscript @@ -400,19 +400,19 @@ if env["SCONS_STAGE"] == "build" : # Private modules if root.endswith("Config") or root.endswith("Compress") : continue # Library-specfifc private modules if root.endswith("OpenSSL") or root.endswith("Cocoa") or root.endswith("Qt") or root.endswith("IDN") or root.endswith("Avahi") or root.endswith("Bonjour") : continue # Library-specific files - if file.startswith("CAres") or file.startswith("LibXML") or file.startswith("Expat") or file.startswith("GConf") or file.startswith("MacOSX") or file.startswith("Windows") or file.startswith("SQLite") or file.startswith("NATPMP") or file.startswith("MiniUPnP") : + if file.startswith("Schannel") or file.startswith("CAres") or file.startswith("LibXML") or file.startswith("Expat") or file.startswith("GConf") or file.startswith("MacOSX") or file.startswith("Windows") or file.startswith("SQLite") or file.startswith("NATPMP") or file.startswith("MiniUPnP") : continue # Specific headers we don't want to globally include if file == "Swiften.h" or file == "foreach.h" or file == "Log.h" or file == "format.h" or file == "CompressionLayer.h": continue swiften_header += "#include <" + include + ">\n" swiften_includes.append(include) swiften_env.WriteVal("Swiften.h", swiften_env.Value(swiften_header)) swiften_includes.append("Swiften/Swiften.h") |