update default speaker position list
[ardour.git] / libs / ardour / ladspa_search_path.cc
index 6ecc1557a3a7c011c84bc1b2d8af327976b39b66..49a2645f5d105ddc54acd714814075cc0155c3ab 100644 (file)
@@ -33,17 +33,17 @@ using namespace PBD;
 
 namespace ARDOUR {
 
-SearchPath
+Searchpath
 ladspa_search_path ()
 {
-       SearchPath spath_env (Glib::getenv(ladspa_env_variable_name));
+       Searchpath spath_env (Glib::getenv(ladspa_env_variable_name));
 
-       SearchPath spath (user_config_directory ());
+       Searchpath spath (user_config_directory ());
 
        spath += ardour_dll_directory ();
        spath.add_subdirectory_to_paths (ladspa_dir_name);
 
-#ifndef WIN32
+#ifndef PLATFORM_WINDOWS
        spath.push_back ("/usr/local/lib64/ladspa");
        spath.push_back ("/usr/local/lib/ladspa");
        spath.push_back ("/usr/lib64/ladspa");
@@ -51,7 +51,7 @@ ladspa_search_path ()
 #endif
 
 #ifdef __APPLE__
-       spath.push_back (expand_path ("~/Library/Audio/Plug-Ins/LADSPA"));
+       spath.push_back (path_expand ("~/Library/Audio/Plug-Ins/LADSPA"));
        spath.push_back ("/Library/Audio/Plug-Ins/LADSPA");
 #endif