config.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /* API declaration export attribute */
  2. #define AL_API __attribute__((visibility("protected")))
  3. #define ALC_API __attribute__((visibility("protected")))
  4. /* Define to the library version */
  5. #define ALSOFT_VERSION "1.15.1"
  6. #ifdef IN_IDE_PARSER
  7. /* KDevelop's parser doesn't recognize the C99-standard restrict keyword, but
  8. * recent versions (at least 4.5.1) do recognize GCC's __restrict. */
  9. #define restrict __restrict
  10. #endif
  11. /* Define any available alignment declaration */
  12. #define ALIGN(x) __attribute__((aligned(x)))
  13. /* Define if we have the C11 aligned_alloc function */
  14. /* #undef HAVE_ALIGNED_ALLOC */
  15. /* Define if we have the posix_memalign function */
  16. /* #undef HAVE_POSIX_MEMALIGN */
  17. /* Define if we have the _aligned_malloc function */
  18. /* #undef HAVE__ALIGNED_MALLOC */
  19. /* Define if we have SSE CPU extensions */
  20. /* #undef HAVE_SSE */
  21. /* Define if we have ARM Neon CPU extensions */
  22. #undef HAVE_NEON
  23. /* Define if we have FluidSynth support */
  24. /* #undef HAVE_FLUIDSYNTH */
  25. /* Define if we have the ALSA backend */
  26. /* #undef HAVE_ALSA */
  27. /* Define if we have the OSS backend */
  28. /* #undef HAVE_OSS */
  29. /* Define if we have the Solaris backend */
  30. /* #undef HAVE_SOLARIS */
  31. /* Define if we have the SndIO backend */
  32. /* #undef HAVE_SNDIO */
  33. /* Define if we have the QSA backend */
  34. /* #undef HAVE_QSA */
  35. /* Define if we have the MMDevApi backend */
  36. /* #undef HAVE_MMDEVAPI */
  37. /* Define if we have the DSound backend */
  38. /* #undef HAVE_DSOUND */
  39. /* Define if we have the Windows Multimedia backend */
  40. /* #undef HAVE_WINMM */
  41. /* Define if we have the PortAudio backend */
  42. /* #undef HAVE_PORTAUDIO */
  43. /* Define if we have the PulseAudio backend */
  44. /* #undef HAVE_PULSEAUDIO */
  45. /* Define if we have the CoreAudio backend */
  46. /* #undef HAVE_COREAUDIO */
  47. /* Define if we have the OpenSL backend */
  48. #define HAVE_OPENSL
  49. /* Define if we have the Wave Writer backend */
  50. #define HAVE_WAVE
  51. /* Define if we have the stat function */
  52. #define HAVE_STAT
  53. /* Define if we have the lrintf function */
  54. #define HAVE_LRINTF
  55. /* Define if we have the strtof function */
  56. /* #undef HAVE_STRTOF */
  57. /* Define if we have the __int64 type */
  58. /* #undef HAVE___INT64 */
  59. /* Define to the size of a long int type */
  60. #define SIZEOF_LONG 4
  61. /* Define to the size of a long long int type */
  62. #define SIZEOF_LONG_LONG 8
  63. /* Define if we have GCC's destructor attribute */
  64. #define HAVE_GCC_DESTRUCTOR
  65. /* Define if we have GCC's format attribute */
  66. #define HAVE_GCC_FORMAT
  67. /* Define if we have stdint.h */
  68. #define HAVE_STDINT_H
  69. /* Define if we have windows.h */
  70. /* #undef HAVE_WINDOWS_H */
  71. /* Define if we have dlfcn.h */
  72. #define HAVE_DLFCN_H
  73. /* Define if we have pthread_np.h */
  74. /* #undef HAVE_PTHREAD_NP_H */
  75. /* Define if we have xmmintrin.h */
  76. /* #undef HAVE_XMMINTRIN_H */
  77. /* Define if we have arm_neon.h */
  78. /* #undef HAVE_ARM_NEON_H */
  79. /* Define if we have malloc.h */
  80. #define HAVE_MALLOC_H
  81. /* Define if we have strings.h */
  82. #define HAVE_STRINGS_H
  83. /* Define if we have cpuid.h */
  84. /* #undef HAVE_CPUID_H */
  85. /* Define if we have sys/sysconf.h */
  86. #define HAVE_SYS_SYSCONF_H
  87. /* Define if we have guiddef.h */
  88. /* #undef HAVE_GUIDDEF_H */
  89. /* Define if we have initguid.h */
  90. /* #undef HAVE_INITGUID_H */
  91. /* Define if we have ieeefp.h */
  92. /* #undef HAVE_IEEEFP_H */
  93. /* Define if we have float.h */
  94. #define HAVE_FLOAT_H
  95. /* Define if we have fenv.h */
  96. #define HAVE_FENV_H
  97. /* Define if we have _controlfp() */
  98. /* #undef HAVE__CONTROLFP */
  99. /* Define if we have __control87_2() */
  100. /* #undef HAVE___CONTROL87_2 */
  101. /* Define if we have pthread_setschedparam() */
  102. #define HAVE_PTHREAD_SETSCHEDPARAM
  103. /* Define if we have pthread_setname_np() */
  104. /* #undef HAVE_PTHREAD_SETNAME_NP */
  105. /* Define if we have pthread_set_name_np() */
  106. /* #undef HAVE_PTHREAD_SET_NAME_NP */