SDL_config_premake.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. /* include/SDL_config.h. Generated from SDL_config.h.in by configure. */
  2. /*
  3. Simple DirectMedia Layer
  4. Copyright (C) 1997-2014 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_VSSCANF 1
  120. #define HAVE_VSNPRINTF 1
  121. #define HAVE_M_PI /**/
  122. #define HAVE_ATAN 1
  123. #define HAVE_ATAN2 1
  124. #define HAVE_CEIL 1
  125. #define HAVE_COPYSIGN 1
  126. #define HAVE_COS 1
  127. #define HAVE_COSF 1
  128. #define HAVE_FABS 1
  129. #define HAVE_FLOOR 1
  130. #define HAVE_LOG 1
  131. #define HAVE_POW 1
  132. #define HAVE_SCALBN 1
  133. #define HAVE_SIN 1
  134. #define HAVE_SINF 1
  135. #define HAVE_SQRT 1
  136. #define HAVE_FSEEKO 1
  137. #define HAVE_FSEEKO64 1
  138. #define HAVE_SIGACTION 1
  139. #define HAVE_SA_SIGACTION 1
  140. #define HAVE_SETJMP 1
  141. #define HAVE_NANOSLEEP 1
  142. #define HAVE_SYSCONF 1
  143. /* #undef HAVE_SYSCTLBYNAME */
  144. #define HAVE_CLOCK_GETTIME 1
  145. /* #undef HAVE_GETPAGESIZE */
  146. #define HAVE_MPROTECT 1
  147. #define HAVE_ICONV 1
  148. #define HAVE_PTHREAD_SETNAME_NP 1
  149. /* #undef HAVE_PTHREAD_SET_NAME_NP */
  150. #define HAVE_SEM_TIMEDWAIT 1
  151. #else
  152. #define HAVE_STDARG_H 1
  153. #define HAVE_STDDEF_H 1
  154. #define HAVE_STDINT_H 1
  155. #endif /* HAVE_LIBC */
  156. /* SDL internal assertion support */
  157. /* #undef SDL_DEFAULT_ASSERT_LEVEL */
  158. #ifndef SDL_AUDIO_DRIVER_DUMMY
  159. #define SDL_AUDIO_DRIVER_DUMMY 1
  160. #endif
  161. #ifndef SDL_AUDIO_DRIVER_DISK
  162. #define SDL_AUDIO_DRIVER_DISK 1
  163. #endif
  164. #ifndef SDL_VIDEO_DRIVER_DUMMY
  165. #define SDL_VIDEO_DRIVER_DUMMY 1
  166. #endif
  167. #ifndef SDL_VIDEO_RENDER_OGL
  168. #define SDL_VIDEO_RENDER_OGL 1
  169. #endif
  170. #ifndef SDL_VIDEO_OPENGL
  171. #define SDL_VIDEO_OPENGL 1
  172. #endif
  173. #ifndef SDL_VIDEO_OPENGL_GLX
  174. #define SDL_VIDEO_OPENGL_GLX 1
  175. #endif
  176. #ifndef SDL_LOADSO_DLOPEN
  177. #define SDL_LOADSO_DLOPEN 1
  178. #endif
  179. #ifndef SDL_AUDIO_DRIVER_ALSA
  180. #define SDL_AUDIO_DRIVER_ALSA 1
  181. #endif
  182. #ifndef SDL_AUDIO_DRIVER_ALSA_DYNAMIC
  183. #define SDL_AUDIO_DRIVER_ALSA_DYNAMIC "libasound.so"
  184. #endif
  185. #ifndef SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC
  186. #define SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC "libpulse-simple.so"
  187. #endif
  188. #ifndef SDL_AUDIO_DRIVER_PULSEAUDIO
  189. #define SDL_AUDIO_DRIVER_PULSEAUDIO 1
  190. #endif
  191. #ifndef SDL_AUDIO_DRIVER_ESD
  192. #define SDL_AUDIO_DRIVER_ESD 1
  193. #endif
  194. #ifndef SDL_AUDIO_DRIVER_ESD_DYNAMIC
  195. #define SDL_AUDIO_DRIVER_ESD_DYNAMIC "libesd.so"
  196. #endif
  197. #ifndef SDL_AUDIO_DRIVER_NAS
  198. #define SDL_AUDIO_DRIVER_NAS 1
  199. #endif
  200. #ifndef SDL_AUDIO_DRIVER_NAS_DYNAMIC
  201. #define SDL_AUDIO_DRIVER_NAS_DYNAMIC "libaudio.so"
  202. #endif
  203. #ifndef SDL_AUDIO_DRIVER_OSS
  204. #define SDL_AUDIO_DRIVER_OSS 1
  205. #endif
  206. #ifndef SDL_VIDEO_DRIVER_X11_XINERAMA
  207. #define SDL_VIDEO_DRIVER_X11_XINERAMA 1
  208. #endif
  209. #ifndef SDL_VIDEO_DRIVER_X11
  210. #define SDL_VIDEO_DRIVER_X11 1
  211. #endif
  212. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT
  213. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "libXext.so"
  214. #endif
  215. #ifndef SDL_VIDEO_DRIVER_X11_XCURSOR
  216. #define SDL_VIDEO_DRIVER_X11_XCURSOR 1
  217. #endif
  218. #ifndef SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM
  219. #define SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM 1
  220. #endif
  221. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2
  222. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "libXi.so"
  223. #endif
  224. #ifndef SDL_VIDEO_DRIVER_X11_XVIDMODE
  225. #define SDL_VIDEO_DRIVER_X11_XVIDMODE 1
  226. #endif
  227. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA
  228. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "libXinerama.so"
  229. #endif
  230. #ifndef SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY
  231. #define SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY 1
  232. #endif
  233. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC
  234. #define SDL_VIDEO_DRIVER_X11_DYNAMIC "libX11.so"
  235. #endif
  236. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS
  237. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "libXss.so"
  238. #endif
  239. #ifndef SDL_VIDEO_DRIVER_X11_XINPUT2
  240. #define SDL_VIDEO_DRIVER_X11_XINPUT2 1
  241. #endif
  242. #ifndef SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS
  243. #define SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS 1
  244. #endif
  245. #ifndef SDL_VIDEO_DRIVER_X11_XSCRNSAVER
  246. #define SDL_VIDEO_DRIVER_X11_XSCRNSAVER 1
  247. #endif
  248. #ifndef SDL_VIDEO_DRIVER_X11_XSHAPE
  249. #define SDL_VIDEO_DRIVER_X11_XSHAPE 1
  250. #endif
  251. #ifndef SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH
  252. #define SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH 1
  253. #endif
  254. #ifndef SDL_VIDEO_DRIVER_X11_XRANDR
  255. #define SDL_VIDEO_DRIVER_X11_XRANDR 1
  256. #endif
  257. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE
  258. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "libXxf86vm.so"
  259. #endif
  260. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR
  261. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR "libXcursor.so"
  262. #endif
  263. #ifndef SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR
  264. #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "libXrandr.so"
  265. #endif
  266. #ifndef SDL_INPUT_LINUXEV
  267. #define SDL_INPUT_LINUXEV 1
  268. #endif
  269. #ifndef SDL_HAPTIC_LINUX
  270. #define SDL_HAPTIC_LINUX 1
  271. #endif
  272. #ifndef SDL_THREAD_PTHREAD_RECURSIVE_MUTEX
  273. #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
  274. #endif
  275. #ifndef SDL_JOYSTICK_LINUX
  276. #define SDL_JOYSTICK_LINUX 1
  277. #endif
  278. #ifndef SDL_THREAD_PTHREAD
  279. #define SDL_THREAD_PTHREAD 1
  280. #endif
  281. #ifndef SDL_POWER_LINUX
  282. #define SDL_POWER_LINUX 1
  283. #endif
  284. #ifndef SDL_TIMER_UNIX
  285. #define SDL_TIMER_UNIX 1
  286. #endif
  287. #ifndef SDL_FILESYSTEM_UNIX
  288. #define SDL_FILESYSTEM_UNIX 1
  289. #endif
  290. /* Enable assembly routines */
  291. #define SDL_ASSEMBLY_ROUTINES 1
  292. /* #undef SDL_ALTIVEC_BLITTERS */
  293. #endif /* _SDL_config_h */