1
1

* subshell.c: Use standard Autoconf symbols to determine whether

to include <stropts.h> and <grp.h>.
Этот коммит содержится в:
Pavel Roskin 2001-08-24 04:51:11 +00:00
родитель 1ef3477bf5
Коммит 9466c031d8
2 изменённых файлов: 10 добавлений и 7 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2001-08-24 Pavel Roskin <proski@gnu.org>
* subshell.c: Use standard Autoconf symbols to determine whether
to include <stropts.h> and <grp.h>.
2001-08-23 Pavel Roskin <proski@gnu.org>
* subshell.c (feed_subshell): Don't wait forever after the first

Просмотреть файл

@ -66,15 +66,13 @@
# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
#endif
#ifdef HAVE_GRANTPT
# include <stropts.h> /* For I_PUSH */
#else
# include <grp.h> /* For the group struct & getgrnam() */
#endif
#ifdef HAVE_STROPTS_H
# include <stropts.h> /* For I_PUSH */
#endif /* HAVE_STROPTS_H */
#ifdef SCO_FLAVOR
#ifdef HAVE_GRP_H
# include <grp.h> /* For the group struct & getgrnam() */
#endif /* SCO_FLAVOR */
#endif /* HAVE_GRP_H */
#ifdef __QNX__
# include <unix.h> /* exec*() from <process.h> */