aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorDan Nicolaescu2008-07-13 07:35:26 +0000
committerDan Nicolaescu2008-07-13 07:35:26 +0000
commitbdee2ef3fab9b8a434d41c1f95c3f98aa342008b (patch)
tree611a86007793d85fdbad7189d3e7a50adc319079 /src/sysdep.c
parentf06b5ed2ce9329fb6112f2ccfd7e3271c5cbe70c (diff)
downloademacs-bdee2ef3fab9b8a434d41c1f95c3f98aa342008b.tar.gz
emacs-bdee2ef3fab9b8a434d41c1f95c3f98aa342008b.zip
* config.nt (HAVE_FACES): Remove, unused.
* s/vms.h: Use __GNUC__ instead of _GNUC_. * m/macppc.h: * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals. * m/ibms390x.h (XINT, XUINT): Don't define, same as the default (SPECIAL_EMACS_INT): * m/ia64.h (SPECIAL_EMACS_INT): * m/amdx86-64.h (SPECIAL_EMACS_INT): * s/gnu.h (NLIST_STRUCT): * aix4-2.h (X11R5_INHIBIT_I18N): * s/gnu-linux.h (LINUX): * s/msdos.h (HAVE_FACES): * s/ms-w32.h (HAVE_FACES): Don't define, unused. * systty.h: * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used anymore.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 4e9631dbba1..ef56346a313 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -1866,7 +1866,7 @@ setup_pty (fd)
1866 Since the latter lossage is more benign, we may as well 1866 Since the latter lossage is more benign, we may as well
1867 lose that way. -- cph */ 1867 lose that way. -- cph */
1868#ifdef FIONBIO 1868#ifdef FIONBIO
1869#if defined(SYSV_PTYS) || defined(UNIX98_PTYS) 1869#if defined(UNIX98_PTYS)
1870 { 1870 {
1871 int on = 1; 1871 int on = 1;
1872 ioctl (fd, FIONBIO, &on); 1872 ioctl (fd, FIONBIO, &on);