summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch')
-rw-r--r--meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch b/meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch
new file mode 100644
index 0000000000..1413724d07
--- /dev/null
+++ b/meta/recipes-extended/screen/screen/0001-Remove-more-compatibility-stuff.patch
@@ -0,0 +1,31 @@
1This fixes
2../screen-4.6.2/pty.c: In function 'OpenPTY':
3../screen-4.6.2/pty.c:328:7: warning: implicit declaration of function 'openpty'; did you mean 'openat'? [-Wimplicit-function-declaration]
4 if (openpty(&f, &s, TtyName, NULL, NULL) != 0)
5 ^~~~~~~
6
7Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
8Signed-off-by: Adrian Bunk <bunk@stusta.de>
9Upstream-Status: Backport
10
11---
12 pty.c | 6 +-----
13 1 file changed, 1 insertion(+), 5 deletions(-)
14
15diff --git a/pty.c b/pty.c
16index 1c0660e..502338f 100644
17--- a/pty.c
18+++ b/pty.c
19@@ -47,11 +47,7 @@
20 # include <sys/ttold.h>
21 #endif
22
23-#ifdef ISC
24-# include <sys/tty.h>
25-# include <sys/sioctl.h>
26-# include <sys/pty.h>
27-#endif
28+#include <pty.h>
29
30 #ifdef sgi
31 # include <sys/sysmacros.h>