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)