Remove boost_system test kludge
authorDavid Robillard <d@drobilla.net>
Mon, 5 Dec 2016 00:15:29 +0000 (19:15 -0500)
committerDavid Robillard <d@drobilla.net>
Mon, 5 Dec 2016 00:15:29 +0000 (19:15 -0500)
libs/evoral/wscript

index 794193aac506f6a4bb90487eaeddf78513ad8d40..9ceab182a5d30570212a53d2fe0819aec390ec91 100644 (file)
@@ -149,15 +149,14 @@ def build(bld):
                 test/testrunner.cpp
         '''
         obj.includes     = ['.', './src']
-        obj.use          = 'libevoral_static libboost_system'
+        obj.use          = 'libevoral_static'
         obj.uselib       = 'CPPUNIT SNDFILE LIBPBD'
         obj.target       = 'run-tests'
         obj.name         = 'libevoral-tests'
         obj.install_path = ''
         obj.defines      = ['PACKAGE="libevoraltest"']
-        obj.linkflags    = ['-lboost_system'] # FIXME: not sure why this is needed
         if bld.env['TEST_COVERAGE']:
-            obj.linkflags     += ['--coverage']
+            obj.linkflags      = ['--coverage']
             obj.cflags         = ['--coverage']
             obj.cxxflags       = ['--coverage']