scons: added BOOST_VARIANT workaround for karmic
tho [Tue, 1 Dec 2009 08:44:42 +0000 (08:44 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1537 270642c3-0616-0410-b53a-bc976706d245

SConstruct
site_scons/senfutil.py

index 3b0099c..045c091 100644 (file)
@@ -133,6 +133,11 @@ env.SetDefault(
     FLAVOR            = '',
 )
 
+# ugly hack for ubuntu karmic 
+# ToDo: auto-configure alike support
+if os.path.exists('/usr/lib/libboost_regex-mt.so'):
+    env.Append( BOOST_VARIANT = '-mt' )
+
 # Set variables from command line
 senfutil.parseArguments(
     env,
index 2c88b64..275ea1d 100644 (file)
@@ -169,6 +169,11 @@ def DefaultOptions(env):
         LINKFLAGS_normal = [ '-Wl,-S' ],
         LINKFLAGS_debug  = [ '-g' ],
     )
+    # ugly hack for ubuntu karmic 
+    # ToDo: auto-configure alike support
+    if os.path.exists('/usr/lib/libboost_regex-mt.so'):
+        env.Append( BOOST_VARIANT = '-mt' )
+
 
 def Glob(env, exclude=[], subdirs=[]):
     testSources = env.Glob("*.test.cc", strings=True)