From af60ed25346241295c7b0ee39ce33fa0573438c7 Mon Sep 17 00:00:00 2001
From: tho <tho@wiback.org>
Date: Tue, 19 Feb 2008 10:08:48 +0000
Subject: [PATCH] use boost_filesystem lib only for testing

---
 SConstruct                  | 2 +-
 senfscons/BoostUnitTests.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/SConstruct b/SConstruct
index 51008c151..0e71c6dea 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 3733455de..18442e3d4 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:
-- 
GitLab