diff options
author | David Robillard <d@drobilla.net> | 2008-03-12 00:11:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-03-12 00:11:17 +0000 |
commit | 49ddf1af831493cb34a44c35781f3323916314af (patch) | |
tree | 957277e4b3928cae3c715b01ac102e24a2ee7ea4 /utils | |
parent | b18d8d7790072058940ddbab21afb9c0e3da7f95 (diff) | |
download | lilv-49ddf1af831493cb34a44c35781f3323916314af.tar.gz lilv-49ddf1af831493cb34a44c35781f3323916314af.tar.bz2 lilv-49ddf1af831493cb34a44c35781f3323916314af.zip |
Sorta workingish chicken scheme bindings.
git-svn-id: http://svn.drobilla.net/lad/slv2@1164 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ladspa2lv2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/ladspa2lv2.c b/utils/ladspa2lv2.c index 576f66d..023c40d 100644 --- a/utils/ladspa2lv2.c +++ b/utils/ladspa2lv2.c @@ -256,8 +256,10 @@ add_port_range(LADSPA_Descriptor* plugin, void write_lv2_turtle(LADSPA_Descriptor* descriptor, const char* plugin_uri, const char* filename) { - librdf_storage* storage = librdf_new_storage(world, - "hashes", NULL, "hash-type='memory'"); + //librdf_storage* storage = librdf_new_storage(world, + // "hashes", NULL, "hash-type='memory'"); + librdf_storage* storage = librdf_new_storage(world, "memory", NULL, NULL); + librdf_model* model = librdf_new_model(world, storage, NULL); librdf_serializer* serializer = librdf_new_serializer(world, "turtle", NULL, NULL); |