summaryrefslogblamecommitdiff
path: root/user/xterm/posix-ptmx.patch
blob: 6d1a859cdc2f21b1c82490d5b9ccc47c391ae4bd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                    
                                                              







                                                                                              
                                                








                                                                                                            
--- xterm/main.c.old
+++ xterm/main.c
@@ -2892,7 +2892,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) {
@@ -4040,7 +4040,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();