diff options
author | David Robillard <d@drobilla.net> | 2008-10-03 01:10:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-03 01:10:58 +0000 |
commit | 41d5634a6ae1f9b0256801ae5cf692f16e2863ba (patch) | |
tree | 3265f4f2edeb2741b71b90459756d93dc326a25d /src/shared | |
parent | 634cb77a97ebbee02314cfb2c58cd375648ffe01 (diff) | |
download | ingen-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/shared')
-rw-r--r-- | src/shared/LV2Features.hpp | 2 | ||||
-rw-r--r-- | src/shared/LV2URIMap.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/LV2Features.hpp b/src/shared/LV2Features.hpp index 3a174aa2..4eac6daa 100644 --- a/src/shared/LV2Features.hpp +++ b/src/shared/LV2Features.hpp @@ -18,7 +18,7 @@ #ifndef LV2FEATURES_HPP #define LV2FEATURES_HPP -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." #endif diff --git a/src/shared/LV2URIMap.hpp b/src/shared/LV2URIMap.hpp index 35130066..8821c4f6 100644 --- a/src/shared/LV2URIMap.hpp +++ b/src/shared/LV2URIMap.hpp @@ -18,7 +18,7 @@ #ifndef LV2URIMAP_HPP #define LV2URIMAP_HPP -#include CONFIG_H_PATH +#include "config.h" #ifndef HAVE_SLV2 #error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report." #endif |