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:
nakeee
2009-03-01 12:56:07 +00:00
parent 2f378cb154
commit 9b00d84c5d
2 changed files with 13 additions and 2 deletions

View File

@ -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':