From: Carl Hetherington Date: Mon, 16 Jan 2017 14:18:52 +0000 (+0000) Subject: Missing uselib. X-Git-Tag: v0.15.5~4^2 X-Git-Url: https://git.carlh.net/gitweb/?p=libcxml.git;a=commitdiff_plain;h=dd029ff0537fcf7ee3e5d853301716a1c122d96d Missing uselib. --- diff --git a/test/wscript b/test/wscript index ecf4d47..940d12d 100644 --- a/test/wscript +++ b/test/wscript @@ -24,7 +24,7 @@ def configure(conf): def build(bld): obj = bld(features='cxx cxxprogram') obj.name = 'tests' - obj.uselib = 'BOOST_TEST BOOST_FILESYSTEM LIBXML++' + obj.uselib = 'BOOST_TEST BOOST_FILESYSTEM LIBXML++ LOCKED_SSTREAM' obj.use = 'libcxml' obj.source = 'tests.cc' obj.target = 'tests'