* terminal.h: Check HAVE_SGTTY_H.

This commit is contained in:
Daniel Jacobowitz 2007-02-27 17:23:34 +00:00
parent 6f8486daac
commit 64a6910722
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,8 @@
2007-02-26 Mat Hostetter <mat@lcs.mit.edu>
2007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
* terminal.h: Check HAVE_SGTTY_H.
2007-02-27 Mat Hostetter <mat@lcs.mit.edu>
* remote-utils.c (remote_open): Print out the assigned port number.

View File

@ -39,7 +39,8 @@
#undef TIOCSETP
#define TIOCSETP TCSETAF
#define TERMINAL struct termio
#else /* ! HAVE_TERMIO_H; default to SGTTY. */
#else /* ! HAVE_TERMIO_H */
#ifdef HAVE_SGTTY_H
#define HAVE_SGTTY
#include <fcntl.h>
#include <sgtty.h>
@ -47,5 +48,6 @@
#define TERMINAL struct sgttyb
#endif
#endif
#endif
#endif /* !defined (TERMINAL_H) */