🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

432 lines
11 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. #ifndef SDL_config_h_
  19. #define SDL_config_h_
  20. /**
  21. * \file SDL_config.h.in
  22. *
  23. * This is a set of defines to configure the SDL features
  24. */
  25. /* General platform specific identifiers */
  26. #include "SDL_platform.h"
  27. /* Make sure that this isn't included by Visual C++ */
  28. #ifdef _MSC_VER
  29. #error You should run hg revert SDL_config.h
  30. #endif
  31. /* C language features */
  32. #undef const
  33. #undef inline
  34. #undef volatile
  35. /* C datatypes */
  36. #ifdef __LP64__
  37. #define SIZEOF_VOIDP 8
  38. #else
  39. #define SIZEOF_VOIDP 4
  40. #endif
  41. #undef HAVE_GCC_ATOMICS
  42. #undef HAVE_GCC_SYNC_LOCK_TEST_AND_SET
  43. /* Comment this if you want to build without any C library requirements */
  44. #undef HAVE_LIBC
  45. #if HAVE_LIBC
  46. /* Useful headers */
  47. #undef STDC_HEADERS
  48. #undef HAVE_ALLOCA_H
  49. #undef HAVE_CTYPE_H
  50. #undef HAVE_FLOAT_H
  51. #undef HAVE_ICONV_H
  52. #undef HAVE_INTTYPES_H
  53. #undef HAVE_LIMITS_H
  54. #undef HAVE_MALLOC_H
  55. #undef HAVE_MATH_H
  56. #undef HAVE_MEMORY_H
  57. #undef HAVE_SIGNAL_H
  58. #undef HAVE_STDARG_H
  59. #undef HAVE_STDINT_H
  60. #undef HAVE_STDIO_H
  61. #undef HAVE_STDLIB_H
  62. #undef HAVE_STRINGS_H
  63. #undef HAVE_STRING_H
  64. #undef HAVE_SYS_TYPES_H
  65. #undef HAVE_WCHAR_H
  66. #undef HAVE_PTHREAD_NP_H
  67. #undef HAVE_LIBUNWIND_H
  68. /* C library functions */
  69. #undef HAVE_MALLOC
  70. #undef HAVE_CALLOC
  71. #undef HAVE_REALLOC
  72. #undef HAVE_FREE
  73. #undef HAVE_ALLOCA
  74. #ifndef __WIN32__ /* Don't use C runtime versions of these on Windows */
  75. #undef HAVE_GETENV
  76. #undef HAVE_SETENV
  77. #undef HAVE_PUTENV
  78. #undef HAVE_UNSETENV
  79. #endif
  80. #undef HAVE_QSORT
  81. #undef HAVE_ABS
  82. #undef HAVE_BCOPY
  83. #undef HAVE_MEMSET
  84. #undef HAVE_MEMCPY
  85. #undef HAVE_MEMMOVE
  86. #undef HAVE_MEMCMP
  87. #undef HAVE_WCSLEN
  88. #undef HAVE_WCSLCPY
  89. #undef HAVE_WCSLCAT
  90. #undef HAVE_WCSDUP
  91. #undef HAVE_WCSSTR
  92. #undef HAVE_WCSCMP
  93. #undef HAVE_WCSNCMP
  94. #undef HAVE_STRLEN
  95. #undef HAVE_STRLCPY
  96. #undef HAVE_STRLCAT
  97. #undef HAVE__STRREV
  98. #undef HAVE__STRUPR
  99. #undef HAVE__STRLWR
  100. #undef HAVE_INDEX
  101. #undef HAVE_RINDEX
  102. #undef HAVE_STRCHR
  103. #undef HAVE_STRRCHR
  104. #undef HAVE_STRSTR
  105. #undef HAVE_STRTOK_R
  106. #undef HAVE_STRTOK_S
  107. #undef HAVE_ITOA
  108. #undef HAVE__LTOA
  109. #undef HAVE__UITOA
  110. #undef HAVE__ULTOA
  111. #undef HAVE_STRTOL
  112. #undef HAVE_STRTOUL
  113. #undef HAVE__I64TOA
  114. #undef HAVE__UI64TOA
  115. #undef HAVE_STRTOLL
  116. #undef HAVE_STRTOULL
  117. #undef HAVE_STRTOD
  118. #undef HAVE_ATOI
  119. #undef HAVE_ATOF
  120. #undef HAVE_STRCMP
  121. #undef HAVE_STRNCMP
  122. #undef HAVE__STRICMP
  123. #undef HAVE_STRCASECMP
  124. #undef HAVE__STRNICMP
  125. #undef HAVE_STRNCASECMP
  126. #undef HAVE_SSCANF
  127. #undef HAVE_VSSCANF
  128. #undef HAVE_SNPRINTF
  129. #undef HAVE_VSNPRINTF
  130. #undef HAVE_M_PI
  131. #undef HAVE_ACOS
  132. #undef HAVE_ACOSF
  133. #undef HAVE_ASIN
  134. #undef HAVE_ASINF
  135. #undef HAVE_ATAN
  136. #undef HAVE_ATANF
  137. #undef HAVE_ATAN2
  138. #undef HAVE_ATAN2F
  139. #undef HAVE_CEIL
  140. #undef HAVE_CEILF
  141. #undef HAVE_COPYSIGN
  142. #undef HAVE_COPYSIGNF
  143. #undef HAVE_COS
  144. #undef HAVE_COSF
  145. #undef HAVE_EXP
  146. #undef HAVE_EXPF
  147. #undef HAVE_FABS
  148. #undef HAVE_FABSF
  149. #undef HAVE_FLOOR
  150. #undef HAVE_FLOORF
  151. #undef HAVE_FMOD
  152. #undef HAVE_FMODF
  153. #undef HAVE_LOG
  154. #undef HAVE_LOGF
  155. #undef HAVE_LOG10
  156. #undef HAVE_LOG10F
  157. #undef HAVE_POW
  158. #undef HAVE_POWF
  159. #undef HAVE_SCALBN
  160. #undef HAVE_SCALBNF
  161. #undef HAVE_SIN
  162. #undef HAVE_SINF
  163. #undef HAVE_SQRT
  164. #undef HAVE_SQRTF
  165. #undef HAVE_TAN
  166. #undef HAVE_TANF
  167. #undef HAVE_FOPEN64
  168. #undef HAVE_FSEEKO
  169. #undef HAVE_FSEEKO64
  170. #undef HAVE_SIGACTION
  171. #undef HAVE_SA_SIGACTION
  172. #undef HAVE_SETJMP
  173. #undef HAVE_NANOSLEEP
  174. #undef HAVE_SYSCONF
  175. #undef HAVE_SYSCTLBYNAME
  176. #undef HAVE_CLOCK_GETTIME
  177. #undef HAVE_GETPAGESIZE
  178. #undef HAVE_MPROTECT
  179. #undef HAVE_ICONV
  180. #undef HAVE_PTHREAD_SETNAME_NP
  181. #undef HAVE_PTHREAD_SET_NAME_NP
  182. #undef HAVE_SEM_TIMEDWAIT
  183. #undef HAVE_GETAUXVAL
  184. #undef HAVE_POLL
  185. #undef HAVE__EXIT
  186. #else
  187. #define HAVE_STDARG_H 1
  188. #define HAVE_STDDEF_H 1
  189. #define HAVE_STDINT_H 1
  190. #endif /* HAVE_LIBC */
  191. #undef HAVE_ALTIVEC_H
  192. #undef HAVE_DBUS_DBUS_H
  193. #undef HAVE_FCITX
  194. #undef HAVE_IBUS_IBUS_H
  195. #undef HAVE_IMMINTRIN_H
  196. #undef HAVE_LIBSAMPLERATE_H
  197. #undef HAVE_LIBUDEV_H
  198. #undef HAVE_DDRAW_H
  199. #undef HAVE_DINPUT_H
  200. #undef HAVE_DSOUND_H
  201. #undef HAVE_DXGI_H
  202. #undef HAVE_XINPUT_H
  203. #undef HAVE_MMDEVICEAPI_H
  204. #undef HAVE_AUDIOCLIENT_H
  205. #undef HAVE_XINPUT_GAMEPAD_EX
  206. #undef HAVE_XINPUT_STATE_EX
  207. /* SDL internal assertion support */
  208. #undef SDL_DEFAULT_ASSERT_LEVEL
  209. /* Allow disabling of core subsystems */
  210. #undef SDL_ATOMIC_DISABLED
  211. #undef SDL_AUDIO_DISABLED
  212. #undef SDL_CPUINFO_DISABLED
  213. #undef SDL_EVENTS_DISABLED
  214. #undef SDL_FILE_DISABLED
  215. #undef SDL_JOYSTICK_DISABLED
  216. #undef SDL_HAPTIC_DISABLED
  217. #undef SDL_SENSOR_DISABLED
  218. #undef SDL_LOADSO_DISABLED
  219. #undef SDL_RENDER_DISABLED
  220. #undef SDL_THREADS_DISABLED
  221. #undef SDL_TIMERS_DISABLED
  222. #undef SDL_VIDEO_DISABLED
  223. #undef SDL_POWER_DISABLED
  224. #undef SDL_FILESYSTEM_DISABLED
  225. /* Enable various audio drivers */
  226. #undef SDL_AUDIO_DRIVER_ALSA
  227. #undef SDL_AUDIO_DRIVER_ALSA_DYNAMIC
  228. #undef SDL_AUDIO_DRIVER_ANDROID
  229. #undef SDL_AUDIO_DRIVER_ARTS
  230. #undef SDL_AUDIO_DRIVER_ARTS_DYNAMIC
  231. #undef SDL_AUDIO_DRIVER_COREAUDIO
  232. #undef SDL_AUDIO_DRIVER_DISK
  233. #undef SDL_AUDIO_DRIVER_DSOUND
  234. #undef SDL_AUDIO_DRIVER_DUMMY
  235. #undef SDL_AUDIO_DRIVER_EMSCRIPTEN
  236. #undef SDL_AUDIO_DRIVER_ESD
  237. #undef SDL_AUDIO_DRIVER_ESD_DYNAMIC
  238. #undef SDL_AUDIO_DRIVER_FUSIONSOUND
  239. #undef SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC
  240. #undef SDL_AUDIO_DRIVER_HAIKU
  241. #undef SDL_AUDIO_DRIVER_JACK
  242. #undef SDL_AUDIO_DRIVER_JACK_DYNAMIC
  243. #undef SDL_AUDIO_DRIVER_NACL
  244. #undef SDL_AUDIO_DRIVER_NAS
  245. #undef SDL_AUDIO_DRIVER_NAS_DYNAMIC
  246. #undef SDL_AUDIO_DRIVER_NETBSD
  247. #undef SDL_AUDIO_DRIVER_OSS
  248. #undef SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H
  249. #undef SDL_AUDIO_DRIVER_PAUDIO
  250. #undef SDL_AUDIO_DRIVER_PULSEAUDIO
  251. #undef SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC
  252. #undef SDL_AUDIO_DRIVER_QSA
  253. #undef SDL_AUDIO_DRIVER_SNDIO
  254. #undef SDL_AUDIO_DRIVER_SNDIO_DYNAMIC
  255. #undef SDL_AUDIO_DRIVER_SUNAUDIO
  256. #undef SDL_AUDIO_DRIVER_WASAPI
  257. #undef SDL_AUDIO_DRIVER_WINMM
  258. /* Enable various input drivers */
  259. #undef SDL_INPUT_LINUXEV
  260. #undef SDL_INPUT_LINUXKD
  261. #undef SDL_INPUT_TSLIB
  262. #undef SDL_JOYSTICK_HAIKU
  263. #undef SDL_JOYSTICK_DINPUT
  264. #undef SDL_JOYSTICK_XINPUT
  265. #undef SDL_JOYSTICK_DUMMY
  266. #undef SDL_JOYSTICK_IOKIT
  267. #undef SDL_JOYSTICK_LINUX
  268. #undef SDL_JOYSTICK_ANDROID
  269. #undef SDL_JOYSTICK_WINMM
  270. #undef SDL_JOYSTICK_USBHID
  271. #undef SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H
  272. #undef SDL_JOYSTICK_HIDAPI
  273. #undef SDL_JOYSTICK_RAWINPUT
  274. #undef SDL_JOYSTICK_EMSCRIPTEN
  275. #undef SDL_JOYSTICK_VIRTUAL
  276. #undef SDL_HAPTIC_DUMMY
  277. #undef SDL_HAPTIC_ANDROID
  278. #undef SDL_HAPTIC_LINUX
  279. #undef SDL_HAPTIC_IOKIT
  280. #undef SDL_HAPTIC_DINPUT
  281. #undef SDL_HAPTIC_XINPUT
  282. /* Enable various sensor drivers */
  283. #undef SDL_SENSOR_ANDROID
  284. #undef SDL_SENSOR_DUMMY
  285. /* Enable various shared object loading systems */
  286. #undef SDL_LOADSO_DLOPEN
  287. #undef SDL_LOADSO_DUMMY
  288. #undef SDL_LOADSO_LDG
  289. #undef SDL_LOADSO_WINDOWS
  290. /* Enable various threading systems */
  291. #undef SDL_THREAD_PTHREAD
  292. #undef SDL_THREAD_PTHREAD_RECURSIVE_MUTEX
  293. #undef SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP
  294. #undef SDL_THREAD_WINDOWS
  295. /* Enable various timer systems */
  296. #undef SDL_TIMER_HAIKU
  297. #undef SDL_TIMER_DUMMY
  298. #undef SDL_TIMER_UNIX
  299. #undef SDL_TIMER_WINDOWS
  300. /* Enable various video drivers */
  301. #undef SDL_VIDEO_DRIVER_HAIKU
  302. #undef SDL_VIDEO_DRIVER_COCOA
  303. #undef SDL_VIDEO_DRIVER_DIRECTFB
  304. #undef SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC
  305. #undef SDL_VIDEO_DRIVER_DUMMY
  306. #undef SDL_VIDEO_DRIVER_WINDOWS
  307. #undef SDL_VIDEO_DRIVER_WAYLAND
  308. #undef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
  309. #undef SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC
  310. #undef SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_EGL
  311. #undef SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_CURSOR
  312. #undef SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_XKBCOMMON
  313. #undef SDL_VIDEO_DRIVER_X11
  314. #undef SDL_VIDEO_DRIVER_RPI
  315. #undef SDL_VIDEO_DRIVER_KMSDRM
  316. #undef SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC
  317. #undef SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC_GBM
  318. #undef SDL_VIDEO_DRIVER_ANDROID
  319. #undef SDL_VIDEO_DRIVER_EMSCRIPTEN
  320. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC
  321. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT
  322. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR
  323. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA
  324. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2
  325. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR
  326. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS
  327. #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE
  328. #undef SDL_VIDEO_DRIVER_X11_XCURSOR
  329. #undef SDL_VIDEO_DRIVER_X11_XDBE
  330. #undef SDL_VIDEO_DRIVER_X11_XINERAMA
  331. #undef SDL_VIDEO_DRIVER_X11_XINPUT2
  332. #undef SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH
  333. #undef SDL_VIDEO_DRIVER_X11_XRANDR
  334. #undef SDL_VIDEO_DRIVER_X11_XSCRNSAVER
  335. #undef SDL_VIDEO_DRIVER_X11_XSHAPE
  336. #undef SDL_VIDEO_DRIVER_X11_XVIDMODE
  337. #undef SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS
  338. #undef SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY
  339. #undef SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM
  340. #undef SDL_VIDEO_DRIVER_NACL
  341. #undef SDL_VIDEO_DRIVER_VIVANTE
  342. #undef SDL_VIDEO_DRIVER_VIVANTE_VDK
  343. #undef SDL_VIDEO_DRIVER_QNX
  344. #undef SDL_VIDEO_RENDER_D3D
  345. #undef SDL_VIDEO_RENDER_D3D11
  346. #undef SDL_VIDEO_RENDER_OGL
  347. #undef SDL_VIDEO_RENDER_OGL_ES
  348. #undef SDL_VIDEO_RENDER_OGL_ES2
  349. #undef SDL_VIDEO_RENDER_DIRECTFB
  350. #undef SDL_VIDEO_RENDER_METAL
  351. /* Enable OpenGL support */
  352. #undef SDL_VIDEO_OPENGL
  353. #undef SDL_VIDEO_OPENGL_ES
  354. #undef SDL_VIDEO_OPENGL_ES2
  355. #undef SDL_VIDEO_OPENGL_BGL
  356. #undef SDL_VIDEO_OPENGL_CGL
  357. #undef SDL_VIDEO_OPENGL_EGL
  358. #undef SDL_VIDEO_OPENGL_GLX
  359. #undef SDL_VIDEO_OPENGL_WGL
  360. #undef SDL_VIDEO_OPENGL_OSMESA
  361. #undef SDL_VIDEO_OPENGL_OSMESA_DYNAMIC
  362. /* Enable Vulkan support */
  363. #undef SDL_VIDEO_VULKAN
  364. /* Enable Metal support */
  365. #undef SDL_VIDEO_METAL
  366. /* Enable system power support */
  367. #undef SDL_POWER_LINUX
  368. #undef SDL_POWER_WINDOWS
  369. #undef SDL_POWER_MACOSX
  370. #undef SDL_POWER_HAIKU
  371. #undef SDL_POWER_ANDROID
  372. #undef SDL_POWER_EMSCRIPTEN
  373. #undef SDL_POWER_HARDWIRED
  374. /* Enable system filesystem support */
  375. #undef SDL_FILESYSTEM_HAIKU
  376. #undef SDL_FILESYSTEM_COCOA
  377. #undef SDL_FILESYSTEM_DUMMY
  378. #undef SDL_FILESYSTEM_UNIX
  379. #undef SDL_FILESYSTEM_WINDOWS
  380. #undef SDL_FILESYSTEM_NACL
  381. #undef SDL_FILESYSTEM_ANDROID
  382. #undef SDL_FILESYSTEM_EMSCRIPTEN
  383. /* Enable assembly routines */
  384. #undef SDL_ASSEMBLY_ROUTINES
  385. #undef SDL_ALTIVEC_BLITTERS
  386. #undef SDL_ARM_SIMD_BLITTERS
  387. #undef SDL_ARM_NEON_BLITTERS
  388. /* Enable ime support */
  389. #undef SDL_USE_IME
  390. /* Enable dynamic udev support */
  391. #undef SDL_UDEV_DYNAMIC
  392. /* Enable dynamic libusb support */
  393. #undef SDL_LIBUSB_DYNAMIC
  394. /* Enable dynamic libsamplerate support */
  395. #undef SDL_LIBSAMPLERATE_DYNAMIC
  396. #endif /* SDL_config_h_ */