On Thu, 2007-12-13 at 15:18 +0100, Lars Luthman
wrote:
On Thu, 2007-12-13 at 09:03 +0100, ciwe(a)gmx.de
wrote:
Hello,
I've installed the slv2 package on my machine but can't run any plugins?
When I start
lv2_jack_host
get lots of known plugins URI's like
http://ll-plugins.nongnu.org/lv2/dev/klaviatur/0.0.0
which I want to run.
But when I start I get
lv2_jack_host
http://ll-plugins.nongnu.org/lv2/dev/klaviatur/0.0.0
Failed to find plugin
http://ll-plugins.nongnu.org/lv2/dev/klaviatur/0.0.0.
This is the way you're supposed to run it, but for some reason it won't
find the plugin. I looked at the code and it seems like it tries to do a
binary search in an unsorted array, the attached patch should fix it.
That array is sorted (I'm not retarded ;] ), guaranteed by the ORDER BY
at world.c:477 (slv2_plugins_get_by_uri must take log2(n) time, not n)
What version of redland/raptor/rasqal?
I printed the URIs in that function and they weren't sorted on my
system. I'm using Raptor 1.4.16 and Rasqal 0.9.15.
--ll