mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
MeshLab is an open source, portable, and extensible system for the processing and editing of unstructured 3D triangular meshes. WWW: http://meshlab.sourceforge.net/
14 lines
557 B
C++
14 lines
557 B
C++
--- common/pluginmanager.cpp.orig 2011-02-07 14:11:51.000000000 +0100
|
|
+++ common/pluginmanager.cpp 2011-02-07 14:12:33.000000000 +0100
|
|
@@ -98,7 +98,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.");
|