home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / OS2 / gnuinfo.zip / info / termdep.h < prev    next >
C/C++ Source or Header  |  1997-07-15  |  2KB  |  58 lines

  1. /* termdep.h -- System things that terminal.c depends on.
  2.    $Id: termdep.h,v 1.3 1997/07/05 21:17:14 karl Exp $
  3.  
  4.    This file is part of GNU Info, a program for reading online documentation
  5.    stored in Info format.
  6.  
  7.    Copyright (C) 1993, 96, 97 Free Software Foundation, Inc.
  8.  
  9.    This program is free software; you can redistribute it and/or modify
  10.    it under the terms of the GNU General Public License as published by
  11.    the Free Software Foundation; either version 2, or (at your option)
  12.    any later version.
  13.  
  14.    This program is distributed in the hope that it will be useful,
  15.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.    GNU General Public License for more details.
  18.  
  19.    You should have received a copy of the GNU General Public License
  20.    along with this program; if not, write to the Free Software
  21.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22.  
  23.    Written by Brian Fox (bfox@ai.mit.edu). */
  24.  
  25. #ifndef INFO_TERMDEP_H
  26. #define INFO_TERMDEP_H
  27.  
  28. /* NeXT supplies <termios.h> but it is broken.  Probably Autoconf should
  29.    have a separate test, but anyway ... */
  30. #ifdef NeXT
  31. #undef HAVE_TERMIOS_H
  32. #endif
  33.  
  34. #ifdef HAVE_TERMIOS_H
  35. #  include <termios.h>
  36. #else
  37. #  if defined (HAVE_TERMIO_H)
  38. #    include <termio.h>
  39. #    if defined (HAVE_SYS_PTEM_H)
  40. #      if defined (M_UNIX) || !defined (M_XENIX)
  41. #        include <sys/stream.h>
  42. #        include <sys/ptem.h>
  43. #        undef TIOCGETC
  44. #      else /* M_XENIX */
  45. #        define tchars tc
  46. #      endif /* M_XENIX */
  47. #    endif /* HAVE_SYS_PTEM_H */
  48. #  else /* !HAVE_TERMIO_H */
  49. #    include <sgtty.h>
  50. #  endif /* !HAVE_TERMIO_H */
  51. #endif /* !HAVE_TERMIOS_H */
  52.  
  53. #ifdef HAVE_SYS_TTOLD_H
  54. #  include <sys/ttold.h>
  55. #endif /* HAVE_SYS_TTOLD_H */
  56.  
  57. #endif /* not INFO_TERMDEP_H */
  58.