summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-27 14:54:42 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-27 14:54:42 +0000
commitf9922f08ac55868d75c57e42556ff9ddfd8c376b (patch)
tree889ea3c03e059b2e6e888fbc8312537eb8e5b32e /wscript
parent52c7a765b76efbba439411a78ca31b72ef17fe6e (diff)
parent32777299bee7f452971b4ae47c780796e27afc8e (diff)
Merge 1.0-encoding.
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/wscript b/wscript
index 54a1a3eb0..a1ed6ec23 100644
--- a/wscript
+++ b/wscript
@@ -197,6 +197,14 @@ def configure(conf):
uselib_store='BOOST_LOCALE')
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
""",