From fe3536f2350f654d0b2340c14af0c75e2607a973 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 12 Apr 2007 03:39:00 +0000 Subject: Updated Raptor dependency to 1.4.14. Made default write syntax Turtle. git-svn-id: http://svn.drobilla.net/lad/raul@445 a436a847-0d15-0410-975c-d299462d15a1 --- configure.ac | 4 ++-- src/RDFWriter.cpp | 5 ++--- 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#"); } -- cgit v1.2.1