summaryrefslogtreecommitdiff
path: root/PluginsManager.cpp
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2020-08-11 22:35:12 +0100
committerThomas Preud'homme <robotux@celest.fr>2020-08-11 22:35:12 +0100
commit3ac113857071fc1f225b2e1b42547269e568c6b7 (patch)
tree8b28dd9c44a0d3c7ab8187cd8d8f19d47591d813 /PluginsManager.cpp
parent9b10c21f5cad0e2ec27d23c59e65af7141a226f3 (diff)
New upstream version 2.2.4.4
Diffstat (limited to 'PluginsManager.cpp')
-rwxr-xr-x[-rw-r--r--]PluginsManager.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/PluginsManager.cpp b/PluginsManager.cpp
index 269e837..b885612 100644..100755
--- a/PluginsManager.cpp
+++ b/PluginsManager.cpp
@@ -310,8 +310,9 @@ void PluginsManager::loadPluginXml(PluginsAvailable * thePlugin,const QByteArray
loadBalise(root,"architecture",&(thePlugin->informations),&(thePlugin->errorString),true,false);
if(thePlugin->errorString.empty())
{
- if(thePlugin->informations.back().back()!=ULTRACOPIER_PLATFORM_CODE)
- thePlugin->errorString="Wrong platform code: "+thePlugin->informations.back().back();
+ const std::string &platform=thePlugin->informations.back().back();
+ if(platform!=ULTRACOPIER_PLATFORM_CODE)
+ thePlugin->errorString="Wrong platform code: "+platform+std::string(" should be ")+ULTRACOPIER_PLATFORM_CODE;
}
#endif
}
@@ -528,10 +529,10 @@ std::string PluginsManager::getPluginVersion(const std::string &pluginName) cons
{
#ifdef ULTRACOPIER_MODE_SUPERCOPIER
if(pluginName=="supercopier")
- return ULTRACOPIER_VERSION;
+ return FacilityEngine::version();
#else
if(pluginName=="ultracopier")
- return ULTRACOPIER_VERSION;
+ return FacilityEngine::version();
#endif
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"start");
unsigned int index=0;
@@ -907,7 +908,7 @@ void PluginsManager::newAuthPath(const std::string &path)
/// \brief transfor short plugin name into file name
std::string PluginsManager::getResolvedPluginName(const std::string &name)
{
- #if defined(Q_OS_LINUX) || defined(Q_OS_HURD)
+ #if defined(Q_OS_LINUX) || defined(Q_OS_HURD) || defined(__HAIKU__)
return "lib"+name+".so";
#elif defined(Q_OS_MAC)
#if defined(QT_DEBUG)
@@ -922,7 +923,11 @@ std::string PluginsManager::getResolvedPluginName(const std::string &name)
return name+".dll";
#endif
#else
+ #ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE
#error "Platform not supported"
+ #else
+ return std::string();
+ #endif
#endif
}