From e0f4e827658b3b7640907f695327bd11a6cce8dc Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 5 Oct 2025 17:06:11 +0200 Subject: [PATCH] missing file --- mingw-w64-notcurses/0003-add-dummy-termios.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 mingw-w64-notcurses/0003-add-dummy-termios.patch diff --git a/mingw-w64-notcurses/0003-add-dummy-termios.patch b/mingw-w64-notcurses/0003-add-dummy-termios.patch new file mode 100644 index 0000000000..266619571f --- /dev/null +++ b/mingw-w64-notcurses/0003-add-dummy-termios.patch @@ -0,0 +1,16 @@ +--- notcurses-3.0.16/src/compat/compat.h.orig 2025-10-05 12:22:18.032744000 +0200 ++++ notcurses-3.0.16/src/compat/compat.h 2025-10-05 12:21:01.889082500 +0200 +@@ -20,6 +20,13 @@ + #endif + + #ifdef __MINGW32__ ++struct termios { ++ unsigned int c_iflag; ++ unsigned int c_oflag; ++ unsigned int c_cflag; ++ unsigned int c_lflag; ++ unsigned char c_cc[32]; ++}; + static inline char + path_separator(void){ + return '\\';