SDL_config_premake.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. /* include/SDL_config.h. Generated from SDL_config.h.in by configure. */
  2. /*
  3. Simple DirectMedia Layer
  4. Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
  5. This software is provided 'as-is', without any express or implied
  6. warranty. In no event will the authors be held liable for any damages
  7. arising from the use of this software.
  8. Permission is granted to anyone to use this software for any purpose,
  9. including commercial applications, and to alter it and redistribute it
  10. freely, subject to the following restrictions:
  11. 1. The origin of this software must not be misrepresented; you must not
  12. claim that you wrote the original software. If you use this software
  13. in a product, an acknowledgment in the product documentation would be
  14. appreciated but is not required.
  15. 2. Altered source versions must be plainly marked as such, and must not be
  16. misrepresented as being the original software.
  17. 3. This notice may not be removed or altered from any source distribution.
  18. */
  19. #ifndef _SDL_config_linux_h
  20. #define _SDL_config_linux_h
  21. /**
  22. * \file SDL_config.h.in
  23. *
  24. * This is a set of defines to configure the SDL features
  25. */
  26. /* General platform specific identifiers */
  27. #include "SDL_platform.h"
  28. /* Make sure that this isn't included by Visual C++ */
  29. #ifdef _MSC_VER
  30. #error You should run hg revert SDL_config.h
  31. #endif
  32. /* C language features */
  33. /* #undef const */
  34. /* #undef inline */
  35. /* #undef volatile */
  36. /* C datatypes */
  37. #ifdef __LP64__
  38. #define SIZEOF_VOIDP 8
  39. #else
  40. #define SIZEOF_VOIDP 4
  41. #endif
  42. #define HAVE_GCC_ATOMICS 1
  43. /* #undef HAVE_GCC_SYNC_LOCK_TEST_AND_SET */
  44. #define HAVE_PTHREAD_SPINLOCK 1
  45. /* Comment this if you want to build without any C library requirements */
  46. #define HAVE_LIBC 1
  47. #if HAVE_LIBC
  48. /* Useful headers */
  49. #define HAVE_ALLOCA_H 1
  50. #define HAVE_SYS_TYPES_H 1
  51. #define HAVE_STDIO_H 1
  52. #define STDC_HEADERS 1
  53. #define HAVE_STDLIB_H 1
  54. #define HAVE_STDARG_H 1
  55. #define HAVE_MALLOC_H 1
  56. #define HAVE_MEMORY_H 1
  57. #define HAVE_STRING_H 1
  58. #define HAVE_STRINGS_H 1
  59. #define HAVE_INTTYPES_H 1
  60. #define HAVE_STDINT_H 1
  61. #define HAVE_CTYPE_H 1
  62. #define HAVE_MATH_H 1
  63. #define HAVE_ICONV_H 1
  64. #define HAVE_SIGNAL_H 1
  65. /* #undef HAVE_ALTIVEC_H */
  66. /* #undef HAVE_PTHREAD_NP_H */
  67. /* #undef HAVE_LIBUDEV_H */
  68. #define HAVE_DBUS_DBUS_H 1
  69. /* C library functions */
  70. #define HAVE_MALLOC 1
  71. #define HAVE_CALLOC 1
  72. #define HAVE_REALLOC 1
  73. #define HAVE_FREE 1
  74. #define HAVE_ALLOCA 1
  75. #ifndef __WIN32__ /* Don't use C runtime versions of these on Windows */
  76. #define HAVE_GETENV 1
  77. #define HAVE_SETENV 1
  78. #define HAVE_PUTENV 1
  79. #define HAVE_UNSETENV 1
  80. #endif
  81. #define HAVE_QSORT 1
  82. #define HAVE_ABS 1
  83. #define HAVE_BCOPY 1
  84. #define HAVE_MEMSET 1
  85. #define HAVE_MEMCPY 1
  86. #define HAVE_MEMMOVE 1
  87. #define HAVE_MEMCMP 1
  88. #define HAVE_STRLEN 1
  89. /* #undef HAVE_STRLCPY */
  90. /* #undef HAVE_STRLCAT */
  91. #define HAVE_STRDUP 1
  92. /* #undef HAVE__STRREV */
  93. /* #undef HAVE__STRUPR */
  94. /* #undef HAVE__STRLWR */
  95. /* #undef HAVE_INDEX */
  96. /* #undef HAVE_RINDEX */
  97. #define HAVE_STRCHR 1
  98. #define HAVE_STRRCHR 1
  99. #define HAVE_STRSTR 1
  100. /* #undef HAVE_ITOA */
  101. /* #undef HAVE__LTOA */
  102. /* #undef HAVE__UITOA */
  103. /* #undef HAVE__ULTOA */
  104. #define HAVE_STRTOL 1
  105. #define HAVE_STRTOUL 1
  106. /* #undef HAVE__I64TOA */
  107. /* #undef HAVE__UI64TOA */
  108. #define HAVE_STRTOLL 1
  109. #define HAVE_STRTOULL 1
  110. #define HAVE_STRTOD 1
  111. #define HAVE_ATOI 1
  112. #define HAVE_ATOF 1
  113. #define HAVE_STRCMP 1
  114. #define HAVE_STRNCMP 1
  115. /* #undef HAVE__STRICMP */
  116. #define HAVE_STRCASECMP 1
  117. /* #undef HAVE__STRNICMP */
  118. #define HAVE_STRNCASECMP 1
  119. #define HAVE_SSCANF 1
  120. #define HAVE_SNPRINTF 1
  121. #define HAVE_VSNPRINTF 1
  122. #define HAVE_M_PI /**/
  123. #define HAVE_ATAN 1
  124. #define HAVE_ATAN2 1
  125. #define HAVE_CEIL 1
  126. #define HAVE_COPYSIGN 1
  127. #define HAVE_COS 1
  128. #define HAVE_COSF 1
  129. #define HAVE_FABS 1
  130. #define HAVE_FLOOR 1
  131. #define HAVE_LOG 1
  132. #define HAVE_POW 1
  133. #define HAVE_SCALBN 1
  134. #define HAVE_SIN 1
  135. #define HAVE_SINF 1
  136. #define HAVE_SQRT 1
  137. #define HAVE_FSEEKO 1
  138. #define HAVE_FSEEKO64 1
  139. #define HAVE_SIGACTION 1
  140. #define HAVE_SA_SIGACTION 1
  141. #define HAVE_SETJMP 1
  142. #define HAVE_NANOSLEEP 1
  143. #define HAVE_SYSCONF 1
  144. /* #undef HAVE_SYSCTLBYNAME */
  145. #define HAVE_CLOCK_GETTIME 1
  146. /* #undef HAVE_GETPAGESIZE */
  147. #define HAVE_MPROTECT 1
  148. #define HAVE_ICONV 1
  149. #define HAVE_PTHREAD_SETNAME_NP 1
  150. /* #undef HAVE_PTHREAD_SET_NAME_NP */
  151. #define HAVE_SEM_TIMEDWAIT 1
  152. #else
  153. #define HAVE_STDARG_H 1
  154. #define HAVE_STDDEF_H 1
  155. #define HAVE_STDINT_H 1
  156. #endif /* HAVE_LIBC */
  157. /* SDL internal assertion support */
  158. /* #undef SDL_DEFAULT_ASSERT_LEVEL */
  159. #ifndef SDL_AUDIO_DRIVER_DUMMY
  160. #define SDL_AUDIO_DRIVER_DUMMY 1
  161. #endif
  162. #ifndef SDL_AUDIO_DRIVER_DISK
  163. #define SDL_AUDIO_DRIVER_DISK 1
  164. #endif
  165. #ifndef SDL_VIDEO_DRIVER_DUMMY
  166. #define SDL_VIDEO_DRIVER_DUMMY 1
  167. #endif
  168. #ifndef SDL_VIDEO_RENDER_OGL
  169. #define SDL_VIDEO_RENDER_OGL 1
  170. #endif
  171. #ifndef SDL_VIDEO_OPENGL
  172. #define SDL_VIDEO_OPENGL 1
  173. #endif
  174. #ifndef SDL_VIDEO_OPENGL_GLX
  175. #define SDL_VIDEO_OPENGL_GLX 1
  176. #endif
  177. #ifndef SDL_LOADSO_DLOPEN
  178. #define SDL_LOADSO_DLOPEN 1
  179. #endif
  180. #ifndef SDL_AUDIO_DRIVER_ALSA
  181. #define SDL_AUDIO_DRIVER_ALSA 1
  182. #endif
  183. #ifndef SDL_AUDIO_DRIVER_ALSA_DYNAMIC
  184. #define SDL_AUDIO_DRIVER_ALSA_DYNAMIC "libasound.so"
  185. #endif
  186. #ifndef SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC
  187. #define SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC "libpulse-simple.so"
  188. #endif
  189. #ifndef SDL_AUDIO_DRIVER_PULSEAUDIO
  190. #define SDL_AUDIO_DRIVER_PULSEAUDIO 1
  191. #endif
  192. #ifndef SDL_AUDIO_DRIVER_ESD
  193. #define SDL_AUDIO_DRIVER_ESD 1
  194. #endif
  195. #ifndef SDL_AUDIO_DRIVER_ESD_DYNAMIC
  196. #define SDL_AUDIO_DRIVER_ESD_DYNAMIC "libesd.so"
  197. #endif
  198. #ifndef SDL_AUDIO_DRIVER_NAS
  199. #define SDL_AUDIO_DRIVER_NAS 1
  200. #endif
  201. #ifndef SDL_AUDIO_DRIVER_NAS_DYNAMIC
  202. #define SDL_AUDIO_DRIVER_NAS_DYNAMIC "libaudio.so"
  203. #endif
  204. #ifndef SDL_AUDIO_DRIVER_OSS
  205. #define SDL_AUDIO_DRIVER_OSS 1
  206. #endif
  207. #ifndef SDL_VIDEO_DRIVER_X11_XINERAMA
  208. #define SDL_VIDEO_DRIVER_X11_XINERAMA 1
  209. #endif
  210. #ifndef SDL_VIDEO_DRIVER_X11
  211. #define SDL_VIDEO_DRIVER_X11 1
  212. #endif
  213. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT
  214. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "libXext.so"
  215. #endif
  216. #ifndef SDL_VIDEO_DRIVER_X11_XCURSOR
  217. #define SDL_VIDEO_DRIVER_X11_XCURSOR 1
  218. #endif
  219. #ifndef SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM
  220. #define SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM 1
  221. #endif
  222. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2
  223. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "libXi.so"
  224. #endif
  225. #ifndef SDL_VIDEO_DRIVER_X11_XVIDMODE
  226. #define SDL_VIDEO_DRIVER_X11_XVIDMODE 1
  227. #endif
  228. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA
  229. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "libXinerama.so"
  230. #endif
  231. #ifndef SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY
  232. #define SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY 1
  233. #endif
  234. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC
  235. #define SDL_VIDEO_DRIVER_X11_DYNAMIC "libX11.so"
  236. #endif
  237. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS
  238. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "libXss.so"
  239. #endif
  240. #ifndef SDL_VIDEO_DRIVER_X11_XINPUT2
  241. #define SDL_VIDEO_DRIVER_X11_XINPUT2 1
  242. #endif
  243. #ifndef SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS
  244. #define SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS 1
  245. #endif
  246. #ifndef SDL_VIDEO_DRIVER_X11_XSCRNSAVER
  247. #define SDL_VIDEO_DRIVER_X11_XSCRNSAVER 1
  248. #endif
  249. #ifndef SDL_VIDEO_DRIVER_X11_XSHAPE
  250. #define SDL_VIDEO_DRIVER_X11_XSHAPE 1
  251. #endif
  252. #ifndef SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH
  253. #define SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH 1
  254. #endif
  255. #ifndef SDL_VIDEO_DRIVER_X11_XRANDR
  256. #define SDL_VIDEO_DRIVER_X11_XRANDR 1
  257. #endif
  258. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE
  259. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "libXxf86vm.so"
  260. #endif
  261. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR
  262. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR "libXcursor.so"
  263. #endif
  264. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR
  265. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "libXrandr.so"
  266. #endif
  267. #ifndef SDL_INPUT_LINUXEV
  268. #define SDL_INPUT_LINUXEV 1
  269. #endif
  270. #ifndef SDL_HAPTIC_LINUX
  271. #define SDL_HAPTIC_LINUX 1
  272. #endif
  273. #ifndef SDL_THREAD_PTHREAD_RECURSIVE_MUTEX
  274. #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
  275. #endif
  276. #ifndef SDL_JOYSTICK_LINUX
  277. #define SDL_JOYSTICK_LINUX 1
  278. #endif
  279. #ifndef SDL_THREAD_PTHREAD
  280. #define SDL_THREAD_PTHREAD 1
  281. #endif
  282. #ifndef SDL_POWER_LINUX
  283. #define SDL_POWER_LINUX 1
  284. #endif
  285. #ifndef SDL_TIMER_UNIX
  286. #define SDL_TIMER_UNIX 1
  287. #endif
  288. #ifndef SDL_FILESYSTEM_UNIX
  289. #define SDL_FILESYSTEM_UNIX 1
  290. #endif
  291. /* Enable assembly routines */
  292. #define SDL_ASSEMBLY_ROUTINES 1
  293. /* #undef SDL_ALTIVEC_BLITTERS */
  294. #endif /* _SDL_config_h */