diff options
author | Vlad Voicu <vladv@rosedu.org> | 2012-03-06 14:37:35 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-03-09 15:04:10 (GMT) |
commit | 7c868599331a7b4156c3572ba4f3dc75af57ce97 (patch) | |
tree | 37a2ce59535bb19dc5136f1f09da01e89290a44b /BuildTools | |
parent | 91f344444c54f11de132cf22a7ba323727104989 (diff) | |
download | swift-contrib-7c868599331a7b4156c3572ba4f3dc75af57ce97.zip swift-contrib-7c868599331a7b4156c3572ba4f3dc75af57ce97.tar.bz2 |
Moved the settings from main window to chat window, also added lots of small improvments
Diffstat (limited to 'BuildTools')
-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 3f15695..ce3b020 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -421,9 +421,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 |