diff options
-rw-r--r-- | src/jalv.c | 2 | ||||
-rw-r--r-- | src/jalv_console.c | 2 | ||||
-rw-r--r-- | src/state.c | 2 | ||||
-rw-r--r-- | wscript | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -27,8 +27,8 @@ #include <sys/types.h> #include <unistd.h> +#include "jalv_config.h" #include "jalv_internal.h" -#include "jalv-config.h" #include <jack/jack.h> #include <jack/midiport.h> diff --git a/src/jalv_console.c b/src/jalv_console.c index a70e955..04d7c78 100644 --- a/src/jalv_console.c +++ b/src/jalv_console.c @@ -18,7 +18,7 @@ #include <stdbool.h> #include <stdio.h> -#include "jalv-config.h" +#include "jalv_config.h" #include "jalv_internal.h" static int diff --git a/src/state.c b/src/state.c index 3ef4d3d..0d3953b 100644 --- a/src/state.c +++ b/src/state.c @@ -32,7 +32,7 @@ #include "lilv/lilv.h" -#include "jalv-config.h" +#include "jalv_config.h" #include "jalv_internal.h" #define NS_ATOM "http://lv2plug.in/ns/ext/atom#" @@ -66,7 +66,7 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-std=c99') autowaf.define(conf, 'JALV_VERSION', JALV_VERSION) - conf.write_config_header('jalv-config.h', remove=False) + conf.write_config_header('jalv_config.h', remove=False) autowaf.display_msg(conf, "LV2 State support", conf.is_defined('HAVE_LV2_STATE')) |