From: root Date: Tue, 17 Jan 2006 11:53:07 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=c39a07997162cc775f927703049f7376722d4e62;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index b45ef34c..4e92b8c7 100644 --- a/Changes +++ b/Changes @@ -32,6 +32,7 @@ WISH: support tex fonts anymore. - add tsl/fsl and related capabilities to the terminfo description, to set the window title. + - nuked QNX support. 7.0 Fri Jan 13 14:02:18 CET 2006 - added sections for DISTRIBUTION MAINTAINERS and about diff --git a/autoconf/config.h.in b/autoconf/config.h.in index e169fdc1..618f8ad9 100644 --- a/autoconf/config.h.in +++ b/autoconf/config.h.in @@ -39,9 +39,6 @@ /* Define to 1 if you have the header file. */ #undef HAVE_ASSERT_H -/* Define to 1 if you have the `atexit' function. */ -#undef HAVE_ATEXIT - /* Define to 1 if you have the header file. */ #undef HAVE_CLOCALE @@ -108,18 +105,9 @@ /* Define if plain old setlocale works */ #undef HAVE_SETLOCALE -/* Define to 1 if you have the `setpgid' function. */ -#undef HAVE_SETPGID - -/* Define to 1 if you have the `setpgrp' function. */ -#undef HAVE_SETPGRP - /* Define to 1 if you have the `setreuid' function. */ #undef HAVE_SETREUID -/* Define to 1 if you have the `setsid' function. */ -#undef HAVE_SETSID - /* Define to 1 if you have the `setutent' function. */ #undef HAVE_SETUTENT diff --git a/autoconf/configure.in b/autoconf/configure.in index 201079be..a4c7e0bb 100644 --- a/autoconf/configure.in +++ b/autoconf/configure.in @@ -712,22 +712,12 @@ dnl# -------------------------------------------------------------------------- AC_TYPE_SIGNAL dnl> AC_FUNC_VPRINTF -dnl# Note: On Ultrix, setsid() does weirdo stuff, disable it -case "$host_alias" in - *ultrix) ac_cv_func_setsid='no' ;; - *) break;; -esac - AC_CHECK_FUNCS( \ - atexit \ revoke \ unsetenv \ setutent \ seteuid \ setreuid \ - setsid \ - setpgrp \ - setpgid \ _getpty \ getpt \ posix_openpt \ diff --git a/configure b/configure index 585437c9..5506a10b 100755 --- a/configure +++ b/configure @@ -10132,15 +10132,6 @@ _ACEOF -case "$host_alias" in - *ultrix) ac_cv_func_setsid='no' ;; - *) break;; -esac - - - - - @@ -10158,15 +10149,11 @@ esac for ac_func in \ - atexit \ revoke \ unsetenv \ setutent \ seteuid \ setreuid \ - setsid \ - setpgrp \ - setpgid \ _getpty \ getpt \ posix_openpt \ diff --git a/src/ptytty.C b/src/ptytty.C index e58641e8..d8fa3bd2 100644 --- a/src/ptytty.C +++ b/src/ptytty.C @@ -227,29 +227,7 @@ control_tty (int fd_tty) int fd; /* ---------------------------------------- */ -# ifdef HAVE_SETSID setsid (); -# endif -# if defined(HAVE_SETPGID) - setpgid (0, 0); -# elif defined(HAVE_SETPGRP) - setpgrp (0, 0); -# endif - - /* ---------------------------------------- */ -# ifdef TIOCNOTTY - fd = open ("/dev/tty", O_RDWR | O_NOCTTY); - if (fd >= 0) - { - ioctl (fd, TIOCNOTTY, NULL); /* void tty associations */ - close (fd); - } -# endif - - /* ---------------------------------------- */ - fd = open ("/dev/tty", O_RDWR | O_NOCTTY); - if (fd >= 0) - close (fd); /* ouch: still have controlling tty */ /* ---------------------------------------- */ # if defined(PTYS_ARE_PTMX) && defined(I_PUSH)