Hi Chuck,<br><br>I&#39;ve only recently started using LV2, and decided to document exactly what I done to get it all running.<br>Here&#39;s the link to the whole article: <a href="http://harryhaaren.blogspot.com/2011/05/lv2-new-host-lib-lilv-newbies-guid-to.html">http://harryhaaren.blogspot.com/2011/05/lv2-new-host-lib-lilv-newbies-guid-to.html</a><br>
<br>Here&#39;s the except you want:<br><br><div style="margin-left: 40px;">
If you get the following errors:<br>
Checking for header lv2/<a href="http://lv2plug.in/ns/lv2core/lv2.h">lv2plug.in/ns/lv2core/lv2.h</a>             : no <br>
Checking for header lv2/<a href="http://lv2plug.in/ns/ext/event/event.h">lv2plug.in/ns/ext/event/event.h</a>         : no <br>
Checking for header lv2/<a href="http://lv2plug.in/ns/ext/event/event-helpers.h">lv2plug.in/ns/ext/event/event-helpers.h</a> : no <br>
Checking for header lv2/<a href="http://lv2plug.in/ns/ext/uri-map/uri-map.h">lv2plug.in/ns/ext/uri-map/uri-map.h</a>     : no<br>
<br>
Then this is what you do:<br>
1. Direct your browser to    <a href="http://lv2plug.in/spec/">http://lv2plug.in/spec/</a><br>
2. Grab <a href="http://lv2plug.in/spec/lv2core-4.0.tar.bz2">lv2core</a>,<a href="http://lv2plug.in/spec/lv2-event-1.0.tar.gz">lv2-event</a>, and <a href="http://lv2plug.in/spec/lv2-uri-map-1.0.tar.gz">lv2-uri-map</a>.<br>

3. Untar lv2core, ./waf configure, ./waf, ./waf install it  (the first one should be fixed now)<br>
4. Bop open a terminal, cd /usr/include/lv2/<a href="http://lv2plug.in/ns/">lv2plug.in/ns/</a><br>
5. sudo mkdir ext<br>
6. Copy the event folder into ext, and copy the uri-map folder in too.<br>
7. *CHECK THE DIRECTORY STRUCTURE!!!* the output of ./waf configure 
tells you *exactly* where its looking for the files, *PUT THEM THERE*. 
Can&#39;t stress this enough. Use your brain &amp; figure out what&#39;s not 
where its meant to be<br>
<br>
./waf configure should print out yes yes yes yes yes yes to all dependencies now, so<br>
./waf build,<br></div><br>HTH! -Harry<br>