From 1993d2ba0158911a75eea569eb6c2578a653f8a9 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 27 May 2024 10:38:41 +0200 Subject: [PATCH] also use relative folder load for bsd --- src/librssguard/miscellaneous/pluginfactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librssguard/miscellaneous/pluginfactory.cpp b/src/librssguard/miscellaneous/pluginfactory.cpp index f3f9bb2b5..9080e1fc7 100644 --- a/src/librssguard/miscellaneous/pluginfactory.cpp +++ b/src/librssguard/miscellaneous/pluginfactory.cpp @@ -64,7 +64,7 @@ QList PluginFactory::loadPlugins() const { QStringList PluginFactory::pluginPaths() const { QStringList paths; -#if defined(Q_OS_LINUX) +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) paths << QCoreApplication::applicationDirPath() + QDir::separator() + QL1S("..") + QDir::separator() + QL1S(RSSGUARD_LIBDIR) + QDir::separator() + QL1S(APP_LOW_NAME); #elif defined(Q_OS_WIN)