diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-03-23 13:16:38 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-03-22 22:20:42 -0700 |
commit | eadf2c6c44506d983c871a1b1c4f35cb58d46c4e (patch) | |
tree | 3f34e9c7ca5f80dec4e05e1d08ae0f2493040a55 /meta-oe/recipes-graphics/xorg-app | |
parent | 26e8ca85b2a25d209887f6c3752ddcb6f1e3ae42 (diff) | |
download | meta-openembedded-eadf2c6c44506d983c871a1b1c4f35cb58d46c4e.tar.gz |
xterm: upgrade 378 -> 379
Changelog:
==========
* improve text-cursor (patch by Jan Engelhardt):
+ allow selecting CURSOR_BAR mode from command-line/Xresources.
+ draw cursor using filled rectangle instead of rectangle
outline to permit thicker underlines/bars.
+ scale up cursor relative to font size.
* improve readline modes (Fedora #2166860):
+ document readline modes
+ change the feature to configure by default
+ replace hard-coded SS3 for cursor movement with current mode
+ replace hard-coded erase/lnext characters with current values
* improve status-line (report by Thomas Wolff):
+ RIS turns off status-line
+ Right-margin (DECLRMM and DECSLRM) limits the length of text
written/updated in the status-line.
+ Most controls which affect the whole screen are ignored while
updating the status-line.
* modify configure check for tgetent to allow for some special cases
of ncurses configuration (report by Satadru Pramani).
* reduce timeout, improve warning message if resize is run on a
terminal which is not VT100-compatible.
* reduce compiler warnings in configure script.
0001-Add-configure-time-check-for-setsid.patch
refreshed for new version.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics/xorg-app')
-rw-r--r-- | meta-oe/recipes-graphics/xorg-app/xterm/0001-Add-configure-time-check-for-setsid.patch | 26 | ||||
-rw-r--r-- | meta-oe/recipes-graphics/xorg-app/xterm_379.bb (renamed from meta-oe/recipes-graphics/xorg-app/xterm_378.bb) | 2 |
2 files changed, 13 insertions, 15 deletions
diff --git a/meta-oe/recipes-graphics/xorg-app/xterm/0001-Add-configure-time-check-for-setsid.patch b/meta-oe/recipes-graphics/xorg-app/xterm/0001-Add-configure-time-check-for-setsid.patch index 92ecdac224..a6cf16e4e9 100644 --- a/meta-oe/recipes-graphics/xorg-app/xterm/0001-Add-configure-time-check-for-setsid.patch +++ b/meta-oe/recipes-graphics/xorg-app/xterm/0001-Add-configure-time-check-for-setsid.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 3730a38efad969fb6f8227df07eb4461a078f5a3 Mon Sep 17 00:00:00 2001 | 1 | From b23d38f1216c4d70738edaa367cf9ecd2dd4b660 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 13 Dec 2019 12:59:26 -0800 | 3 | Date: Fri, 13 Dec 2019 12:59:26 -0800 |
4 | Subject: [PATCH] Add configure time check for setsid | 4 | Subject: [PATCH] Add configure time check for setsid |
@@ -7,18 +7,19 @@ Do not assume glibc == linux | |||
7 | 7 | ||
8 | Upstream-Status: Pending | 8 | Upstream-Status: Pending |
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
10 | |||
10 | --- | 11 | --- |
11 | configure | 1 + | 12 | configure | 1 + |
12 | configure.in | 1 + | 13 | configure.in | 1 + |
13 | main.c | 4 ++-- | 14 | main.c | 4 ++-- |
14 | xtermcfg.hin | 1 + | 15 | xtermcfg.hin | 1 + |
15 | 5 files changed, 6 insertions(+), 2 deletions(-) | 16 | 4 files changed, 5 insertions(+), 2 deletions(-) |
16 | 17 | ||
17 | diff --git a/configure b/configure | 18 | diff --git a/configure b/configure |
18 | index 0aafefc..03e8df0 100755 | 19 | index 72342c7..c2ec2ac 100755 |
19 | --- a/configure | 20 | --- a/configure |
20 | +++ b/configure | 21 | +++ b/configure |
21 | @@ -5605,6 +5605,7 @@ for ac_func in \ | 22 | @@ -5803,6 +5803,7 @@ for ac_func in \ |
22 | unsetenv \ | 23 | unsetenv \ |
23 | sched_yield \ | 24 | sched_yield \ |
24 | setpgid \ | 25 | setpgid \ |
@@ -27,7 +28,7 @@ index 0aafefc..03e8df0 100755 | |||
27 | tcgetattr \ | 28 | tcgetattr \ |
28 | waitpid \ | 29 | waitpid \ |
29 | diff --git a/configure.in b/configure.in | 30 | diff --git a/configure.in b/configure.in |
30 | index d2fee88..74d65df 100644 | 31 | index 56dbc25..0608c80 100644 |
31 | --- a/configure.in | 32 | --- a/configure.in |
32 | +++ b/configure.in | 33 | +++ b/configure.in |
33 | @@ -99,6 +99,7 @@ AC_CHECK_FUNCS( \ | 34 | @@ -99,6 +99,7 @@ AC_CHECK_FUNCS( \ |
@@ -39,10 +40,10 @@ index d2fee88..74d65df 100644 | |||
39 | tcgetattr \ | 40 | tcgetattr \ |
40 | waitpid \ | 41 | waitpid \ |
41 | diff --git a/main.c b/main.c | 42 | diff --git a/main.c b/main.c |
42 | index 5e60589..b81d2be 100644 | 43 | index 24da0eb..332174c 100644 |
43 | --- a/main.c | 44 | --- a/main.c |
44 | +++ b/main.c | 45 | +++ b/main.c |
45 | @@ -2903,7 +2903,7 @@ main(int argc, char *argv[]ENVP_ARG) | 46 | @@ -2956,7 +2956,7 @@ main(int argc, char *argv[]ENVP_ARG) |
46 | } | 47 | } |
47 | } | 48 | } |
48 | 49 | ||
@@ -51,7 +52,7 @@ index 5e60589..b81d2be 100644 | |||
51 | #define USE_OPENPTY 1 | 52 | #define USE_OPENPTY 1 |
52 | static int opened_tty = -1; | 53 | static int opened_tty = -1; |
53 | #endif | 54 | #endif |
54 | @@ -4074,7 +4074,7 @@ spawnXTerm(XtermWidget xw, unsigned line_speed) | 55 | @@ -4205,7 +4205,7 @@ spawnXTerm(XtermWidget xw, unsigned line_speed) |
55 | /* | 56 | /* |
56 | * now in child process | 57 | * now in child process |
57 | */ | 58 | */ |
@@ -61,17 +62,14 @@ index 5e60589..b81d2be 100644 | |||
61 | #else | 62 | #else |
62 | int pgrp = getpid(); | 63 | int pgrp = getpid(); |
63 | diff --git a/xtermcfg.hin b/xtermcfg.hin | 64 | diff --git a/xtermcfg.hin b/xtermcfg.hin |
64 | index 1dbc3b8..4f3ff5b 100644 | 65 | index 19048cd..e54d2cd 100644 |
65 | --- a/xtermcfg.hin | 66 | --- a/xtermcfg.hin |
66 | +++ b/xtermcfg.hin | 67 | +++ b/xtermcfg.hin |
67 | @@ -95,6 +95,7 @@ | 68 | @@ -98,6 +98,7 @@ |
68 | #undef HAVE_PUTENV /* AC_CHECK_FUNCS(putenv) */ | ||
69 | #undef HAVE_SCHED_YIELD /* AC_CHECK_FUNCS(sched_yield) */ | 69 | #undef HAVE_SCHED_YIELD /* AC_CHECK_FUNCS(sched_yield) */ |
70 | #undef HAVE_SETITIMER /* CF_SETITIMER */ | ||
70 | #undef HAVE_SETPGID /* AC_CHECK_FUNCS(setpgid) */ | 71 | #undef HAVE_SETPGID /* AC_CHECK_FUNCS(setpgid) */ |
71 | +#undef HAVE_SETSID /* AC_CHECK_FUNCS(setsid) */ | 72 | +#undef HAVE_SETSID /* AC_CHECK_FUNCS(setsid) */ |
72 | #undef HAVE_STDINT_H /* AC_PROG_CC_STDC */ | 73 | #undef HAVE_STDINT_H /* AC_PROG_CC_STDC */ |
73 | #undef HAVE_STDLIB_H /* AC_CHECK_HEADERS(stdlib.h) */ | 74 | #undef HAVE_STDLIB_H /* AC_CHECK_HEADERS(stdlib.h) */ |
74 | #undef HAVE_STDNORETURN_H /* CF_C11_NORETURN */ | 75 | #undef HAVE_STDNORETURN_H /* CF_C11_NORETURN */ |
75 | -- | ||
76 | 2.24.1 | ||
77 | |||
diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_378.bb b/meta-oe/recipes-graphics/xorg-app/xterm_379.bb index c82042b215..1c32b5d5b3 100644 --- a/meta-oe/recipes-graphics/xorg-app/xterm_378.bb +++ b/meta-oe/recipes-graphics/xorg-app/xterm_379.bb | |||
@@ -8,7 +8,7 @@ SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz \ | |||
8 | file://0001-Add-configure-time-check-for-setsid.patch \ | 8 | file://0001-Add-configure-time-check-for-setsid.patch \ |
9 | " | 9 | " |
10 | 10 | ||
11 | SRC_URI[sha256sum] = "649dfbfd5edd0ed9e47cf8e4d953b4b0d3c30bc280166dfc4ffd14973fec3e92" | 11 | SRC_URI[sha256sum] = "a7ddf274ee84b97fb1283675009d53ca2d02a0ffd5ce5a5118dafc3623ebb310" |
12 | 12 | ||
13 | PACKAGECONFIG ?= "" | 13 | PACKAGECONFIG ?= "" |
14 | PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig freetype-native" | 14 | PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig freetype-native" |