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.

lilv_config.h 821B

12 years ago
12 years ago
12 years ago
1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef _LILV_CONFIG_H_
  2. #define _LILV_CONFIG_H_
  3. #define LILV_INTERNAL
  4. #define LILV_VERSION "0.22.1"
  5. #define HAVE_LV2 1
  6. #define HAVE_SERD 1
  7. #define HAVE_SORD 1
  8. #define HAVE_SRATOM 1
  9. #define HAVE_FILENO 1
  10. #define HAVE_CLOCK_GETTIME 1
  11. #ifdef __WIN32__
  12. #define LILV_PATH_SEP ";"
  13. #define LILV_DIR_SEP "\\"
  14. #else
  15. #define LILV_PATH_SEP ":"
  16. #define LILV_DIR_SEP "/"
  17. #define HAVE_FLOCK 1
  18. #endif
  19. #if defined(__APPLE__)
  20. #define LILV_DEFAULT_LV2_PATH "~/Library/Audio/Plug-Ins/LV2:/Library/Audio/Plug-Ins/LV2"
  21. #elif defined(__HAIKU__)
  22. #define LILV_DEFAULT_LV2_PATH "~/.lv2:/boot/common/add-ons/lv2"
  23. #elif defined(__WIN32__)
  24. #define LILV_DEFAULT_LV2_PATH "%APPDATA%\\LV2;%COMMONPROGRAMFILES%\\LV2"
  25. #else
  26. #define LILV_DEFAULT_LV2_PATH "~/.lv2:/usr/lib/lv2:/usr/local/lib/lv2"
  27. #endif
  28. #endif /* _LILV_CONFIG_H_ */