diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-11-12 17:53:16 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-11-12 17:53:16 (GMT) |
commit | 23767436d2399ac36241b618bc42d3504ad20f1a (patch) | |
tree | a073a527011715ecb02df828946e1ecb58a0fd23 | |
parent | 4cca59f3c272d19b02e3a4a8ff4a1007fdfd65cf (diff) | |
download | swift-23767436d2399ac36241b618bc42d3504ad20f1a.zip swift-23767436d2399ac36241b618bc42d3504ad20f1a.tar.bz2 |
Don't include OpenSSL headers in Swiften.h.
-rw-r--r-- | Swiften/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Swiften/SConscript b/Swiften/SConscript index 1f762cb..4c08692 100644 --- a/Swiften/SConscript +++ b/Swiften/SConscript @@ -278,6 +278,8 @@ if env["SCONS_STAGE"] == "build" : for root, dirs, files in os.walk(env.Dir(public_dir).abspath) : if root.endswith("UnitTest") : continue + if root.endswith("OpenSSL") : + continue for file in files : if not file.endswith(".h") : continue |