mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Revent accidental hci.h change add better portaudio detection
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2506 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -206,7 +206,9 @@ env['HAVE_BLUEZ'] = conf.CheckPKG('bluez')
|
||||
env['HAVE_AO'] = conf.CheckPKG('ao')
|
||||
|
||||
# needed for mic
|
||||
env['HAVE_PORTAUDIO'] = conf.CheckPKG('portaudio')
|
||||
env['HAVE_PORTAUDIO'] = False
|
||||
if conf.CheckPKG('portaudio') and conf.CheckCHeader("portaudio.h"):
|
||||
env['HAVE_PORTAUDIO'] = True;
|
||||
|
||||
#osx 64 specifics
|
||||
if sys.platform == 'darwin':
|
||||
|
Reference in New Issue
Block a user