🛠️🐜 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.

89 lines
2.8 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2022 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_ngage_h_
  19. #define SDL_config_ngage_h_
  20. #define SDL_config_h_
  21. #include "SDL_platform.h"
  22. typedef signed char int8_t;
  23. typedef unsigned char uint8_t;
  24. typedef signed short int16_t;
  25. typedef unsigned short uint16_t;
  26. typedef signed int int32_t;
  27. typedef unsigned int uint32_t;
  28. typedef signed long long int64_t;
  29. typedef unsigned long long uint64_t;
  30. typedef unsigned long uintptr_t;
  31. #define HAVE_STDARG_H 1
  32. #define HAVE_STDDEF_H 1
  33. #define HAVE_STDIO_H 1
  34. #define HAVE_STDLIB_H 1
  35. #define HAVE_MATH_H 1
  36. #define HAVE_CEIL 1
  37. #define HAVE_COPYSIGN 1
  38. #define HAVE_COS 1
  39. #define HAVE_EXP 1
  40. #define HAVE_FABS 1
  41. #define HAVE_FLOOR 1
  42. #define HAVE_LOG 1
  43. #define HAVE_LOG10 1
  44. #define HAVE_SCALBN 1
  45. #define HAVE_SIN 1
  46. #define HAVE_SQRT 1
  47. #define HAVE_TAN 1
  48. #define HAVE_MALLOC 1
  49. #define SDL_MAIN_NEEDED 1
  50. #define LACKS_SYS_MMAN_H 1
  51. /* Enable the N-Gage thread support (src/thread/ngage/\*.c) */
  52. #define SDL_THREAD_NGAGE 1
  53. /* Enable the N-Gage timer support (src/timer/ngage/\*.c) */
  54. #define SDL_TIMER_NGAGE 1
  55. /* Enable the N-Gage video driver (src/video/ngage/\*.c) */
  56. #define SDL_VIDEO_DRIVER_NGAGE 1
  57. /* Enable the dummy audio driver (src/audio/dummy/\*.c) */
  58. #define SDL_AUDIO_DRIVER_DUMMY 1
  59. /* Enable the stub joystick driver (src/joystick/dummy/\*.c) */
  60. #define SDL_JOYSTICK_DISABLED 1
  61. /* Enable the stub haptic driver (src/haptic/dummy/\*.c) */
  62. #define SDL_HAPTIC_DISABLED 1
  63. /* Enable the stub HIDAPI */
  64. #define SDL_HIDAPI_DISABLED 1
  65. /* Enable the stub sensor driver (src/sensor/dummy/\*.c) */
  66. #define SDL_SENSOR_DISABLED 1
  67. /* Enable the stub shared object loader (src/loadso/dummy/\*.c) */
  68. #define SDL_LOADSO_DISABLED 1
  69. /* Enable the dummy filesystem driver (src/filesystem/dummy/\*.c) */
  70. #define SDL_FILESYSTEM_DUMMY 1
  71. #endif /* SDL_config_ngage_h_ */