diff --git a/ChangeLog b/ChangeLog index 29558062..1d191ed6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,12 +10,17 @@ Pieter Palmers Tom Szilagyi Andrzej Szombierski Kjetil S.Matheussen -Pieter Palmers +Pieter Palmers +Tim Blechmann --------------------------- Jackdmp changes log --------------------------- +2007-12-08 Stephane Letz + + * Tim Blechmann scons patch. + 2007-12-07 Stephane Letz * Pieter Palmers second new build system: scons and Makefile based build. diff --git a/SConstruct b/SConstruct index db4d37ac..84e7897b 100644 --- a/SConstruct +++ b/SConstruct @@ -164,7 +164,7 @@ install the needed packages (remember to also install the *-devel packages) # Optional checks follow: # if build_for_linux and env['ENABLE_ALSA']: - env['ALSA_FLAGS'] = conf.GetPKGFlags( 'ALSA', '1.0.0' ) + env['ALSA_FLAGS'] = conf.GetPKGFlags( 'alsa', '1.0.0' ) if env['ALSA_FLAGS'] == 0: print " Disabling 'alsa' backend since no useful ALSA installation found." env['ENABLE_ALSA'] = False @@ -187,10 +187,8 @@ if env['DEBUG']: print "Doing a DEBUG build" # -Werror could be added to, which would force the devs to really remove all the warnings :-) env.AppendUnique( CCFLAGS=["-DDEBUG","-Wall","-g"] ) - env.AppendUnique( CFLAGS=["-DDEBUG","-Wall","-g"] ) else: env.AppendUnique( CCFLAGS=["-O3","-DNDEBUG"] ) - env.AppendUnique( CFLAGS=["-O3","-DNDEBUG"] ) env.AppendUnique( CCFLAGS=["-fPIC", "-DSOCKET_RPC_FIFO_SEMA", "-D__SMP__"] ) env.AppendUnique( CFLAGS=["-fPIC", "-DUSE_POSIX_SHM"] )