diff options
author | David Robillard <d@drobilla.net> | 2012-01-18 17:29:23 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-18 17:29:23 +0000 |
commit | cbe271a1b90734fe81c0fd8121b9aa37dcc65632 (patch) | |
tree | 58987d197c0a89fd090087b3c23f3eccbcd1ef04 | |
parent | 3198975c8e0de160d7b292de040c0919ab7d3b2d (diff) | |
download | sord-cbe271a1b90734fe81c0fd8121b9aa37dcc65632.tar.gz sord-cbe271a1b90734fe81c0fd8121b9aa37dcc65632.tar.bz2 sord-cbe271a1b90734fe81c0fd8121b9aa37dcc65632.zip |
Use consistent *_config.h rather than *-config.h.
git-svn-id: http://svn.drobilla.net/sord/trunk@198 3d64ff67-21c5-427c-a301-fe4f08042e5a
-rw-r--r-- | src/sord.c | 2 | ||||
-rw-r--r-- | src/sordi.c | 2 | ||||
-rw-r--r-- | src/syntax.c | 2 | ||||
-rw-r--r-- | wscript | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -25,7 +25,7 @@ #include "zix/hash.h" #include "zix/tree.h" -#include "sord-config.h" +#include "sord_config.h" #include "sord_internal.h" #define SORD_LOG(prefix, ...) fprintf(stderr, "[Sord::" prefix "] " __VA_ARGS__) diff --git a/src/sordi.c b/src/sordi.c index 51c6b32..9654aa4 100644 --- a/src/sordi.c +++ b/src/sordi.c @@ -20,7 +20,7 @@ #include "serd/serd.h" #include "sord/sord.h" -#include "sord-config.h" +#include "sord_config.h" typedef struct { SerdWriter* writer; diff --git a/src/syntax.c b/src/syntax.c index 67fd31e..962d6e4 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -20,7 +20,7 @@ #include "serd/serd.h" -#include "sord-config.h" +#include "sord_config.h" #include "sord_internal.h" typedef struct { @@ -72,7 +72,7 @@ def configure(conf): autowaf.define(conf, 'SORD_DEBUG_WRITE', 1) autowaf.define(conf, 'SORD_VERSION', SORD_VERSION) - conf.write_config_header('sord-config.h', remove=False) + conf.write_config_header('sord_config.h', remove=False) def fallback(var, val): conf.env[var] = val |