Remove useless Linux_tty input driver from the build as per Sean's suggestion; he's right, there's no point in having it if it requires SDL.

This commit is contained in:
Ben Anderson
2005-03-15 00:36:01 +00:00
parent 54d6689657
commit 3b65e3f438
2 changed files with 2 additions and 9 deletions
-5
View File
@@ -193,11 +193,6 @@ endif
if LINUX
MemoryCard += arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp arch/MemoryCard/MemoryCardDriverThreaded_Linux.h
InputHandler += arch/InputHandler/InputHandler_Linux_Joystick.h arch/InputHandler/InputHandler_Linux_Joystick.cpp
# XXX: WTF? InputHandler_Linux_tty depends on SDL!
if HAVE_SDL
InputHandler += arch/InputHandler/InputHandler_Linux_tty.h arch/InputHandler/InputHandler_Linux_tty.cpp
endif
endif
Arch = $(LoadingWindow) $(Sound) $(ArchHooks) $(InputHandler) $(MovieTexture) \
@@ -10,10 +10,8 @@
#ifdef HAVE_LINUXKERNEL
#include "InputHandler_Linux_Joystick.h"
// XXX: WTF? InputHandler_Linux_tty depends on SDL!
#ifdef HAVE_SDL
#include "InputHandler_Linux_tty.h"
#endif
// XXX: Useless! Depends on SDL, which we'd use for input if it was available!
// #include "InputHandler_Linux_tty.h"
#endif
#include "InputHandler_MonkeyKeyboard.h"