mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 16:40:31 -04:00
Release notes: http://sf.net/apps/mediawiki/meshlab/index.php?title=Release_Notes_1.3.2 - Unbreak
14 lines
566 B
C++
14 lines
566 B
C++
--- common/pluginmanager.cpp.orig 2012-11-07 11:15:44.000000000 +0100
|
|
+++ common/pluginmanager.cpp 2012-11-07 11:16:26.000000000 +0100
|
|
@@ -230,7 +230,11 @@
|
|
|
|
QString PluginManager::getPluginDirPath()
|
|
{
|
|
+#ifdef __FreeBSD__
|
|
+ QDir pluginsDir("%%PREFIX%%/lib/meshlab/");
|
|
+#else
|
|
QDir pluginsDir(getBaseDirPath());
|
|
+#endif
|
|
if(!pluginsDir.exists("plugins"))
|
|
//QMessageBox::warning(0,"Meshlab Initialization","Serious error. Unable to find the plugins directory.");
|
|
qDebug("Meshlab Initialization: Serious error. Unable to find the plugins directory.");
|