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
/* Define to 1 if you have the <assert.h> 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 <clocale> header file. */
#undef HAVE_CLOCALE
/* 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
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 \
-case "$host_alias" in
- *ultrix) ac_cv_func_setsid='no' ;;
- *) break;;
-esac
-
-
-
-
-
for ac_func in \
- atexit \
revoke \
unsetenv \
setutent \
seteuid \
setreuid \
- setsid \
- setpgrp \
- setpgid \
_getpty \
getpt \
posix_openpt \
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)