allow to customize variable i/o plugin inputs
[ardour.git] / libs / ardour / vst_info_file.cc
index 72119dc76824a589b7b94055402c0191a1112102..68b376d8d3039614f5d14abc22a90b534d2d4588 100644 (file)
@@ -22,8 +22,6 @@
  *  e.g. its name, creator etc.
  */
 
-#include <iostream>
-#include <fstream>
 #include <cassert>
 
 #include <sys/types.h>
@@ -37,7 +35,7 @@
 #include <string.h>
 
 #include <glib.h>
-#include <pbd/gstdio_compat.h>
+#include "pbd/gstdio_compat.h"
 #include <glibmm.h>
 
 #include "pbd/error.h"
@@ -125,7 +123,7 @@ static void vstfx_read_blacklist (std::string &bl) {
                char buf[1024];
                size_t s = fread (buf, sizeof(char), 1024, blacklist_fd);
                if (ferror (blacklist_fd)) {
-                       error << string_compose (_("error reading VST Blacklist file %1 (%2)"), fn, strerror (errno)) << endmsg;
+                       PBD::error << string_compose (_("error reading VST Blacklist file %1 (%2)"), fn, strerror (errno)) << endmsg;
                        bl = "";
                        break;
                }