freebsd-ports/multimedia/obs-studio/files/patch-UI_window-basic-main.cpp
Yuri Victorovich d30fd889ff multimedia/obs-studio: Fix the procfs(5) link for the executable path: /proc/self/exe -> /proc/curproc/file
PR:		245299
Reported by:	Keith Hellman <khellman@mcprogramming.com> (the reported issue seems to be the same)
2020-04-02 23:42:35 +00:00

13 lines
347 B
C++

--- UI/window-basic-main.cpp.orig 2020-03-19 16:51:06 UTC
+++ UI/window-basic-main.cpp
@@ -3207,6 +3207,10 @@ void OBSBasic::TimedCheckForUpdates()
void OBSBasic::CheckForUpdates(bool manualUpdate)
{
+#ifdef __FreeBSD__
+ // Update check seg faults on FreeBSD
+ return;
+#endif
#ifdef UPDATE_SPARKLE
trigger_sparkle_update();
#elif _WIN32