summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
-rw-r--r--src/RDFWriter.cpp5
2 files changed, 4 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index e567dbb..406a081 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,8 +87,8 @@ AC_ARG_ENABLE(raptor,
[AS_HELP_STRING(--enable-raptor, [Include Raptor (RDF) serialization support (yes)])],
[ if test x$enable_raptor = xno ; then build_raptor=no ; fi ])
if test "$build_raptor" = "yes"; then
- PKG_CHECK_MODULES(RAPTOR, raptor >= 1.4.0, [],
- AC_MSG_ERROR([RDF support requires raptor (>= 1.4.0)]))
+ PKG_CHECK_MODULES(RAPTOR, raptor >= 1.4.14, [],
+ AC_MSG_ERROR([RDF support requires raptor (>= 1.4.14)]))
fi
AM_CONDITIONAL(WITH_RAPTOR, [test "$build_raptor" = "yes"])
diff --git a/src/RDFWriter.cpp b/src/RDFWriter.cpp
index 6a69765..d6a33a4 100644
--- a/src/RDFWriter.cpp
+++ b/src/RDFWriter.cpp
@@ -26,8 +26,8 @@ using namespace std;
namespace Raul {
-static const char* const RDF_LANG = "rdfxml-abbrev";
-//static const char* const RDF_LANG = "turtle";
+//static const char* const RDF_LANG = "rdfxml-abbrev";
+static const char* const RDF_LANG = "turtle";
RDFWriter::RDFWriter()
@@ -36,7 +36,6 @@ RDFWriter::RDFWriter()
, _next_blank_id(0)
{
add_prefix("rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
- //add_prefix("rdfs", "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
}