summarylogtreecommitdiffstats
path: root/ncurses-import.patch
blob: 787183b305d62fe41397dbc899500fea0965d646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
--- libvterm/demo/vshell.c
+++ libvterm/demo/vshell.c
@@ -32,7 +32,7 @@
 // #include <sys/ioctl.h>
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FreeBSD__

--- libvterm/mouse_driver.h
+++ libvterm/mouse_driver.h
@@ -4,7 +4,7 @@
 #include <signal.h>
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FreeBSD__

--- libvterm/vterm.h
+++ libvterm/vterm.h
@@ -12,7 +12,7 @@
 #include <sys/types.h>
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FreeBSD__

--- libvterm/vterm_private.h
+++ libvterm/vterm_private.h
@@ -8,7 +8,7 @@
 #include <sys/types.h>
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FREEBSD__

--- libvterm/vterm_render.h
+++ libvterm/vterm_render.h
@@ -5,7 +5,7 @@
 #ifndef NOCURSES
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FreeBSD__

--- libvterm/vterm_utf8.h
+++ libvterm/vterm_utf8.h
@@ -5,7 +5,7 @@
 #ifndef NOCURSES
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FreeBSD__

--- libvterm/nc_wrapper.c
+++ libvterm/nc_wrapper.c
@@ -2,7 +2,7 @@
 #include <dlfcn.h>
 
 #ifdef __linux__
-#include <ncursesw/curses.h>
+#include <curses.h>
 #endif
 
 #ifdef __FreeBSD__