From 1824b5b25ac452f041ef7f6b74cf1a577499dfbb Mon Sep 17 00:00:00 2001 From: Sonicadvance1 Date: Mon, 22 Feb 2010 00:19:27 +0000 Subject: [PATCH] Remove the AO dependency for DSP LLE, which is silly git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5103 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_LLE/Src/SConscript | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/SConscript b/Source/Plugins/Plugin_DSP_LLE/Src/SConscript index 35637bbaca..bf3cd4cb20 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/SConscript +++ b/Source/Plugins/Plugin_DSP_LLE/Src/SConscript @@ -6,10 +6,6 @@ import sys name = "Plugin_DSP_LLE" -if not env['HAVE_AO']: - print name + " must have AO to be build" - Return() - files = [ "Config.cpp", "DSPDebugInterface.cpp", @@ -39,5 +35,5 @@ else: LIBS = [ 'dspcore', 'audiocommon', 'common' ], ) if sys.platform == 'darwin': - lleenv['FRAMEWORKS'] = ['CoreFoundation', 'System', 'CoreAudio', 'CoreServices' ] + lleenv['FRAMEWORKS'] = [ 'CoreAudio', 'CoreServices', 'AudioUnit' ] lleenv.SharedLibrary(env['plugin_dir']+name, files)