From 17495a7beea3821699b5915de8ef4ea38385e4f4 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 11 May 2006 23:32:11 +0000 Subject: [PATCH] Date: Thu, 11 May 2006 19:08:05 -0400 From: Mike Frysinger Subject: [SDL] [patch] remove limits.h hack from linux joystick code there is a small hack in the current linux joystick code to work around broken cross-compilers by including more than one limits.h ... at the very least, this is not arm-specific by any means i'm of the opinion that libsdl should not contain such things ... people should be fixing their cross-compilers, not bloating other's source trees patch attached to clean the cruft -mike --- src/joystick/linux/SDL_sysjoystick.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/joystick/linux/SDL_sysjoystick.c b/src/joystick/linux/SDL_sysjoystick.c index b71deac84..37cf4efe0 100644 --- a/src/joystick/linux/SDL_sysjoystick.c +++ b/src/joystick/linux/SDL_sysjoystick.c @@ -30,9 +30,6 @@ #include #include #include /* For the definition of PATH_MAX */ -#ifdef __arm__ -#include /* Arm cross-compiler needs this */ -#endif #include #if SDL_INPUT_LINUXEV #include