Files
haikuports/net-im/kotatogram-desktop/patches/lib_webrtc-1.4.6.patchset
2021-12-22 23:46:39 +10:00

42 lines
1.2 KiB
Plaintext

From d65252fda59ee58fc8e913be59358b42b34e3a32 Mon Sep 17 00:00:00 2001
From: Gerasim Troeglazov <3dEyes@gmail.com>
Date: Wed, 10 Nov 2021 18:19:20 +1000
Subject: Fixes for Haiku
diff --git a/webrtc/details/webrtc_openal_adm.cpp b/webrtc/details/webrtc_openal_adm.cpp
index 8aa87d7..19deeff 100644
--- a/webrtc/details/webrtc_openal_adm.cpp
+++ b/webrtc/details/webrtc_openal_adm.cpp
@@ -4,6 +4,11 @@
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
+
+#ifdef Q_OS_HAIKU
+#include <base/haiku_types.h>
+#endif
+
#include "webrtc/details/webrtc_openal_adm.h"
#include "base/timer.h"
diff --git a/webrtc/webrtc_audio_input_tester.cpp b/webrtc/webrtc_audio_input_tester.cpp
index 092b667..204e259 100644
--- a/webrtc/webrtc_audio_input_tester.cpp
+++ b/webrtc/webrtc_audio_input_tester.cpp
@@ -4,6 +4,11 @@
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
+
+#ifdef Q_OS_HAIKU
+#include <base/haiku_types.h>
+#endif
+
#include "webrtc/webrtc_audio_input_tester.h"
#include "webrtc/webrtc_create_adm.h"
--
2.30.2