comparison include/SDL_config_macosx.h @ 1638:ebd1aedb1292

Miscellaneous Mac OS X fixes
author Sam Lantinga <slouken@libsdl.org>
date Mon, 17 Apr 2006 03:34:28 +0000
parents d951a5afaf07
children 5b0805ceb50f
comparison
equal deleted inserted replaced
1637:9ba366b919c7 1638:ebd1aedb1292
93 93
94 /* Enable various input drivers */ 94 /* Enable various input drivers */
95 #define SDL_JOYSTICK_IOKIT 1 95 #define SDL_JOYSTICK_IOKIT 1
96 96
97 /* Enable various shared object loading systems */ 97 /* Enable various shared object loading systems */
98 #ifdef __ppc__
99 /* For Mac OS X 10.2 compatibility */
100 #define SDL_LOADSO_DLCOMPAT 1
101 #else
98 #define SDL_LOADSO_DLOPEN 1 102 #define SDL_LOADSO_DLOPEN 1
103 #endif
99 104
100 /* Enable various threading systems */ 105 /* Enable various threading systems */
101 #define SDL_THREAD_PTHREAD 1 106 #define SDL_THREAD_PTHREAD 1
102 #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1 107 #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
103 108