summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-16 01:18:03 +0000
committerDavid Robillard <d@drobilla.net>2010-10-16 01:18:03 +0000
commit4cbb122b66913bf6e51d725ee976fabf91dc79a0 (patch)
tree8d3fd60a4fc8c19bdfb8419d82f99a0f7a69dc7b
parentb344c5c8dc089e3ea73d5fce41e11ffc59e20516 (diff)
downloadlilv-4cbb122b66913bf6e51d725ee976fabf91dc79a0.tar.gz
lilv-4cbb122b66913bf6e51d725ee976fabf91dc79a0.tar.bz2
lilv-4cbb122b66913bf6e51d725ee976fabf91dc79a0.zip
Use #include <redland.h> over #include <librdf.h> (since redland 1.0.11 broke this).
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2628 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--slv2/world.h2
-rw-r--r--src/collections.c2
-rw-r--r--src/plugin.c2
-rw-r--r--src/plugins.c2
-rw-r--r--src/query.c2
-rw-r--r--src/slv2_internal.h2
-rw-r--r--src/world.c2
-rw-r--r--test/slv2_test.c2
-rw-r--r--utils/ladspa2lv2.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/slv2/world.h b/slv2/world.h
index 8b6ec1f..a241ac8 100644
--- a/slv2/world.h
+++ b/slv2/world.h
@@ -23,7 +23,7 @@
extern "C" {
#endif
-#include <librdf.h>
+#include <redland.h>
#include "slv2/collections.h"
/** \defgroup slv2_world Global library state
diff --git a/src/collections.c b/src/collections.c
index 0ffa3bb..0c21a42 100644
--- a/src/collections.c
+++ b/src/collections.c
@@ -20,7 +20,7 @@
#include <string.h>
#include <limits.h>
-#include <librdf.h>
+#include <redland.h>
#include "slv2/collections.h"
#include "slv2/pluginclass.h"
#include "slv2/pluginui.h"
diff --git a/src/plugin.c b/src/plugin.c
index 6e4a28a..6cd637c 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -25,7 +25,7 @@
#ifdef SLV2_DYN_MANIFEST
#include <dlfcn.h>
#endif
-#include <librdf.h>
+#include <redland.h>
#include "slv2/types.h"
#include "slv2/collections.h"
#include "slv2/plugin.h"
diff --git a/src/plugins.c b/src/plugins.c
index fad356f..2d47ffb 100644
--- a/src/plugins.c
+++ b/src/plugins.c
@@ -22,7 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
-#include <librdf.h>
+#include <redland.h>
#include "slv2/types.h"
#include "slv2/plugin.h"
#include "slv2/collections.h"
diff --git a/src/query.c b/src/query.c
index f3b6472..58e5f80 100644
--- a/src/query.c
+++ b/src/query.c
@@ -18,7 +18,7 @@
#define _XOPEN_SOURCE 500
#include <assert.h>
-#include <librdf.h>
+#include <redland.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index 3712cd8..8feafdd 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -29,7 +29,7 @@ extern "C" {
#include <stddef.h>
#include <stdlib.h>
#include <inttypes.h>
-#include <librdf.h>
+#include <redland.h>
#include "slv2/types.h"
#include "slv2/lv2_ui.h"
#ifdef SLV2_DYN_MANIFEST
diff --git a/src/world.c b/src/world.c
index 0b54f19..130dc94 100644
--- a/src/world.c
+++ b/src/world.c
@@ -24,7 +24,7 @@
#ifdef SLV2_DYN_MANIFEST
#include <dlfcn.h>
#endif
-#include <librdf.h>
+#include <redland.h>
#include "slv2/types.h"
#include "slv2/world.h"
#include "slv2/slv2.h"
diff --git a/test/slv2_test.c b/test/slv2_test.c
index 41b00ff..1595c9e 100644
--- a/test/slv2_test.c
+++ b/test/slv2_test.c
@@ -24,7 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
-#include <librdf.h>
+#include <redland.h>
#include <sys/stat.h>
#include <limits.h>
#include <float.h>
diff --git a/utils/ladspa2lv2.c b/utils/ladspa2lv2.c
index be142bc..5d7a3b6 100644
--- a/utils/ladspa2lv2.c
+++ b/utils/ladspa2lv2.c
@@ -24,7 +24,7 @@
#include <float.h>
#include <math.h>
#include <dlfcn.h>
-#include <librdf.h>
+#include <redland.h>
#include "ladspa.h"
#define U(x) ((const unsigned char*)(x))