ports/multimedia/shotcut/patches/patch-src_util_cpp

13 lines
273 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: src/util.cpp
--- src/util.cpp.orig
+++ src/util.cpp
@@ -538,6 +538,8 @@ bool Util::isMemoryLow()
meminfo.close();
LOG_INFO() << "available RAM = " << availableKB << "KB";
return availableKB < kLowMemoryThresholdKB;
+#else
+ return false;
#endif
}