diff options
author | David Robillard <d@drobilla.net> | 2015-01-18 17:19:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-01-18 17:19:00 +0000 |
commit | 7e1c8329cf53668da157c71e7c48a05d385b616d (patch) | |
tree | 19c6eff865a9a388ed89e9f55a6fd6687ca84a7a /src/world.c | |
parent | 5bd952509bf2d13ce075b9544bf0a498ebd44e5d (diff) | |
download | lilv-7e1c8329cf53668da157c71e7c48a05d385b616d.tar.gz lilv-7e1c8329cf53668da157c71e7c48a05d385b616d.tar.bz2 lilv-7e1c8329cf53668da157c71e7c48a05d385b616d.zip |
Remove LILV_NEW_LV2 define.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5522 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/world.c b/src/world.c index 460ef7a..8a5182d 100644 --- a/src/world.c +++ b/src/world.c @@ -42,9 +42,7 @@ lilv_world_new(void) world->loaded_files = zix_tree_new( false, lilv_resource_node_cmp, NULL, (ZixDestroyFunc)lilv_node_free); -#ifdef LILV_NEW_LV2 world->libs = zix_tree_new(false, lilv_lib_compare, NULL, NULL); -#endif #define NS_DCTERMS "http://purl.org/dc/terms/" #define NS_DYNMAN "http://lv2plug.in/ns/ext/dynmanifest#" @@ -136,10 +134,8 @@ lilv_world_free(LilvWorld* world) zix_tree_free((ZixTree*)world->loaded_files); world->loaded_files = NULL; -#ifdef LILV_NEW_LV2 zix_tree_free((ZixTree*)world->libs); world->libs = NULL; -#endif zix_tree_free((ZixTree*)world->plugin_classes); world->plugin_classes = NULL; |