Files
guru/net-im/forkgram/files/tdesktop-5.8.3-cstdint.patch
2026-02-18 19:32:21 +01:00

16 lines
603 B
Diff
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Fix missing cstdint include
/var/tmp/portage/net-im/telegram-desktop-5.8.3/work/tdesktop-5.8.3-full/Telegram/lib_webview/webview/webview_interface.h:99:14: error: int64_t in namespace std does not name a type
99 | std::int64_t streamOffset = 0;
| ^~~~~~~
--- tdesktop-5.8.3-full.orig/Telegram/lib_webview/webview/webview_interface.h
+++ tdesktop-5.8.3-full/Telegram/lib_webview/webview/webview_interface.h
@@ -12,6 +12,7 @@
#include <string>
#include <optional>
#include <functional>
+#include <cstdint>
#include <rpl/never.h>
#include <rpl/producer.h>