diff options
author | David Robillard <d@drobilla.net> | 2008-10-20 00:25:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-20 00:25:32 +0000 |
commit | 0f31f44094af436984d1b82e86443f1151c3e8bc (patch) | |
tree | 704ce141fe56ca6c6a0c177274584f1a21c27fbb /hosts | |
parent | a09cd232854bf608269fbe06814f32d788fb159d (diff) | |
download | lilv-0f31f44094af436984d1b82e86443f1151c3e8bc.tar.gz lilv-0f31f44094af436984d1b82e86443f1151c3e8bc.tar.bz2 lilv-0f31f44094af436984d1b82e86443f1151c3e8bc.zip |
Actually use installation location variables for everything.
Add ./waf configure --build which builds a (soon-to-be) relocatable independent bundle with all data/progs/libs in it (OSX bundle directory structure, should be possible to make a 'real' OSX bundle out of this...).
Fix include paths to use "" and definitely build against local versions of libraries.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1689 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/lv2_jack_host.c | 2 | ||||
-rw-r--r-- | hosts/lv2_simple_jack_host.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index 4703ac8..b3548b8 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -23,9 +23,9 @@ #include <stdlib.h> #include <string.h> #include <math.h> -#include <slv2/slv2.h> #include <jack/jack.h> #include <jack/midiport.h> +#include "slv2/slv2.h" #include "lv2_uri_map.h" #include "lv2_event.h" #include "lv2_event_helpers.h" diff --git a/hosts/lv2_simple_jack_host.c b/hosts/lv2_simple_jack_host.c index 13ce5fa..32c852c 100644 --- a/hosts/lv2_simple_jack_host.c +++ b/hosts/lv2_simple_jack_host.c @@ -20,8 +20,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <slv2/slv2.h> #include <jack/jack.h> +#include "slv2/slv2.h" /** This program's data */ |