summaryrefslogtreecommitdiffstats
path: root/src/module
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-03 01:10:58 +0000
committerDavid Robillard <d@drobilla.net>2008-10-03 01:10:58 +0000
commit41d5634a6ae1f9b0256801ae5cf692f16e2863ba (patch)
tree3265f4f2edeb2741b71b90459756d93dc326a25d /src/module
parent634cb77a97ebbee02314cfb2c58cd375648ffe01 (diff)
downloadingen-41d5634a6ae1f9b0256801ae5cf692f16e2863ba.tar.gz
ingen-41d5634a6ae1f9b0256801ae5cf692f16e2863ba.tar.bz2
ingen-41d5634a6ae1f9b0256801ae5cf692f16e2863ba.zip
Support building locally against header-only libraries in autowaf.
Remove CONFIG_H_PATH define and replace with just "config.h" (define messed up dependency tracking). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1600 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/module')
-rw-r--r--src/module/World.hpp2
-rw-r--r--src/module/global.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/module/World.hpp b/src/module/World.hpp
index dbbac2bd..443c6d01 100644
--- a/src/module/World.hpp
+++ b/src/module/World.hpp
@@ -18,7 +18,7 @@
#ifndef INGEN_WORLD_HPP
#define INGEN_WORLD_HPP
-#include CONFIG_H_PATH
+#include "config.h"
#include <string>
#include <glibmm/module.h>
diff --git a/src/module/global.cpp b/src/module/global.cpp
index c78f9fc3..d03ed260 100644
--- a/src/module/global.cpp
+++ b/src/module/global.cpp
@@ -20,7 +20,7 @@
#include "global.hpp"
#include "World.hpp"
-#include CONFIG_H_PATH
+#include "config.h"
#ifdef HAVE_SLV2
#include <slv2/slv2.h>
#endif