This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[eliz@is.elta.co.il: Terminal support in DJGPP port of GDB]


------- Start of forwarded message -------
Date: Sun, 27 Jun 1999 19:13:18 +0300 (IDT)
From: Eli Zaretskii <eliz@is.elta.co.il>
X-Sender: eliz@is
To: DJ Delorie <dj@delorie.com>
cc: Robert Hoehne <robert.hoehne@gmx.net>
Subject: Terminal support in DJGPP port of GDB
Content-Type: TEXT/PLAIN; charset=US-ASCII

1999-06-26  Eli Zaretskii  <eliz@is.elta.co.il>

	* terminal.h [__GO32__]: Remove conditional; DJGPP now supports
	termios.

*** cvs/gdb/terminal.h	Fri Apr 16 04:34:06 1999
- --- ./gdb/terminal.h	Fri May 21 22:44:08 1999
*************** Foundation, Inc., 59 Temple Place - Suit
*** 29,36 ****
     nothing has already defined the one of the names, and do the right
     thing. */
  
- - /* nothing works with go32, and the headers aren't complete */
- - #if !defined (__GO32__)
  #if !defined (HAVE_TERMIOS) && !defined(HAVE_TERMIO) && !defined(HAVE_SGTTY)
  #if defined(HAVE_TERMIOS_H)
  #define HAVE_TERMIOS
- --- 29,34 ----
*************** Foundation, Inc., 59 Temple Place - Suit
*** 44,56 ****
  #endif /* ! defined (HAVE_TERMIO_H) */
  #endif /* ! defined (HAVE_TERMIOS_H) */
  #endif /* !defined (HAVE_TERMIOS) && !defined(HAVE_TERMIO) && !defined(HAVE_SGTTY) */
- - #endif /* ! defined (__GO32__) */
  
  #if defined(HAVE_TERMIOS)
  #include <termios.h>
  #endif
  
! #if !defined(__GO32__) && !defined(_WIN32) && !defined (HAVE_TERMIOS)
  
  /* Define a common set of macros -- BSD based -- and redefine whatever
     the system offers to make it look like that.  FIXME: serial.h and
- --- 42,53 ----
  #endif /* ! defined (HAVE_TERMIO_H) */
  #endif /* ! defined (HAVE_TERMIOS_H) */
  #endif /* !defined (HAVE_TERMIOS) && !defined(HAVE_TERMIO) && !defined(HAVE_SGTTY) */
  
  #if defined(HAVE_TERMIOS)
  #include <termios.h>
  #endif
  
! #if !defined(_WIN32) && !defined (HAVE_TERMIOS)
  
  /* Define a common set of macros -- BSD based -- and redefine whatever
     the system offers to make it look like that.  FIXME: serial.h and
------- End of forwarded message -------

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]