From 5daaba701456bb0700b996e2f9a6bb5ea3c218a9 Mon Sep 17 00:00:00 2001 From: sletz Date: Sat, 8 Dec 2007 13:33:34 +0000 Subject: [PATCH] Tim Blechmann scons patch. git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1740 0c269be4-1314-0410-8aa9-9f06e86f4224 --- ChangeLog | 7 ++++++- SConstruct | 4 +--- 2 files changed, 7 insertions(+), 4 deletions(-) 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"] )