comparison src/s/template.h @ 2917:725698689fbd

Some more changes from Michael K. Johnson for Linux. * s/template.h: Mention that you should #define HAVE_TERMIO or HAVE_TERMIOS, but not both, and that HAVE_TERMIOS is preferred. * systty.h (EMACS_SET_TTY_PGRP): Don't assign the return value of tcsetpgrp to *pgid; it's just a status value. * config.h.in (HAVE_RANDOM): This shouldn't be defined on Linux systems using XFree386, and perhaps is inappropriate in general. * m/intel386.h: #undefine the integer size macros, since the Linux <values.h> file #defines them itself. * mem-limits.h (get_lim_data): Linux has the ulimit call; if it fails, fall back on ULIMIT_BREAK_VALUE. * process.c: Linux needs the WAITTYPE, etc. definitions. * unexec.c (hdr, ohdr): Linux has the ordinary `struct exec' type; no need to use SYSV names. * s/linux.h: New file.
author Jim Blandy <jimb@redhat.com>
date Thu, 20 May 1993 02:14:56 +0000
parents a0f174dc6ac5
children 7d0d877f8733
comparison
equal deleted inserted replaced
2916:375bf7b38e48 2917:725698689fbd
77 #define FIRST_PTY_LETTER 'a' 77 #define FIRST_PTY_LETTER 'a'
78 78
79 /* 79 /*
80 * Define HAVE_TERMIOS if the system provides POSIX-style 80 * Define HAVE_TERMIOS if the system provides POSIX-style
81 * functions and macros for terminal control. 81 * functions and macros for terminal control.
82 *
83 * Define HAVE_TERMIO if the system provides sysV-style ioctls
84 * for terminal control.
85 *
86 * Do not define both. HAVE_TERMIOS is prefered, if it is
87 * supported on your system.
82 */ 88 */
83 89
84 #define HAVE_TERMIOS 90 #define HAVE_TERMIOS
85 91 /* #define HAVE_TERMIO */
86 /*
87 * Define HAVE_TERMIO if the system provides sysV-style ioctls
88 * for terminal control.
89 */
90
91 #define HAVE_TERMIO
92 92
93 /* 93 /*
94 * Define HAVE_TIMEVAL if the system supports the BSD style clock values. 94 * Define HAVE_TIMEVAL if the system supports the BSD style clock values.
95 * Look in <sys/time.h> for a timeval structure. 95 * Look in <sys/time.h> for a timeval structure.
96 */ 96 */