void-packages/srcpkgs/xterm/patches/musl.patch
Andrea Brancaleoni 652694d5e1 xterm: musl fix
2015-08-29 02:21:45 +02:00

21 lines
844 B
Diff

--- main.c.orig 2015-08-19 00:25:35.000000000 +0000
+++ main.c 2015-08-28 23:43:21.631378928 +0000
@@ -2628,7 +2628,7 @@
#if defined(USE_OPENPTY)
result = openpty(pty, &opened_tty, ttydev, NULL, NULL);
-#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) {
@@ -3708,7 +3708,7 @@
/*
* 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();