diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | serd/serd.h | 9 | ||||
-rw-r--r-- | src/env.c | 14 | ||||
-rw-r--r-- | wscript | 8 |
4 files changed, 28 insertions, 4 deletions
@@ -4,6 +4,7 @@ serd (UNRELEASED) unstable; urgency=low * Avoid writing illegal Turtle names as a result of URI qualifying * Gracefully handle NULL reader sinks * Add serd_strerror + * Add serd_env_set_prefix_from_strings for convenience * Fix erroneously equal SERD_ERR_BAD_SYNTAX and SERD_ERR_BAD_ARG * Add ability to build static library diff --git a/serd/serd.h b/serd/serd.h index 583c6eec..0651d734 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -472,6 +472,15 @@ serd_env_set_prefix(SerdEnv* env, const SerdNode* uri); /** + Set a namespace prefix. +*/ +SERD_API +SerdStatus +serd_env_set_prefix_from_strings(SerdEnv* env, + const uint8_t* name, + const uint8_t* uri); + +/** Qualify @c uri into a CURIE if possible. */ SERD_API @@ -152,6 +152,20 @@ serd_env_set_prefix(SerdEnv* env, return SERD_SUCCESS; } +SERD_API +SerdStatus +serd_env_set_prefix_from_strings(SerdEnv* env, + const uint8_t* name, + const uint8_t* uri) +{ + const SerdNode name_node = serd_node_from_string(SERD_LITERAL, name); + const SerdNode uri_node = serd_node_from_string(SERD_URI, uri); + + SerdStatus ret = serd_env_set_prefix(env, &name_node, &uri_node); + + return ret; +} + static inline bool is_nameStartChar(const uint8_t c) { @@ -9,7 +9,7 @@ from waflib.extras import autowaf as autowaf import waflib.Logs as Logs, waflib.Options as Options # Version of this package (even if built as a child) -SERD_VERSION = '0.4.5' +SERD_VERSION = '0.5.0' SERD_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) @@ -40,12 +40,12 @@ def options(opt): help="Build static library") def configure(conf): + conf.load('compiler_c') + autowaf.configure(conf) - conf.line_just = 13 autowaf.display_header('Serd Configuration') - conf.load('compiler_c') - conf.env.append_value('CFLAGS', '-std=c99') + conf.env.append_unique('CFLAGS', '-std=c99') conf.env['BUILD_TESTS'] = Options.options.build_tests conf.env['BUILD_UTILS'] = not Options.options.no_utils |