* updated kwordquiz (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / x11 / xterm / posix-ptys.patch.musl
blob54020d53e92887a7c9efe25ae868737af8adcc30
1 there is no test to define HAVE_GRANTPT_PTY_ISATTY and
2 _POSIX_SOURCE is app-defined not system
3 This fix ptys and launching xterm
5 Upstream-Status: Pending
7 Suggested By Rich Felker
8 Signed-off-by: Khem Raj <raj.khem@gmail.com>
10 --- a/main.c
11 +++ b/main.c
12 @@ -2892,7 +2892,7 @@ get_pty(int *pty, char *from GCC_UNUSED)
13         close(opened_tty);
14         opened_tty = -1;
15      }
16 -#elif defined(HAVE_POSIX_OPENPT) && defined(HAVE_PTSNAME) && defined(HAVE_GRANTPT_PTY_ISATTY)
17 +#elif defined(HAVE_POSIX_OPENPT) && defined(HAVE_PTSNAME)
18      if ((*pty = posix_openpt(O_RDWR)) >= 0) {
19         char *name = ptsname(*pty);
20         if (name != 0) {
21 @@ -4040,7 +4040,7 @@ spawnXTerm(XtermWidget xw, unsigned line
22             /*
23              * now in child process
24              */
25 -#if defined(_POSIX_SOURCE) || defined(SVR4) || defined(__convex__) || defined(__SCO__) || defined(__QNX__)
26 +#if defined(_POSIX_VERSION) || defined(SVR4) || defined(__convex__) || defined(__SCO__) || defined(__QNX__)
27             int pgrp = setsid();        /* variable may not be used... */
28  #else
29             int pgrp = getpid();