Changeset 1699
- Timestamp:
- 11/02/09 13:48:55 (14 years ago)
- Files:
-
- trunk/libffado/support/alsa/SConscript (modified) (1 diff)
- trunk/libffado/tests/SConscript (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/support/alsa/SConscript
r1550 r1699 37 37 sources = ["alsa_plugin.cpp"] 38 38 39 if env ['ALSA_FLAGS']:39 if env.has_key("ALSA_FLAGS") and env['ALSA_FLAGS']: 40 40 env.MergeFlags( env["ALSA_FLAGS"] ) 41 41 env.MergeFlags( "-DPIC" ) trunk/libffado/tests/SConscript
r1550 r1699 46 46 "ffado-test" : "test-ffado.cpp", 47 47 "test-fw410" : "test-fw410.cpp", 48 "test-avccmd" : "test-avccmd.cpp",49 48 #"test-extplugcmd" : "test-extplugcmd.cpp", 50 49 "test-volume" : "test-volume.cpp", … … 67 66 apps.update( { "test-focusrite" : "test-focusrite.cpp" } ) 68 67 if env['ENABLE_GENERICAVC']: 69 env.MergeFlags( env["ALSA_FLAGS"] ) # FIXME: only used here 70 apps.update( { "test-scs" : "test-scs.cpp" } ) 68 if env.has_key("ALSA_FLAGS") and env["ALSA_FLAGS"]: 69 env.MergeFlags( env["ALSA_FLAGS"] ) 70 apps.update( { "test-scs" : "test-scs.cpp" } ) 71 apps.update( { "test-avccmd" : "test-avccmd.cpp" } ) 71 72 if env['ENABLE_FIREWORKS']: 72 73 apps.update( { "test-echomixer" : "test-echomixer.cpp" } )