comparison src/sysselect.h @ 91702:b7a5a89054dc

* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code dealing with obsolete variables. * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional. (main): Replace MAIL_PROGRAM_NAME with its value. * src/Makefile.in: * src/emacs.c: * src/gmalloc.c: * src/keyboard.c: * src/lisp.h: * src/m/ibm370aix.h: * src/process.c: * src/regex.c: * src/s/hpux.h: * src/sysdep.c: * src/sysselect.h: * src/systty.h: * src/unexec.c: * src/w32term.c: * src/xsmfns.c: * src/xterm.c: Remove code that deals with obsolete variables. * s/msdos.h (DONT_NEED_ENVIRON): Don't define. * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test, nothing else needs it anymore.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 09 Feb 2008 18:03:10 +0000
parents fc2bcd2a8aad
children 29adfc9354e7
comparison
equal deleted inserted replaced
91701:8fac5ad6ff83 91702:b7a5a89054dc
45 #define FD_CLR(n, p) (*(p) &= ~(1 << (n))) 45 #define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
46 #define FD_ISSET(n, p) (*(p) & (1 << (n))) 46 #define FD_ISSET(n, p) (*(p) & (1 << (n)))
47 #define FD_ZERO(p) (*(p) = 0) 47 #define FD_ZERO(p) (*(p) = 0)
48 #endif /* no FD_SET */ 48 #endif /* no FD_SET */
49 49
50 #if !defined (HAVE_SELECT) || defined (BROKEN_SELECT_NON_X) 50 #if !defined (HAVE_SELECT)
51 #define select sys_select 51 #define select sys_select
52 #endif 52 #endif
53 53
54 /* arch-tag: 36d05500-8cf6-4847-8e78-6721f18c06ef 54 /* arch-tag: 36d05500-8cf6-4847-8e78-6721f18c06ef
55 (do not change this comment) */ 55 (do not change this comment) */