Skip to content
Snippets Groups Projects
Commit deaa11ab authored by g0dil's avatar g0dil
Browse files

Update SENF to compile using g++ 4.3.2 (Ubuntu 8.10)

parent c42cf37f
No related branches found
No related tags found
No related merge requests found
......@@ -118,10 +118,11 @@ namespace {
BOOST_AUTO_UNIT_TEST(testDaemon)
{
char * args[] = { "run",
"--console-log=testDaemon.log",
"--pid-file=testDaemon.pid" };
BOOST_CHECK_EQUAL( run(sizeof(args)/sizeof(*args),args), 0 );
char const * args[] = { "run",
"--console-log=testDaemon.log",
"--pid-file=testDaemon.pid" };
BOOST_CHECK_EQUAL( run(sizeof(args)/sizeof(*args), const_cast<char **>(args)), 0 );
BOOST_CHECK( ! boost::filesystem::exists("invalid.log") );
BOOST_CHECK( ! boost::filesystem::exists("invalid.pid") );
......
......@@ -33,6 +33,7 @@
#include <boost/preprocessor/seq/fold_right.hpp>
#include <boost/preprocessor/seq/pop_back.hpp>
#include <boost/preprocessor/if.hpp>
#include <boost/preprocessor/facilities/is_empty.hpp>
#include "../preprocessor.hh"
///////////////////////////////ih.p////////////////////////////////////////
......@@ -74,7 +75,15 @@ namespace detail {
}}}
#define SENF_LOG_SEQ_TO_NAME_(s,state,elem) state::elem
#define SENF_LOG_CHECK_NA_
#define SENF_LOG_CAT(a,b) SENF_LOG_CAT_I(a,b)
#define SENF_LOG_CAT_I(a,b) a ## b
#define SENF_LOG_IS_NA(elt) BOOST_PP_IS_EMPTY( SENF_LOG_CAT(SENF_LOG_CHECK_NA, elt) )
#define SENF_LOG_SEQ_TO_NAME_(s,state,elem) \
BOOST_PP_IF( SENF_LOG_IS_NA(elem), senf::log::detail::na, state::elem )
#define SENF_LOG_SEQ_TO_NAME(seq) \
BOOST_PP_SEQ_FOLD_LEFT(SENF_LOG_SEQ_TO_NAME_, , seq)
......@@ -88,7 +97,7 @@ namespace detail {
BOOST_PP_SEQ_POP_BACK(seq) )
#define SENF_LOG_PREDECL_short(seq) \
class SENF_PP_SEQ_BACK(seq);
BOOST_PP_IF( SENF_LOG_IS_NA( SENF_PP_SEQ_BACK(seq) ), ; , class SENF_PP_SEQ_BACK(seq); )
#define SENF_LOG_PREDECL(seq) \
BOOST_PP_CAT(SENF_LOG_PREDECL_, \
......@@ -110,14 +119,12 @@ namespace detail {
#ifdef SENF_LOG_CONF
# define _ senf::log::detail::na
# define SLC_elt(r, data, elt) \
SENF_LOG_CONF_DEFINE elt
BOOST_PP_SEQ_FOR_EACH(SLC_elt, none, SENF_LOG_CONF)
# undef SLC_elt
# undef _
#endif
......
......@@ -33,7 +33,7 @@ def BoostUnitTests(env, target, objects, test_sources=None, LIBS = [], OBJECTS =
test_sources = [ test_sources ]
else:
test_sources = []
testEnv = env.Copy(**kw)
testEnv = env.Clone(**kw)
testEnv.Prepend(_LIBFLAGS = ' -Wl,-Bstatic -l$BOOSTTESTLIB -Wl,-Bdynamic ')
testEnv.Prepend(LIBS = LIBS)
testEnv.Append(LIBS = env['TEST_EXTRA_LIBS'])
......
......@@ -654,7 +654,7 @@ def Binary(env, binary, sources, testSources = None, LIBS = [], OBJECTS = [], no
objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
program = None
if objects:
progEnv = env.Copy()
progEnv = env.Clone()
progEnv.Prepend(LIBS = [ x + '$LIBADDSUFFIX' for x in LIBS ])
program = progEnv.ProgramNoScan(target=binary,source=objects+OBJECTS)
env.Default(program)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment