Use proper path seperator for LADSPA_PATH

According to http://www.ladspa.org/ladspa_sdk/shared_plugins.html,
LADSPA_PATH is supposed to be delimited by colons.  This patch does so,
except on Windows.  On Windows we use ';' instead of ':' since colon is
a legal character for a path.
This commit is contained in:
Paul Giblock
2010-08-11 21:40:54 -04:00
parent 2ed12b138d
commit 4e9ebd09c6
2 changed files with 8 additions and 1 deletions

View File

@@ -119,6 +119,13 @@ inline bool typeInfo<float>::isEqual( float _x, float _y )
#endif
#ifdef LMMS_BUILD_WIN32
#define PATH_SEPERATOR = ';';
#else
#define PATH_SEPERATOR = ':';
#endif
#define DEFAULT_CHANNELS 2
#define LMMS_DISABLE_SURROUND
#ifdef LMMS_DISABLE_SURROUND

View File

@@ -38,7 +38,7 @@
ladspaManager::ladspaManager()
{
QStringList ladspaDirectories = QString( getenv( "LADSPA_PATH" ) ).
split( ',' );
split( PATH_SEPERATOR );
ladspaDirectories += configManager::inst()->ladspaDir().split( ',' );
ladspaDirectories.push_back( configManager::inst()->pluginDir() + "ladspa" );