Callum Lerwick 5f03bcc
diff -ur rosegarden-1.5.1/src/sound/DSSIPluginFactory.cpp rosegarden.patched/src/sound/DSSIPluginFactory.cpp
Callum Lerwick 5f03bcc
--- rosegarden-1.5.1/src/sound/DSSIPluginFactory.cpp	2007-03-13 07:50:32.000000000 -0500
Callum Lerwick 5f03bcc
+++ rosegarden.patched/src/sound/DSSIPluginFactory.cpp	2007-05-02 16:53:10.000000000 -0500
Callum Lerwick 5f03bcc
@@ -243,7 +243,7 @@
Callum Lerwick 5f03bcc
         path = cpath;
Callum Lerwick 5f03bcc
 
Callum Lerwick 5f03bcc
     if (path == "") {
Callum Lerwick 5f03bcc
-        path = "/usr/local/lib/dssi:/usr/lib/dssi";
Callum Lerwick 5f03bcc
+        path = "/usr/local/lib64/dssi:/usr/lib64/dssi";
Callum Lerwick 5f03bcc
         char *home = getenv("HOME");
Callum Lerwick 5f03bcc
         if (home)
Callum Lerwick 5f03bcc
             path = std::string(home) + "/.dssi:" + path;
Callum Lerwick 5f03bcc
diff -ur rosegarden-1.5.1/src/sound/LADSPAPluginFactory.cpp rosegarden.patched/src/sound/LADSPAPluginFactory.cpp
Callum Lerwick 5f03bcc
--- rosegarden-1.5.1/src/sound/LADSPAPluginFactory.cpp	2007-03-13 07:50:32.000000000 -0500
Callum Lerwick 5f03bcc
+++ rosegarden.patched/src/sound/LADSPAPluginFactory.cpp	2007-05-02 16:53:52.000000000 -0500
Callum Lerwick 5f03bcc
@@ -527,7 +527,7 @@
Callum Lerwick 5f03bcc
         path = cpath;
Callum Lerwick 5f03bcc
 
Callum Lerwick 5f03bcc
     if (path == "") {
Callum Lerwick 5f03bcc
-        path = "/usr/local/lib/ladspa:/usr/lib/ladspa";
Callum Lerwick 5f03bcc
+        path = "/usr/local/lib64/ladspa:/usr/lib64/ladspa";
Callum Lerwick 5f03bcc
         char *home = getenv("HOME");
Callum Lerwick 5f03bcc
         if (home)
Callum Lerwick 5f03bcc
             path = std::string(home) + "/.ladspa:" + path;
Callum Lerwick 5f03bcc
@@ -722,9 +722,9 @@
Callum Lerwick 5f03bcc
     std::vector<QString> path;
Callum Lerwick 5f03bcc
 
Callum Lerwick 5f03bcc
     for (size_t i = 0; i < pluginPath.size(); ++i) {
Callum Lerwick 5f03bcc
-        if (pluginPath[i].contains("/lib/")) {
Callum Lerwick 5f03bcc
+        if (pluginPath[i].contains("/lib64/")) {
Callum Lerwick 5f03bcc
             QString p(pluginPath[i]);
Callum Lerwick 5f03bcc
-            p.replace("/lib/", "/share/");
Callum Lerwick 5f03bcc
+            p.replace("/lib64/", "/share/");
Callum Lerwick 5f03bcc
             path.push_back(p);
Callum Lerwick 5f03bcc
             //	    std::cerr << "LADSPAPluginFactory::generateFallbackCategories: path element " << p << std::endl;
Callum Lerwick 5f03bcc
         }