summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-26 22:23:15 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-26 22:23:15 +0000
commit72eedf0b240c71b9dbd27d1f95b109b48e3200a2 (patch)
treef01295128962cae9fa51e292b22afe066bb7c406 /wscript
parentad0ddd25c94730bed174756a21c83a348c45687e (diff)
A whole load of UTF-8/-16 confusion fixes for Windows.
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/wscript b/wscript
index 9d2450d34..138f947e4 100644
--- a/wscript
+++ b/wscript
@@ -186,6 +186,14 @@ def configure(conf):
uselib_store='BOOST_DATETIME')
conf.check_cxx(fragment="""
+ #include <boost/locale.hpp>\n
+ int main() { std::locale::global (boost::locale::generator().generate ("")); }\n
+ """, msg='Checking for boost locale library',
+ libpath='/usr/local/lib',
+ lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
+ uselib_store='BOOST_LOCALE')
+
+ conf.check_cxx(fragment="""
#include <boost/signals2.hpp>\n
int main() { boost::signals2::signal<void (int)> x; }\n
""",