fix osx wx29 build

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4389 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
tmator 2009-10-09 04:47:36 +00:00
parent f2e959fc6e
commit d9066c728f
1 changed files with 6 additions and 1 deletions

View File

@ -288,7 +288,12 @@ else:
env['HAVE_COCOA'] = 0
# handling wx flags CCFLAGS should be created before
wxmods = ['aui', 'adv', 'core', 'base']
if sys.platform == 'darwin':
if env['osx'] == '64cocoa':
wxmods = ['adv', 'core', 'base']
else:
wxmods = ['aui', 'adv', 'core', 'base']
env['USE_WX'] = 0
if env['wxgl']:
wxmods.append('gl')