diff --git a/SConstruct b/SConstruct index 51008c1512aa0fabed77a275bee01a841c7b90d1..0e71c6deaa03a462561a96568d62d85c03dda1e5 100644 --- a/SConstruct +++ b/SConstruct @@ -129,7 +129,7 @@ def configFilesOpts(target, source, env, for_signature): env.Append( CPPPATH = [ '#/include' ], - LIBS = [ 'iberty', '$BOOSTREGEXLIB', '$BOOSTFSLIB' ], + LIBS = [ 'iberty', '$BOOSTREGEXLIB' ], DOXY_XREF_TYPES = [ 'bug', 'fixme', 'todo', 'idea' ], DOXY_HTML_XSL = '#/doclib/html-munge.xsl', ENV = { 'TODAY' : str(datetime.date.today()), diff --git a/senfscons/BoostUnitTests.py b/senfscons/BoostUnitTests.py index 3733455dec7c6da25375c66ee11031c39ff56627..18442e3d4e9bbc4b11fddf0181e67c93723799fc 100644 --- a/senfscons/BoostUnitTests.py +++ b/senfscons/BoostUnitTests.py @@ -34,7 +34,7 @@ def BoostUnitTests(env, target, objects, test_sources=None, LIBS = [], OBJECTS = else: test_sources = [] testEnv = env.Copy(**kw) - testEnv.Prepend(_LIBFLAGS = ' -Wl,-Bstatic -l$BOOSTTESTLIB -Wl,-Bdynamic ') + testEnv.Prepend(_LIBFLAGS = ' -Wl,-Bstatic -l$BOOSTTESTLIB -l$BOOSTFSLIB -Wl,-Bdynamic ') testEnv.Prepend(LIBS = LIBS) all_objects = [] if not objects: