diff options
-rw-r--r-- | hosts/lv2_jack_host.c | 2 | ||||
-rw-r--r-- | src/world.c | 2 | ||||
-rw-r--r-- | utils/lv2_inspect.c | 2 | ||||
-rw-r--r-- | utils/lv2_list.c | 2 | ||||
-rw-r--r-- | wscript | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index ea97d5d..1beef0e 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -16,7 +16,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "wafconfig.h" +#include "slv2-config.h" #define _XOPEN_SOURCE 500 #include <stdio.h> diff --git a/src/world.c b/src/world.c index cd85e8e..88a1f63 100644 --- a/src/world.c +++ b/src/world.c @@ -16,7 +16,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "wafconfig.h" +#include "slv2-config.h" #define _XOPEN_SOURCE 500 #include <string.h> diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c index 2bb13a4..33043dd 100644 --- a/utils/lv2_inspect.c +++ b/utils/lv2_inspect.c @@ -16,7 +16,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "wafconfig.h" +#include "slv2-config.h" #include <stdlib.h> #include <stdio.h> #include <string.h> diff --git a/utils/lv2_list.c b/utils/lv2_list.c index 6860dcf..cefd24e 100644 --- a/utils/lv2_list.c +++ b/utils/lv2_list.c @@ -16,7 +16,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "wafconfig.h" +#include "slv2-config.h" #include <stdio.h> #include <string.h> #include "slv2/slv2.h" @@ -52,7 +52,7 @@ def configure(conf): autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.107.0', mandatory=False) conf.env.append_value('CCFLAGS', '-std=c99') conf.define('SLV2_VERSION', SLV2_VERSION) - conf.write_config_header('wafconfig.h') + conf.write_config_header('slv2-config.h') conf.env['USE_JACK'] = conf.env['HAVE_JACK'] and not Options.options.no_jack conf.env['BUILD_TESTS'] = Options.options.build_tests |