diff options
author | Vlad Voicu <vladv@rosedu.org> | 2012-03-06 14:37:35 (GMT) |
---|---|---|
committer | vlad <vlad@tyrion.(none)> | 2012-10-13 13:55:45 (GMT) |
commit | 2267554fcf1a73dc761d3a15b152192d3f420d7f (patch) | |
tree | 2d61175723dfb460c2a169a1e0e3430a9de4fdde /BuildTools/SCons/SConstruct | |
parent | 5427ffbb3ea13cd4ee078dd640db8cd43bab303d (diff) | |
download | swift-contrib-2267554fcf1a73dc761d3a15b152192d3f420d7f.zip swift-contrib-2267554fcf1a73dc761d3a15b152192d3f420d7f.tar.bz2 |
Moved the settings from main window to chat window, also added lots of small improvments
Diffstat (limited to 'BuildTools/SCons/SConstruct')
-rw-r--r-- | BuildTools/SCons/SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index 5b88855..669c599 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -448,9 +448,9 @@ openssl_conf.Finish() #Hunspell env["HAVE_HUNSPELL"] = 0; conf = Configure(conf_env.Clone()) -if conf.CheckLib("hunspell-1.3") : +if conf.CheckCXXHeader("hunspell/hunspell.hxx") and conf.CheckLib("hunspell-1.3") : env["HAVE_HUNSPELL"] = 1 - env["HUNSPELL_FLAGS"] = {"LIBS": ["libhunspell-1.3"]} + env["HUNSPELL_FLAGS"] = {"LIBS": ["hunspell-1.3"]} # Bonjour |