summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/Src/SConscript
diff options
context:
space:
mode:
authorSoren Jorvang <soren.jorvang@gmail.com>2010-06-11 08:51:46 +0000
committerSoren Jorvang <soren.jorvang@gmail.com>2010-06-11 08:51:46 +0000
commite7f7eff2b6c93fbe50b2bb389d9a3ad3bffdbf07 (patch)
treeb8e00ad9b916ba717fb9cdba41dde852f2e82a67 /Source/Core/InputCommon/Src/SConscript
parentb7c2e523b35bca5ba0a4a361780a58aa74552bbc (diff)
Remove a few unused HAVE_FOO's and make the SDL check global.
ulong is not a standard type. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5649 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/InputCommon/Src/SConscript')
-rw-r--r--Source/Core/InputCommon/Src/SConscript6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/Core/InputCommon/Src/SConscript b/Source/Core/InputCommon/Src/SConscript
index d4b340316c..426d877aac 100644
--- a/Source/Core/InputCommon/Src/SConscript
+++ b/Source/Core/InputCommon/Src/SConscript
@@ -8,6 +8,7 @@ files = [
'InputCommon.cpp',
'SDL_Util.cpp',
'ControllerInterface/ControllerInterface.cpp',
+ 'ControllerInterface/SDL/SDL.cpp'
]
if env['HAVE_X11']:
@@ -20,11 +21,6 @@ if env['HAVE_WX']:
"WXInputBase.cpp",
]
-if env['HAVE_SDL']:
- files += [
- 'ControllerInterface/SDL/SDL.cpp'
- ]
-
if sys.platform == 'darwin':
files += [
'ControllerInterface/OSX/OSX.mm',