mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 02:53:10 -04:00
Use GCC for build: /wrkdirs/usr/ports/graphics/zeno/work/zeno-2024.10.1/zeno/src/nodes/neo/PrimUnmerge.cpp:237:35: error: capturing a structured binding is not yet supported in OpenMP 237 | arr[i] = attr[val[i]]; | ^ Upstream issue: https://github.com/zenustech/zeno/issues/2022 LLVM issue: https://github.com/llvm/llvm-project/issues/33025 Changelog: https://github.com/zenustech/zeno/releases/tag/2024.10.1 PR: 282753
32 lines
959 B
C++
32 lines
959 B
C++
--- ui/zenoedit/zenoapplication.cpp.orig 2024-09-30 13:46:54 UTC
|
|
+++ ui/zenoedit/zenoapplication.cpp
|
|
@@ -13,9 +13,9 @@ ZenoApplication::ZenoApplication(int &argc, char **arg
|
|
|
|
ZenoApplication::ZenoApplication(int &argc, char **argv)
|
|
: QApplication(argc, argv)
|
|
-#if defined(ZENO_MULTIPROCESS) && defined(ZENO_IPC_USE_TCP)
|
|
+//#if defined(ZENO_MULTIPROCESS) && defined(ZENO_IPC_USE_TCP)
|
|
, m_server(nullptr)
|
|
-#endif
|
|
+//#endif
|
|
, m_bUIApp(true)
|
|
{
|
|
initMetaTypes();
|
|
@@ -175,7 +175,7 @@ QStandardItemModel* ZenoApplication::logModel() const
|
|
return graphsManagment()->logModel();
|
|
}
|
|
|
|
-#if defined(ZENO_MULTIPROCESS) && defined(ZENO_IPC_USE_TCP)
|
|
+//#if defined(ZENO_MULTIPROCESS) && defined(ZENO_IPC_USE_TCP)
|
|
ZTcpServer* ZenoApplication::getServer()
|
|
{
|
|
if (!m_server) {
|
|
@@ -184,7 +184,7 @@ ZTcpServer* ZenoApplication::getServer()
|
|
}
|
|
return m_server;
|
|
}
|
|
-#endif
|
|
+//#endif
|
|
|
|
ZenoMainWindow* ZenoApplication::getMainWindow()
|
|
{
|