2 #ifndef _LILV_CONFIG_H_
3 #define _LILV_CONFIG_H_
6 #define LILV_VERSION "0.22.1"
14 #define HAVE_CLOCK_GETTIME 1
17 #define LILV_PATH_SEP ";"
18 #define LILV_DIR_SEP "\\"
20 #define LILV_PATH_SEP ":"
21 #define LILV_DIR_SEP "/"
25 #if defined(__APPLE__)
26 #define LILV_DEFAULT_LV2_PATH "~/Library/Audio/Plug-Ins/LV2:/Library/Audio/Plug-Ins/LV2"
27 #elif defined(__EMSCRIPTEN__)
28 #define LILV_DEFAULT_LV2_PATH "~/.lv2:/lv2"
29 #elif defined(__HAIKU__)
30 #define LILV_DEFAULT_LV2_PATH "~/.lv2:/system/add-ons/media/lv2plugins"
32 #define LILV_DEFAULT_LV2_PATH "%APPDATA%\\LV2;%COMMONPROGRAMFILES%\\LV2"
34 #define LILV_DEFAULT_LV2_PATH "~/.lv2:/usr/lib/lv2:/usr/local/lib/lv2"
37 #endif /* _LILV_CONFIG_H_ */