diff -ur a/src/librdf.h b/src/librdf.h
a
|
b
|
|
28 | 28 | |
29 | 29 | #ifndef LIBRDF_OBJC_FRAMEWORK |
30 | 30 | /* raptor */ |
31 | | #include <raptor.h> |
| 31 | #include <raptor2/raptor2.h> |
32 | 32 | /* rasqal: uses raptor */ |
33 | 33 | #include <rasqal.h> |
34 | 34 | /* librdf: uses rasqal and raptor */ |
diff -ur a/src/librdf.h.in b/src/librdf.h.in
a
|
b
|
|
28 | 28 | |
29 | 29 | #ifndef LIBRDF_OBJC_FRAMEWORK |
30 | 30 | /* raptor */ |
31 | | #include <raptor.h> |
| 31 | #include <raptor2/raptor2.h> |
32 | 32 | /* rasqal: uses raptor */ |
33 | 33 | #include <rasqal.h> |
34 | 34 | /* librdf: uses rasqal and raptor */ |
diff -ur a/src/rdf_log.h b/src/rdf_log.h
a
|
b
|
|
30 | 30 | extern "C" { |
31 | 31 | #endif |
32 | 32 | |
33 | | #include <raptor.h> |
| 33 | #include <raptor2/raptor2.h> |
34 | 34 | |
35 | 35 | /** |
36 | 36 | * librdf_log_level: |
diff -ur a/src/rdf_serializer.h b/src/rdf_serializer.h
a
|
b
|
|
36 | 36 | extern "C" { |
37 | 37 | #endif |
38 | 38 | |
39 | | #include <raptor.h> |
| 39 | #include <raptor2/raptor2.h> |
40 | 40 | |
41 | 41 | /* class methods */ |
42 | 42 | REDLAND_API |
diff -ur a/src/rdf_serializer_internal.h b/src/rdf_serializer_internal.h
a
|
b
|
|
32 | 32 | extern "C" { |
33 | 33 | #endif |
34 | 34 | |
35 | | #include <raptor.h> |
| 35 | #include <raptor2/raptor2.h> |
36 | 36 | |
37 | 37 | struct librdf_serializer_factory_s |
38 | 38 | { |
diff -ur a/utils/rdfproc.c b/utils/rdfproc.c
a
|
b
|
|
46 | 46 | #include <unistd.h> |
47 | 47 | |
48 | 48 | #include <redland.h> |
49 | | #include <raptor.h> |
| 49 | #include <raptor2/raptor2.h> |
50 | 50 | |
51 | 51 | #ifdef NEED_OPTIND_DECLARATION |
52 | 52 | extern int optind; |
diff -ur a/utils/redland-virtuoso-test.c b/utils/redland-virtuoso-test.c
a
|
b
|
|
76 | 76 | #include <unistd.h> |
77 | 77 | |
78 | 78 | #include <redland.h> |
79 | | #include <raptor.h> |
| 79 | #include <raptor2/raptor2.h> |
80 | 80 | |
81 | 81 | |
82 | 82 | int add_triple(librdf_world *world, librdf_node *context, librdf_model* model, const char *s, const char *p, const char *o); |