comparison src/joystick/bsd/SDL_sysjoystick.c @ 4944:921637675f2c

I am using SDL 1.3 on FreeBSD. I found two problems. (1) SDL_atomic dummy version in SDL 1.3 is not used. Because src/atomic/dummy/*.c are not used. (2) Typo in src/joystick/bsd/SDL_sysjoystick.c. Thanks, IWATSUKI Hiroyuki
author Sam Lantinga <slouken@libsdl.org>
date Sat, 01 Jan 2011 19:50:50 -0800
parents cd344ebc14e9
children b530ef003506
comparison
equal deleted inserted replaced
4943:f65299ded39c 4944:921637675f2c
57 #include <libusb.h> 57 #include <libusb.h>
58 #elif defined(HAVE_LIBUSBHID_H) 58 #elif defined(HAVE_LIBUSBHID_H)
59 #include <libusbhid.h> 59 #include <libusbhid.h>
60 #endif 60 #endif
61 61
62 #ifdef defined(__FREEBSD__) || defined(__FreeBSD_kernel__) 62 #if defined(__FREEBSD__) || defined(__FreeBSD_kernel__)
63 #ifndef __DragonFly__ 63 #ifndef __DragonFly__
64 #include <osreldate.h> 64 #include <osreldate.h>
65 #endif 65 #endif
66 #include <sys/joystick.h> 66 #include <sys/joystick.h>
67 #endif 67 #endif