summaryrefslogtreecommitdiff
path: root/libs/ardour/vst_info_file.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-10 18:54:26 +0200
committerRobin Gareus <robin@gareus.org>2015-07-10 18:54:26 +0200
commita73a039a3abac96837a2ca09d2b044702c27c98e (patch)
treed72022f9d5b9069a4cd4440ffed533f1ee08cb67 /libs/ardour/vst_info_file.cc
parentad9f76a8c5ae2765259da99f2927fb50b7111f94 (diff)
separate VST blacklist for 32/64bit
Diffstat (limited to 'libs/ardour/vst_info_file.cc')
-rw-r--r--libs/ardour/vst_info_file.cc12
1 files changed, 3 insertions, 9 deletions
diff --git a/libs/ardour/vst_info_file.cc b/libs/ardour/vst_info_file.cc
index 3b56876494..b45a285f9b 100644
--- a/libs/ardour/vst_info_file.cc
+++ b/libs/ardour/vst_info_file.cc
@@ -55,12 +55,6 @@
#define MAX_STRING_LEN 256
#define PLUGIN_SCAN_TIMEOUT (Config->get_vst_scan_timeout()) // in deciseconds
-
-/* CACHE FILE PATHS */
-#define EXT_BLACKLIST ".fsb"
-#define EXT_ERRORFILE ".err"
-#define EXT_INFOFILE ".fsi"
-
#ifdef PLATFORM_WINDOWS
#define PFX_DOTFILE ""
#else
@@ -118,21 +112,21 @@ vstfx_blacklist_path (const char* dllpath, int personal)
}
stringstream s;
- s << PFX_DOTFILE << Glib::path_get_basename (dllpath) << EXT_BLACKLIST;
+ s << PFX_DOTFILE << Glib::path_get_basename (dllpath) << VST_EXT_BLACKLIST;
return Glib::build_filename (dir, s.str ());
}
static string
vstfx_infofile_path (const char* dllpath, int personal)
{
- return vstfx_cache_file(dllpath, personal, EXT_INFOFILE);
+ return vstfx_cache_file(dllpath, personal, VST_EXT_INFOFILE);
}
#ifndef VST_SCANNER_APP
static string
vstfx_errorfile_path (const char* dllpath, int personal)
{
- return vstfx_cache_file(dllpath, personal, EXT_ERRORFILE);
+ return vstfx_cache_file(dllpath, personal, VST_EXT_ERRORFILE);
}
#endif