From 1619433ae7deda025703cd10909a6d1efab06b5b Mon Sep 17 00:00:00 2001 From: nakeee Date: Tue, 15 Sep 2009 10:47:19 +0000 Subject: DSP: added automatic alsa test. Should fix issue 1403 git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4274 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/AudioCommon/Src/SConscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Source/Core/AudioCommon/Src/SConscript') diff --git a/Source/Core/AudioCommon/Src/SConscript b/Source/Core/AudioCommon/Src/SConscript index 7caa6c2c6b..64b0e22810 100644 --- a/Source/Core/AudioCommon/Src/SConscript +++ b/Source/Core/AudioCommon/Src/SConscript @@ -1,3 +1,4 @@ + # -*- python -*- Import('env') @@ -18,7 +19,7 @@ if acenv['HAVE_OPENAL']: if acenv['HAVE_AO']: files += [ 'AOSoundStream.cpp' ] -# TODO: make conditional? -files += [ 'AlsaSoundStream.cpp' ] +if acenv['HAVE_ALSA']: + files += [ 'AlsaSoundStream.cpp' ] acenv.StaticLibrary(env['local_libs'] + 'audiocommon', files) -- cgit v1.2.3