config.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. /* Define to the library version */
  4. #define ALSOFT_VERSION "1.12.854"
  5. /* Define if we have the Android backend */
  6. //#define HAVE_ANDROID 1
  7. #define HAVE_OPENSL 1
  8. /* Define if we have the ALSA backend */
  9. /* #cmakedefine HAVE_ALSA */
  10. /* Define if we have the OSS backend */
  11. /* #cmakedefine HAVE_OSS */
  12. /* Define if we have the Solaris backend */
  13. /* #cmakedefine HAVE_SOLARIS */
  14. /* Define if we have the DSound backend */
  15. /* #cmakedefine HAVE_DSOUND */
  16. /* Define if we have the Wave Writer backend */
  17. /* #cmakedefine HAVE_WAVE */
  18. /* Define if we have the Windows Multimedia backend */
  19. /* #cmakedefine HAVE_WINMM */
  20. /* Define if we have the PortAudio backend */
  21. /* #cmakedefine HAVE_PORTAUDIO */
  22. /* Define if we have the PulseAudio backend */
  23. /* #cmakedefine HAVE_PULSEAUDIO */
  24. /* Define if we have dlfcn.h */
  25. #define HAVE_DLFCN_H 1
  26. /* Define if we have the stat function */
  27. #define HAVE_STAT 1
  28. /* Define if we have the powf function */
  29. #define HAVE_POWF 1
  30. /* Define if we have the sqrtf function */
  31. #define HAVE_SQRTF 1
  32. /* Define if we have the acosf function */
  33. #define HAVE_ACOSF 1
  34. /* Define if we have the atanf function */
  35. #define HAVE_ATANF 1
  36. /* Define if we have the fabsf function */
  37. #define HAVE_FABSF 1
  38. /* Define if we have the strtof function */
  39. #define HAVE_STRTOF 1
  40. /* Define if we have stdint.h */
  41. #define HAVE_STDINT_H 1
  42. /* Define if we have the __int64 type */
  43. /* #cmakedefine HAVE___INT64 */
  44. /* Define to the size of a long int type */
  45. #define SIZEOF_LONG 4
  46. /* Define to the size of a long long int type */
  47. #define SIZEOF_LONG_LONG 8
  48. /* Define to the size of an unsigned int type */
  49. #define SIZEOF_UINT 4
  50. /* Define to the size of a void pointer type */
  51. #define SIZEOF_VOIDP 4
  52. /* Define if we have GCC's destructor attribute */
  53. #define HAVE_GCC_DESTRUCTOR 1
  54. /* Define if we have GCC's format attribute */
  55. #define HAVE_GCC_FORMAT 1
  56. /* Define if we have pthread_np.h */
  57. /* #cmakedefine HAVE_PTHREAD_NP_H */
  58. /* Define if we have float.h */
  59. /* #cmakedefine HAVE_FLOAT_H */
  60. /* Define if we have fenv.h */
  61. #define HAVE_FENV_H 1
  62. /* Define if we have fesetround() */
  63. /* #cmakedefine HAVE_FESETROUND */
  64. /* Define if we have _controlfp() */
  65. /* #cmakedefine HAVE__CONTROLFP */
  66. /* Define if we have pthread_setschedparam() */
  67. #define HAVE_PTHREAD_SETSCHEDPARAM 1
  68. #endif