diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-07-08 10:15:30 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-07-08 10:15:30 +0800 |
| commit | 0caa0012f5294a5d2205f1b2343bab8f7d5f51ab (patch) | |
| tree | dfed043f69ce1c3d8b3415b4a26654aafe4884ce | |
| parent | 563a946698189d8912d66d240ddfb45ff06867f2 (diff) | |
| download | alicelinux-0caa0012f5294a5d2205f1b2343bab8f7d5f51ab.tar.gz alicelinux-0caa0012f5294a5d2205f1b2343bab8f7d5f51ab.zip | |
xterm: updated to 390
| -rw-r--r-- | repos/xorg/xterm/.files | 1 | ||||
| -rw-r--r-- | repos/xorg/xterm/abuild | 3 | ||||
| -rw-r--r-- | repos/xorg/xterm/posix-ptys.patch | 21 |
3 files changed, 1 insertions, 24 deletions
diff --git a/repos/xorg/xterm/.files b/repos/xorg/xterm/.files index 95872204..041b8b60 100644 --- a/repos/xorg/xterm/.files +++ b/repos/xorg/xterm/.files @@ -1,7 +1,6 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/koi8rxterm --rwxr-xr-x root/root usr/bin/resize -rwxr-xr-x root/root usr/bin/uxterm -rwxr-xr-x root/root usr/bin/xterm drwxr-xr-x root/root usr/share/ diff --git a/repos/xorg/xterm/abuild b/repos/xorg/xterm/abuild index bb99ad93..b6593dc8 100644 --- a/repos/xorg/xterm/abuild +++ b/repos/xorg/xterm/abuild @@ -1,8 +1,7 @@ name=xterm version=390 release=1 -source="https://invisible-mirror.net/archives/$name/$name-$version.tgz - posix-ptys.patch" +source="https://invisible-mirror.net/archives/$name/$name-$version.tgz" export TERMINFO=/usr/share/terminfo build_opt="--with-app-defaults=/usr/share/X11/app-defaults --enable-freetype --enable-wide-chars --with-x" diff --git a/repos/xorg/xterm/posix-ptys.patch b/repos/xorg/xterm/posix-ptys.patch deleted file mode 100644 index 596699fd..00000000 --- a/repos/xorg/xterm/posix-ptys.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -upr xterm-323.orig/main.c xterm-323/main.c ---- xterm-323.orig/main.c 2016-03-09 15:30:51.191053881 +0100 -+++ xterm-323/main.c 2016-03-09 15:31:17.961635229 +0100 -@@ -2654,7 +2654,7 @@ get_pty(int *pty, char *from GCC_UNUSED) - close(opened_tty); - opened_tty = -1; - } --#elif defined(HAVE_POSIX_OPENPT) && defined(HAVE_PTSNAME) && defined(HAVE_GRANTPT_PTY_ISATTY) -+#elif defined(HAVE_POSIX_OPENPT) && defined(HAVE_PTSNAME) - if ((*pty = posix_openpt(O_RDWR)) >= 0) { - char *name = ptsname(*pty); - if (name != 0) { -@@ -3735,7 +3735,7 @@ spawnXTerm(XtermWidget xw) - /* - * now in child process - */ --#if defined(_POSIX_SOURCE) || defined(SVR4) || defined(__convex__) || defined(__SCO__) || defined(__QNX__) -+#if defined(_POSIX_VERSION) || defined(SVR4) || defined(__convex__) || defined(__SCO__) || defined(__QNX__) - int pgrp = setsid(); /* variable may not be used... */ - #else - int pgrp = getpid(); |