Browse Source

Tim Blechmann scons patch.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1740 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.69
sletz 18 years ago
parent
commit
5daaba7014
2 changed files with 7 additions and 4 deletions
  1. +6
    -1
      ChangeLog
  2. +1
    -3
      SConstruct

+ 6
- 1
ChangeLog View File

@@ -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 <letz@grame.fr>

* Tim Blechmann scons patch.

2007-12-07 Stephane Letz <letz@grame.fr>

* Pieter Palmers second new build system: scons and Makefile based build.


+ 1
- 3
SConstruct View File

@@ -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"] )


Loading…
Cancel
Save