X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senfscons%2Fsenfutil.py;h=af58a20f6f55cd3611f2991679a6d5a7e7410ad7;hb=8e3d9795b3dc412a9dcc3c807547c314d76c8504;hp=3d2a7424081ef44032d220b03024883ddb108d83;hpb=be2850abbb7e1b46acd20c36adb99816ffc9c189;p=senf.git diff --git a/senfscons/senfutil.py b/senfscons/senfutil.py index 3d2a742..af58a20 100644 --- a/senfscons/senfutil.py +++ b/senfscons/senfutil.py @@ -8,9 +8,11 @@ from SCons.Script import * # c) check for a local SENF, set options accordingly and update that SENF if needed def SetupForSENF(env): - env.Append( LIBS = [ 'senf', 'readline', 'rt', '$BOOSTREGEXLIB', '$BOOSTIOSTREAMSLIB' ], + env.Append( LIBS = [ 'senf', 'readline', 'rt', '$BOOSTREGEXLIB', + '$BOOSTIOSTREAMSLIB', '$BOOSTSIGNALSLIB' ], BOOSTREGEXLIB = 'boost_regex', BOOSTIOSTREAMSLIB = 'boost_iostreams', + BOOSTSIGNALSLIB = 'boost_signals', CXXFLAGS = [ '-Wno-long-long', '${"$CXXFLAGS_"+(final and "final" or "debug")}', '${profile and ("-g","-pg") or None}' ],