Mercurial > emacs
view src/s/isc2-2.h @ 83386:db4e74787e6f
Merged from miles@gnu.org--gnu-2005 (patch 133-141, 596-609)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-596
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-597
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-598
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-599
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-600
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-601
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-602
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-603
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-604
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-605
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-606
Remove lisp/toolbar directory
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-607
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-608
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-609
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-133
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-134
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-135
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-136
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-137
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-138
Update from CVS: texi/gnus.texi (RSS): Fix key description.
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-139
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-140
Update from CVS
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-141
Update from CVS: texi/gnus.texi (Document Server Internals): Addition.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-426
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Wed, 19 Oct 2005 14:06:17 +0000 |
parents | 695cf19ef79e |
children | 3e383495c511 375f2633d815 |
line wrap: on
line source
/* system description file for Interactive (ISC) Unix version 2.2 on the 386. */ #include "usg5-3.h" /* select (in -linet) works okay on X ptys, but not on the serial port. karl@cs.umb.edu says that with that select call, subprocesses made by (e.g.) M-x grep don't exit cleanly, they just hang. Similar problems have been observed in ISC 3.0. */ #define BROKEN_SELECT_NON_X /* karl@cs.umb.edu says that ISC's socket support (in -linet) isn't what Emacs needs; it makes interrupt-shell-subjob and the like do nothing. But that appears to have been another manifestation of the broken select, so it should now be safe to define this again. */ #define HAVE_SOCKETS #define NO_SOCKETS_IN_FILE_SYSTEM #define NEED_NET_ERRNO_H /* This keeps the .cdbx section that gcc puts out when generating stabs-in-coff output, so Emacs can be debugged. --karl@cs.umb.edu. */ #define USG_SHARED_LIBRARIES /* We can support lock files. */ #define CLASH_DETECTION #define NO_FCHMOD #define HAVE_PTYS #define MAXNAMLEN 512 #define O_NDELAY O_NONBLOCK #define MEMORY_IN_STRING_H /* Tell gmalloc.c that we don't have memmove (system include files to the contrary!). */ #define MEMMOVE_MISSING /* Send a signal to a subprocess by "typing" a signal character. */ #define SIGNALS_VIA_CHARACTERS /* -lPW is only needed if not using Gcc. We used to include -lcposix here for the rename function, but some people say ISC's rename doesn't work correctly with Emacs so we use Emacs' emulation instead. */ #if defined (__GNUC__) # define LIB_STANDARD_1 -lcposix #else /* !__GNUC__ */ # define LIB_STANDARD_1 -lPW #endif /* !__GNUC__ */ /* LIB_STANDARD_1 is used both here and in LIBS_SYSTEM (the latter for the sake of configure). */ #define LIB_STANDARD LIB_STANDARD_1 -lc #define NO_X_DESTROY_DATABASE /* -linet may be needed to avoid undefined symbols such as gethostname, inet_addr, gethostbyname, socket, connect, ... */ #define LIBS_SYSTEM -linet LIB_STANDARD_1 /* This system has job control. */ #undef NOMULTIPLEJOBS /* Inhibit asm code in netinet/in.h. Strictly speaking, only necessary when -traditional is being used, but it doesn't hurt to unconditionally define this. */ #define NO_ASM /* -traditional is not necessary if the system header files are fixed to define getc and putc in the absence of _POSIX_SOURCE. GCC's from 2.4.4 on do this. */ #if !defined (__GNUC__) || __GNUC__ < 2 # define C_SWITCH_SYSTEM -traditional #endif /* Some versions of ISC are said to define S_IFLNK even tho they don't really support symlinks. */ #undef S_IFLNK /* arch-tag: 4de02713-eac5-4360-9d36-fd82c7a3ae44 (do not change this comment) */