config.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. /* Define to the library version */
  4. #define ALSOFT_VERSION "${LIB_VERSION}"
  5. /* Define if we have the QT backend */
  6. #define HAVE_QT
  7. /* Define if we have dlfcn.h */
  8. #define HAVE_DLFCN_H
  9. /* Define if we have the stat function */
  10. #define HAVE_STAT
  11. /* Define if we have the powf function */
  12. #define HAVE_POWF
  13. /* Define if we have the sqrtf function */
  14. #define HAVE_SQRTF
  15. /* Define if we have the acosf function */
  16. #define HAVE_ACOSF
  17. /* Define if we have the atanf function */
  18. #define HAVE_ATANF
  19. /* Define if we have the fabsf function */
  20. #define HAVE_FABSF
  21. /* Define if we have the strtof function */
  22. #define HAVE_STRTOF
  23. /* Define if we have stdint.h */
  24. #define HAVE_STDINT_H
  25. /* Define if we have the __int64 type */
  26. #define HAVE___INT64
  27. /* Define to the size of a long int type */
  28. #define SIZEOF_LONG 4
  29. /* Define to the size of a long long int type */
  30. #define SIZEOF_LONG_LONG 8
  31. /* Define to the size of an unsigned int type */
  32. #define SIZEOF_UINT 4
  33. /* Define to the size of a void pointer type */
  34. #define SIZEOF_VOIDP 4
  35. /* Define if we have GCC's destructor attribute */
  36. #define HAVE_GCC_DESTRUCTOR
  37. /* Define if we have GCC's format attribute */
  38. #define HAVE_GCC_FORMAT
  39. /* Define if we have pthread_np.h */
  40. // #define HAVE_PTHREAD_NP_H
  41. /* Define if we have float.h */
  42. #define HAVE_FLOAT_H
  43. /* Define if we have fenv.h */
  44. #define HAVE_FENV_H
  45. /* Define if we have fesetround() */
  46. // #define HAVE_FESETROUND
  47. /* Define if we have _controlfp() */
  48. // #define HAVE__CONTROLFP
  49. /* Define if we have pthread_setschedparam() */
  50. #if defined(_WIN32)
  51. #define HAVE_PTHREAD_SETSCHEDPARAM
  52. #endif
  53. #endif