aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-01-18 01:55:56 +0000
committerDavid Robillard <d@drobilla.net>2012-01-18 01:55:56 +0000
commitf0218adcd34c36a1eebf21ea17bb3186cb5748d1 (patch)
tree188653a4b5371ca13696acf97c3cf1d06aefd764
parented9bff267a8f4af578de8674e900c2597c5387a1 (diff)
downloadblop.lv2-f0218adcd34c36a1eebf21ea17bb3186cb5748d1.tar.gz
blop.lv2-f0218adcd34c36a1eebf21ea17bb3186cb5748d1.tar.bz2
blop.lv2-f0218adcd34c36a1eebf21ea17bb3186cb5748d1.zip
Use consistent *_config.h rather than *-config.h.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/blip.lv2@3963 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/include/interpolate.h2
-rw-r--r--src/include/math_func.h2
-rw-r--r--src/include/wavedata.h2
-rw-r--r--src/wavedata.c2
-rw-r--r--wscript2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/include/interpolate.h b/src/include/interpolate.h
index 40ae62c..5fba16a 100644
--- a/src/include/interpolate.h
+++ b/src/include/interpolate.h
@@ -2,7 +2,7 @@
#define blip_interpolate_h
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
-#include "blip-config.h"
+#include "blip_config.h"
#include "math_func.h"
/**
diff --git a/src/include/math_func.h b/src/include/math_func.h
index b3bbe7b..2e4b6e4 100644
--- a/src/include/math_func.h
+++ b/src/include/math_func.h
@@ -7,7 +7,7 @@
#define math_func_h
#include <math.h>
-#include "blip-config.h"
+#include "blip_config.h"
#ifndef M_PI
# define M_PI 3.14159265358979323846 /* pi */
diff --git a/src/include/wavedata.h b/src/include/wavedata.h
index cc3e3b6..9bd313c 100644
--- a/src/include/wavedata.h
+++ b/src/include/wavedata.h
@@ -21,7 +21,7 @@
#define blip_wavedata_h
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
-#include "blip-config.h"
+#include "blip_config.h"
#include "math_func.h"
#include "interpolate.h"
#include "common.h"
diff --git a/src/wavedata.c b/src/wavedata.c
index de6b0d8..ff955a1 100644
--- a/src/wavedata.c
+++ b/src/wavedata.c
@@ -25,7 +25,7 @@
#include <stdlib.h>
#include <stdio.h>
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
-#include "blip-config.h"
+#include "blip_config.h"
#include "wavedata.h"
int
diff --git a/wscript b/wscript
index f61e2f2..aa19f62 100644
--- a/wscript
+++ b/wscript
@@ -34,7 +34,7 @@ def configure(conf):
define_name = 'HAVE_SINF',
mandatory = False)
- conf.write_config_header('blip-config.h', remove=False)
+ conf.write_config_header('blip_config.h', remove=False)
# Set env['pluginlib_PATTERN']
pat = conf.env['cshlib_PATTERN']