0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-11-21 22:06:17 +00:00
termux-packages/disabled-packages/libfinalcut/final-output-tty-ftermlinux.h.patch

38 lines
1.0 KiB
Diff

--- a/final/output/tty/ftermlinux.h
+++ b/final/output/tty/ftermlinux.h
@@ -45,12 +45,16 @@
#endif
#endif
+ #ifndef __ANDROID__
#if defined(__x86_64__) || defined(__i386) || defined(ARM_ISA_SYSCTL)
#define ISA_SYSCTL_SUPPORT
#include <sys/io.h>
#endif // defined(__x86_64__) || defined(__i386) || defined(ARM_ISA_SYSCTL)
#include <sys/kd.h>
+ #else /* __ANDROID__ */
+ #include <linux/kd.h>
+ #endif
#else
// struct forward declaration
struct console_font_op;
@@ -243,13 +247,17 @@
#if defined(__linux__)
bool vga_font{};
bool new_font{};
+#ifndef __ANDROID__
bool has_saved_palette{};
+#endif
int framebuffer_bpp{-1};
CursorStyle linux_console_cursor_style{};
console_font_op screen_font{};
unimapdesc screen_unicode_map{};
+#ifndef __ANDROID__
ColorMap saved_color_map{};
ColorMap cmap{};
+#endif
KeyMap key_map{};
ModifierKey mod_key{};
#endif // defined(__linux__)