diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-09-29 18:14:17 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-09-29 18:14:17 (GMT) |
commit | 23f4306a3dd43ae323d86c35e5c7d1efdbbc8b60 (patch) | |
tree | 4fc8fbe2d8e37b9dd86ec28a23747f7b9bd67920 | |
parent | dfccb5703c4d85ab1a54429016b103101bdc54ae (diff) | |
download | swift-contrib-23f4306a3dd43ae323d86c35e5c7d1efdbbc8b60.zip swift-contrib-23f4306a3dd43ae323d86c35e5c7d1efdbbc8b60.tar.bz2 |
Don't include NATPMP/UPnP headers in Swiften.h
-rw-r--r-- | Swiften/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/SConscript b/Swiften/SConscript index fce110a..6e129a3 100644 --- a/Swiften/SConscript +++ b/Swiften/SConscript @@ -397,19 +397,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") : + 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") : 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") |