http://bugzilla.rpmfusion.org/show_bug.cgi?id=527
--- Comment #39 from Zarko Pintar <zarko.pintar(a)gmail.com> 2009-04-17 17:44:55 ---
(In reply to comment #36)
(In reply to comment #34)
...
> It's okay, you learn with experience. It will be enough to change the line
> ladspa_path = g_strdup ("/usr/local/lib/ladspa:/usr/lib/ladspa");
> in src/modules/jackrack/plugin_mgr.c to
> ladspa_path = g_strdup
>
("/usr/local/lib/ladspa:/usr/lib/ladspa:/usr/local/lib64/ladspa:/usr/lib64/ladspa");
I would have picked lib64 first on lib64 system (and eventually on lib system
also since the lib64 directory may not exist which is less important than
trying to load a 32bit dso from a 64bit program.
You mean two patches, one for lib and one for lib64 system?
So, first will change:
ladspa_path = g_strdup
("/usr/local/lib/ladspa:/usr/lib/ladspa:/usr/local/lib64/ladspa:/usr/lib64/ladspa");
and second (lib64):
ladspa_path = g_strdup
("/usr/local/lib64/ladspa:/usr/lib64/ladspa:/usr/local/lib/ladspa:/usr/lib/ladspa");
or I miss your thoughts :)
--
Configure bugmail:
http://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
You are the assignee for the bug.