comparison include/SDL_config_android.h @ 4720:80f8d672b52e

Oops, I wasn't using pthreads. Fixed so we can have mutexes and stuff
author Paul Hunkin <paul@bieh.net>
date Tue, 27 Jul 2010 15:23:09 +0200
parents d59792d2c3ae
children faa228f7ce5b
comparison
equal deleted inserted replaced
4719:d59792d2c3ae 4720:80f8d672b52e
40 typedef unsigned short uint16_t; 40 typedef unsigned short uint16_t;
41 typedef signed int int32_t; 41 typedef signed int int32_t;
42 typedef unsigned int uint32_t; 42 typedef unsigned int uint32_t;
43 */ 43 */
44 44
45
46 #define HAVE_ALLOCA_H 1
47 #define HAVE_SYS_TYPES_H 1
48 #define HAVE_STDIO_H 1
49 #define STDC_HEADERS 1
50 #define HAVE_STRING_H 1
51 #define HAVE_INTTYPES_H 1
52 #define HAVE_STDINT_H 1
53 #define HAVE_CTYPE_H 1
54 #define HAVE_MATH_H 1
55 #define HAVE_SIGNAL_H 1
56
57 /* C library functions */
58 #define HAVE_MALLOC 1
59 #define HAVE_CALLOC 1
60 #define HAVE_REALLOC 1
61 #define HAVE_FREE 1
62 #define HAVE_ALLOCA 1
63 #define HAVE_GETENV 1
64 #define HAVE_SETENV 1
65 #define HAVE_PUTENV 1
66 #define HAVE_SETENV 1
67 #define HAVE_UNSETENV 1
68 #define HAVE_QSORT 1
69 #define HAVE_ABS 1
70 #define HAVE_BCOPY 1
71 #define HAVE_MEMSET 1
72 #define HAVE_MEMCPY 1
73 #define HAVE_MEMMOVE 1
74 #define HAVE_MEMCMP 1
75 #define HAVE_STRLEN 1
76 #define HAVE_STRLCPY 1
77 #define HAVE_STRLCAT 1
78 #define HAVE_STRDUP 1
79 #define HAVE_STRCHR 1
80 #define HAVE_STRRCHR 1
81 #define HAVE_STRSTR 1
82 #define HAVE_STRTOL 1
83 #define HAVE_STRTOUL 1
84 #define HAVE_STRTOLL 1
85 #define HAVE_STRTOULL 1
86 #define HAVE_STRTOD 1
87 #define HAVE_ATOI 1
88 #define HAVE_ATOF 1
89 #define HAVE_STRCMP 1
90 #define HAVE_STRNCMP 1
91 #define HAVE_STRCASECMP 1
92 #define HAVE_STRNCASECMP 1
93 #define HAVE_SSCANF 1
94 #define HAVE_SNPRINTF 1
95 #define HAVE_VSNPRINTF 1
96 #define HAVE_CEIL 1
97 #define HAVE_COPYSIGN 1
98 #define HAVE_COS 1
99 #define HAVE_COSF 1
100 #define HAVE_FABS 1
101 #define HAVE_FLOOR 1
102 #define HAVE_LOG 1
103 #define HAVE_POW 1
104 #define HAVE_SCALBN 1
105 #define HAVE_SIN 1
106 #define HAVE_SINF 1
107 #define HAVE_SQRT 1
108 #define HAVE_SIGACTION 1
109 #define HAVE_SETJMP 1
110 #define HAVE_NANOSLEEP 1
111 #define HAVE_SYSCONF 1
112
45 #define SIZEOF_VOIDP 4 113 #define SIZEOF_VOIDP 4
46 114
47 typedef unsigned int size_t; 115 typedef unsigned int size_t;
48 //typedef unsigned long uintptr_t; 116 //typedef unsigned long uintptr_t;
49 117
55 123
56 #define SDL_JOYSTICK_DISABLED 1 124 #define SDL_JOYSTICK_DISABLED 1
57 125
58 #define SDL_LOADSO_DISABLED 1 126 #define SDL_LOADSO_DISABLED 1
59 127
60 #define SDL_THREADS_DISABLED 1 128 /* Enable various threading systems */
129 #define SDL_THREAD_PTHREAD 1
130 #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
61 131
62 #define SDL_TIMERS_DISABLED 1 132 /* Enable various timer systems */
63 133 #define SDL_TIMER_UNIX 1
64 #define SDL_TIMER_UNIX 1
65 134
66 #define SDL_VIDEO_DRIVER_ANDROID 1 135 #define SDL_VIDEO_DRIVER_ANDROID 1
67 136
68 #define HAVE_STDIO_H 1 137 #define HAVE_STDIO_H 1
69 #define HAVE_SYS_TYPES_H 1 138 #define HAVE_SYS_TYPES_H 1