emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101503: Remove HAVE_TERMIOS definiti


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101503: Remove HAVE_TERMIOS definitions.
Date: Mon, 20 Sep 2010 14:38:50 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101503
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Mon 2010-09-20 14:38:50 +0300
message:
  Remove HAVE_TERMIOS definitions.
  * src/s/usg5-4-common.h (HAVE_TERMIOS):
  * src/s/template.h (HAVE_TERMIOS):
  * src/s/gnu-linux.h (HAVE_TERMIOS):
  * src/s/darwin.h (HAVE_TERMIOS):
  * src/s/cygwin.h (HAVE_TERMIOS):
  * src/s/bsd-common.h (HAVE_TERMIOS):
  * src/s/aix4-2.h (HAVE_TERMIOS):
  * src/s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
  defined on all non-MS platforms.
  (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
modified:
  src/ChangeLog
  src/s/aix4-2.h
  src/s/bsd-common.h
  src/s/cygwin.h
  src/s/darwin.h
  src/s/gnu-linux.h
  src/s/hpux10-20.h
  src/s/template.h
  src/s/usg5-4-common.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-09-20 11:32:26 +0000
+++ b/src/ChangeLog     2010-09-20 11:38:50 +0000
@@ -1,5 +1,17 @@
 2010-09-20  Dan Nicolaescu  <address@hidden>
 
+       Remove HAVE_TERMIOS definitions.
+       * s/usg5-4-common.h (HAVE_TERMIOS):
+       * s/template.h (HAVE_TERMIOS):
+       * s/gnu-linux.h (HAVE_TERMIOS):
+       * s/darwin.h (HAVE_TERMIOS):
+       * s/cygwin.h (HAVE_TERMIOS):
+       * s/bsd-common.h (HAVE_TERMIOS):
+       * s/aix4-2.h (HAVE_TERMIOS):
+       * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
+       defined on all non-MS platforms.
+       (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
+
        * xterm.c (xt_action_hook): Use const.
 
 2010-09-20  Juanma Barranquero  <address@hidden>

=== modified file 'src/s/aix4-2.h'
--- a/src/s/aix4-2.h    2010-08-20 22:36:07 +0000
+++ b/src/s/aix4-2.h    2010-09-20 11:38:50 +0000
@@ -37,10 +37,6 @@
 #define PTY_NAME_SPRINTF strcpy (pty_name, "/dev/ptc");
 #define PTY_TTY_NAME_SPRINTF strcpy (pty_name, ttyname (fd));
 
-/* Define HAVE_TERMIO if the system provides sysV-style ioctls
-   for terminal control.  */
-#define HAVE_TERMIOS
-
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
 

=== modified file 'src/s/bsd-common.h'
--- a/src/s/bsd-common.h        2010-07-29 20:01:08 +0000
+++ b/src/s/bsd-common.h        2010-09-20 11:38:50 +0000
@@ -42,7 +42,6 @@
 #undef KERNEL_FILE
 #undef LDAV_SYMBOL
 
-#define HAVE_TERMIOS
 #define NO_TERMIO
 
 /* If the system's imake configuration file defines `NeedWidePrototypes'

=== modified file 'src/s/cygwin.h'
--- a/src/s/cygwin.h    2010-07-29 20:01:08 +0000
+++ b/src/s/cygwin.h    2010-09-20 11:38:50 +0000
@@ -45,16 +45,6 @@
    through a pipe. */
 #undef INTERRUPT_INPUT
 
-/* Define HAVE_TERMIOS if the system provides POSIX-style
-   functions and macros for terminal control.
-
-   Define HAVE_TERMIO if the system provides sysV-style ioctls
-   for terminal control.
-
-   Do not define both.  HAVE_TERMIOS is preferred, if it is
-   supported on your system.  */
-#define HAVE_TERMIOS
-
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
 #define PTY_ITERATION          for (i = 0; i < 1; i++) /* ick */

=== modified file 'src/s/darwin.h'
--- a/src/s/darwin.h    2010-07-08 03:03:52 +0000
+++ b/src/s/darwin.h    2010-09-20 11:38:50 +0000
@@ -63,15 +63,6 @@
   if system supports pty's.  'a' means it is /dev/ptya0  */
 #define FIRST_PTY_LETTER 'p'
 
-/* Define HAVE_TERMIOS if the system provides POSIX-style
-   functions and macros for terminal control.
-
-   Define HAVE_TERMIO if the system provides sysV-style ioctls
-   for terminal control.
-
-   Do not define both.  HAVE_TERMIOS is preferred, if it is supported
-   on your system. */
-#define HAVE_TERMIOS
 #define NO_TERMIO
 
 /* Define HAVE_PTYS if the system supports pty devices.

=== modified file 'src/s/gnu-linux.h'
--- a/src/s/gnu-linux.h 2010-07-29 20:01:08 +0000
+++ b/src/s/gnu-linux.h 2010-09-20 11:38:50 +0000
@@ -80,10 +80,6 @@
 
 #endif  /* not HAVE_GRANTPT */
 
-/*  Define HAVE_TERMIOS if the system provides POSIX-style
-    functions and macros for terminal control.  */
-#define HAVE_TERMIOS
-
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
 

=== modified file 'src/s/hpux10-20.h'
--- a/src/s/hpux10-20.h 2010-08-22 20:02:16 +0000
+++ b/src/s/hpux10-20.h 2010-09-20 11:38:50 +0000
@@ -35,11 +35,8 @@
    if system supports pty's.  'p' means it is /dev/ptym/ptyp0  */
 #define FIRST_PTY_LETTER 'p'
 
-#define HAVE_TERMIOS
 #define NO_TERMIO
 
-#define ORDINARY_LINK
-
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
 
@@ -78,9 +75,6 @@
    HP-UX 10.20, and that it works for HP-UX 0 as well.  */
 #define NO_EDITRES
 
-/* Tested in getloadavg.c.  */
-#define HAVE_PSTAT_GETDYNAMIC
-
 /* Eric Backus <address@hidden> says, HP-UX 9.x on HP 700 machines
    has a broken `rint' in some library versions including math library
    version number A.09.05.

=== modified file 'src/s/template.h'
--- a/src/s/template.h  2010-07-29 03:25:08 +0000
+++ b/src/s/template.h  2010-09-20 11:38:50 +0000
@@ -63,18 +63,6 @@
    if system supports pty's.  'a' means it is /dev/ptya0.  */
 #define FIRST_PTY_LETTER 'a'
 
-/* Define HAVE_TERMIOS if the system provides POSIX-style
-   functions and macros for terminal control.
-
-   Define HAVE_TERMIO if the system provides sysV-style ioctls
-   for terminal control.
-
-   Do not define both.  HAVE_TERMIOS is preferred, if it is
-   supported on your system.  */
-
-#define HAVE_TERMIOS
-/* #define HAVE_TERMIO */
-
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
 

=== modified file 'src/s/usg5-4-common.h'
--- a/src/s/usg5-4-common.h     2010-07-29 20:01:08 +0000
+++ b/src/s/usg5-4-common.h     2010-09-20 11:38:50 +0000
@@ -31,10 +31,6 @@
    It sets the Lisp variable system-type.  */
 #define SYSTEM_TYPE "usg-unix-v"
 
-/* Define HAVE_TERMIO if the system provides sysV-style ioctls
-   for terminal control.  */
-#define HAVE_TERMIO
-
 /* The file containing the kernel's symbol table is called /unix.  */
 #define KERNEL_FILE "/unix"
 
@@ -78,7 +74,6 @@
 
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
-#define HAVE_TERMIOS
 
 /* It is possible to receive SIGCHLD when there are no children
    waiting, because a previous waitsys(2) cleaned up the carcass of child


reply via email to

[Prev in Thread] Current Thread [Next in Thread]