desktop-app / tg_owt

BSD 3-Clause "New" or "Revised" License
43 stars 43 forks source link

does not build on musl: int64_t is undeclared #125

Closed kelvium closed 2 weeks ago

kelvium commented 1 year ago

i reported this bug on their bug tracker: https://bugs.chromium.org/p/webrtc/issues/detail?id=15556 not sure if it's their problem, so reporting it here too my proposed patch is:

--- a/src/rtc_base/system/file_wrapper.h
+++ b/src/rtc_base/system/file_wrapper.h
@@ -11,9 +11,10 @@
 #ifndef RTC_BASE_SYSTEM_FILE_WRAPPER_H_
 #define RTC_BASE_SYSTEM_FILE_WRAPPER_H_

 #include <stddef.h>
 #include <stdio.h>
+#include <stdint.h>

 #include <string>

 #include "absl/strings/string_view.h"
kelvium commented 1 year ago

The bug has been fixed upstream.

ilya-fedin commented 3 weeks ago

Is this still an issue?