summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lilv_internal.h5
-rw-r--r--src/world.c11
2 files changed, 13 insertions, 3 deletions
diff --git a/src/lilv_internal.h b/src/lilv_internal.h
index 2f95a59..da38d05 100644
--- a/src/lilv_internal.h
+++ b/src/lilv_internal.h
@@ -146,8 +146,9 @@ struct LilvInstancePimpl {
};
typedef struct {
- bool dyn_manifest;
- bool filter_language;
+ bool dyn_manifest;
+ bool filter_language;
+ char* lv2_path;
} LilvOptions;
struct LilvWorldImpl {
diff --git a/src/world.c b/src/world.c
index 0d9c5e3..29c16d0 100644
--- a/src/world.c
+++ b/src/world.c
@@ -178,6 +178,7 @@ lilv_world_free(LilvWorld* world)
sord_world_free(world->world);
world->world = NULL;
+ free(world->opt.lv2_path);
free(world);
}
@@ -196,6 +197,11 @@ lilv_world_set_option(LilvWorld* world,
world->opt.filter_language = lilv_node_as_bool(value);
return;
}
+ } else if (!strcmp(uri, LILV_OPTION_LV2_PATH)) {
+ if (lilv_node_is_string(value)) {
+ world->opt.lv2_path = lilv_strdup(lilv_node_as_string(value));
+ return;
+ }
}
LILV_WARNF("Unrecognized or invalid option `%s'\n", uri);
}
@@ -1031,7 +1037,10 @@ lilv_world_load_plugin_classes(LilvWorld* world)
LILV_API void
lilv_world_load_all(LilvWorld* world)
{
- const char* lv2_path = getenv("LV2_PATH");
+ const char* lv2_path = world->opt.lv2_path;
+ if (!lv2_path) {
+ lv2_path = getenv("LV2_PATH");
+ }
if (!lv2_path) {
lv2_path = LILV_DEFAULT_LV2_PATH;
}