remove wx check in nowx

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1827 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-01-08 11:50:49 +00:00
parent dd56f82f82
commit 772f17c1c7
1 changed files with 5 additions and 5 deletions

View File

@ -230,7 +230,11 @@ if env['wxgl']:
env['HAVE_X11'] = 0
env['HAVE_COCOA'] = 0
env['HAVE_WX'] = conf.CheckWXConfig('2.8', wxmods, 0)
# Gui less build
if env['nowx']:
env['HAVE_WX'] = 0;
else:
env['HAVE_WX'] = conf.CheckWXConfig('2.8', wxmods, 0)
# SDL backend
env['USE_SDL'] = 0
@ -253,10 +257,6 @@ if env['jittest']:
conf.Define('JITTEST', env['JITTEST'])
# Gui less build
if env['nowx']:
env['HAVE_WX'] = 0;
# Creating config.h defines
conf.Define('HAVE_SDL', env['HAVE_SDL'])
conf.Define('USE_SDL', env['USE_SDL'])