]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
termdep.h: If POSIX...
authorRobert Lipe <robertl@dgii.com>
Thu, 30 Oct 1997 05:55:14 +0000 (05:55 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 30 Oct 1997 05:55:14 +0000 (22:55 -0700)
        * info/termdep.h: If POSIX, #undef TIOCGETC for benefit of systems
        that provide TIOCETC but not struct tchars.

From-SVN: r16231

texinfo/ChangeLog
texinfo/info/termdep.h

index 7b72da27e03606994e8585103197da253bd825ef..59f1d9d8ba64ea35bc1feb2bbb957a958e719d1c 100644 (file)
@@ -1,3 +1,8 @@
+Wed Oct 29 22:56:46 1997 Robert Lipe  (robertl@dgii.com)
+
+       * info/termdep.h: If POSIX, #undef TIOCGETC for benefit of systems
+       that provide TIOCETC but not struct tchars.
+
 Wed Oct 15 09:49:57 1997  Richard Henderson  <rth@cygnus.com>
 
        * info/man.c (find_man_formatter): Don't cast getenv(), but provide
index 4f8ce9057ccbdb9a01d8d1b4764d00dfdb34cbea..4cad5ffd28768f95c49352dd57ada14ff3bb2f08 100644 (file)
@@ -1,5 +1,5 @@
 /* termdep.h -- System things that terminal.c depends on.
-   $Id: termdep.h,v 1.3 1996/10/02 22:23:52 karl Exp $
+   $Id: termdep.h,v 1.2 1997/10/30 05:55:14 law Exp $
 
    This file is part of GNU Info, a program for reading online documentation
    stored in Info format.
 
 #if defined (HAVE_TERMIOS_H)
 #  include <termios.h>
+/* 
+ * POSIX does not mandate that we have these and it may, in fact, be only
+ * partially implemented 
+ */
+#  undef TIOCGETC
 #else
 #  if defined (HAVE_TERMIO_H)
 #    include <termio.h>