aboutsummaryrefslogtreecommitdiff
path: root/readline/rldefs.h
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1996-08-11 22:05:41 +0000
committerFred Fish <fnf@specifix.com>1996-08-11 22:05:41 +0000
commit51da2b4a486b9ae5da28a58a74b4963a4e0ce4cb (patch)
tree0107fbcf1c90717523c2604af0812f55ff7f01be /readline/rldefs.h
parent10e3e339410a41cf27969de6a348aab27b007c89 (diff)
downloadgdb-51da2b4a486b9ae5da28a58a74b4963a4e0ce4cb.zip
gdb-51da2b4a486b9ae5da28a58a74b4963a4e0ce4cb.tar.gz
gdb-51da2b4a486b9ae5da28a58a74b4963a4e0ce4cb.tar.bz2
* rldefs.h: If __osf__is defined, include <termio.h> instead of
<sgtty.h>.
Diffstat (limited to 'readline/rldefs.h')
-rw-r--r--readline/rldefs.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/readline/rldefs.h b/readline/rldefs.h
index d6b9b06..3b7a623 100644
--- a/readline/rldefs.h
+++ b/readline/rldefs.h
@@ -65,15 +65,16 @@
/* System V machines use termio. */
#if !defined (_POSIX_VERSION)
-/* CYGNUS LOCAL accept __hpux as well as hpux for HP compiler in ANSI mode. */
-# if defined (USG) || defined (hpux) || defined (__hpux) || defined (Xenix) || defined (sgi) || defined (DGUX)
+/* CYGNUS LOCAL accept __hpux as well as hpux for HP compiler in ANSI mode.
+ Add __osf__ to list of machines to force use of termio.h */
+# if defined (USG) || defined (hpux) || defined (__hpux) || defined (Xenix) || defined (sgi) || defined (DGUX) || defined (__osf__)
# undef NEW_TTY_DRIVER
# define TERMIO_TTY_DRIVER
# include <termio.h>
# if !defined (TCOON)
# define TCOON 1
# endif
-# endif /* USG || hpux || Xenix || sgi || DUGX */
+# endif /* USG || hpux || Xenix || sgi || DUGX || __osf__ */
#endif /* !_POSIX_VERSION */
/* Posix systems use termios and the Posix signal functions. */