On Wed, 2011-05-25 at 14:10 +0200, Stefano D'Angelo wrote:
2011/5/25 Ralf Mattes <rm(a)mh-freiburg.de>de>:
> On Wed, 25 May 2011 00:51:36 -0400, David Robillard wrote:
>
>> Hi all,
>>
>> I have released my new stack of libraries for implementing LV2 in hosts:
[...]
Thanks a lot
for saving us from the horrors of redland.
But: I just did a fresh svn checkout of
http://svn.drobilla.net/lad/trunk
and tried a top-level build (./waf configure && ./waf build) which fails
miserably
complaining about:
Waf: Entering directory `/Development/drobillard/build'
[ 8/434] cxx: plugins/lolep.lv2/src/LV2Plugin.cpp ->
build/plugins/lolep.lv2/src/LV2Plugin.cpp.5.o
[ 9/434] cxx: plugins/lolep.lv2/src/arith.cpp ->
build/plugins/lolep.lv2/src/arith.cpp.5.o
../plugins/lolep.lv2/src/arith.cpp:20:45: error: lv2/lv2plug.in/ns/ext/atom/atom.h: No
such file or directory
../plugins/lolep.lv2/src/arith.cpp:21:53: error:
lv2/lv2plug.in/ns/ext/contexts/contexts.h: No such file or directory
../plugins/lolep.lv2/src/arith.cpp:22:51: error: lv2/lv2plug.in/ns/ext/uri-map/uri-map.h:
No such file or directory
... and so on. Is this expected?
You need LV2 core >= 4.0 to be installed, as well as the atom,
context, URI map etc. extensions, and you need to run lv2config to
automatically create links to those headers (including the
lv2/lv2plug.in/whatever directories) in either your system-wide
include directory (e.g., /usr/include) or somewhere else at your
choice.
Install the LV2 SVN repository at
http://lv2plug.in/repo and run
lv2config afterwards.
Note this stuff is only needed by other (unreleased) software in my
repository, the projects mentioned in this announcement only require
lv2core.
-dr