Audio plugin host https://kx.studio/carla
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.

serd_config.h 474B

12 years ago
12 years ago
123456789101112131415161718192021222324
  1. #ifndef _SERD_CONFIG_H_
  2. #define _SERD_CONFIG_H_
  3. #define SERD_VERSION "0.18.2"
  4. #if defined(__APPLE__)
  5. #define HAVE_FMAX 1
  6. #define HAVE_FILENO 1
  7. #elif defined(__HAIKU__)
  8. #define HAVE_FMAX 1
  9. #define HAVE_FILENO 1
  10. #define HAVE_POSIX_MEMALIGN 1
  11. #elif defined(__WIN32__)
  12. #define HAVE_FMAX 1
  13. #define HAVE_FILENO 1
  14. #else
  15. #define HAVE_FMAX 1
  16. #define HAVE_FILENO 1
  17. #define HAVE_POSIX_MEMALIGN 1
  18. #define HAVE_POSIX_FADVISE 1
  19. #endif
  20. #endif /* _SERD_CONFIG_H_ */