on session-load: skip output-change-handler until IOs are restored
[ardour.git] / libs / ardour / control_protocol_search_path.cc
index c7c9b635a38fad610e58617ac6e1eb1ee5219fc0..254cd03fe94c23fb9a91c4460d6b76d97ea4c706 100644 (file)
@@ -17,6 +17,8 @@
 
 */
 
+#include <iostream>
+
 #include <glibmm/miscutils.h>
 
 #include "ardour/control_protocol_search_path.h"
@@ -34,18 +36,11 @@ namespace ARDOUR {
 SearchPath
 control_protocol_search_path ()
 {
-       bool surfaces_path_defined = false;
-       SearchPath spath_env (Glib::getenv(surfaces_env_variable_name, surfaces_path_defined));
-
-       if (surfaces_path_defined) {
-               return spath_env;
-       }
-
-       SearchPath spath (user_config_directory ());
-
-       spath += ardour_module_directory ();
+       SearchPath spath(user_config_directory ());
+       spath += ardour_dll_directory ();
        spath.add_subdirectory_to_paths (surfaces_dir_name);
-
+       
+       spath += SearchPath(Glib::getenv(surfaces_env_variable_name));
        return spath;
 }