Add some missing defined(__HAIKU__)

Some places should rather check for HAVE_DLOPEN or alike though.
This commit is contained in:
François Revol
2019-03-03 23:19:04 +01:00
parent 4e04d7b330
commit 868ce89db2
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -231,7 +231,7 @@ void load_frei0r_effects() {
QList<QString> effect_dirs = get_effects_paths();
// add defined paths for frei0r plugins on unix
#if defined(__APPLE__) || defined(__linux__)
#if defined(__APPLE__) || defined(__linux__) || defined(__HAIKU__)
effect_dirs.prepend("/usr/lib/frei0r-1");
effect_dirs.prepend("/usr/local/lib/frei0r-1");
effect_dirs.prepend(QDir::homePath() + "/.frei0r-1/lib");