mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Added check for fink/macports paths in osx
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2540 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -187,6 +187,8 @@ tests = {'CheckWXConfig' : wxconfig.CheckWXConfig,
|
||||
'CheckPKGConfig' : utils.CheckPKGConfig,
|
||||
'CheckPKG' : utils.CheckPKG,
|
||||
'CheckSDL' : utils.CheckSDL,
|
||||
'CheckFink' : utils.CheckFink,
|
||||
'CheckMacports' : utils.CheckMacports,
|
||||
'CheckPortaudio' : utils.CheckPortaudio,
|
||||
}
|
||||
|
||||
@ -199,6 +201,12 @@ conf = env.Configure(custom_tests = tests,
|
||||
if not conf.CheckPKGConfig('0.15.0'):
|
||||
print "Can't find pkg-config, some tests will fail"
|
||||
|
||||
# find ports/fink for library and include path
|
||||
if sys.platform == 'darwin':
|
||||
#ports usually has newer versions
|
||||
conf.CheckMacports()
|
||||
conf.CheckFink()
|
||||
|
||||
env['HAVE_SDL'] = conf.CheckSDL('1.0.0')
|
||||
|
||||
# Bluetooth for wii support
|
||||
|
Reference in New Issue
Block a user