Mercurial > hg > xemacs-beta
annotate src/s/irix5-0.h @ 1346:01c57eb70ae9
[xemacs-hg @ 2003-03-09 02:27:27 by ben]
To: xemacs-patches@xemacs.org
i.c: Sleep between calls to check for I/O, since these calls are non-blocking.
behavior.el: Allow other keywords for forward compatibility.
cl-macs.el: Rewrite to eliminate byte-compiler warning when `return' is used
without `finally'.
cmdloop.el: Avoid truncated error messages for `end-of-file' and the like.
cmdloop.el: Avoid char-int error after syncing.
files.el: Eliminate byte-compile warnings.
printer.el: Fix line-width calculations.
#### This used to work. Someone's changes (perhaps by
Michael Sperber?) seem to have messed something up.
simple.el: Use new clear-left-side functions to avoid messages ending up on
the same line as other output.
xemacs.mak: Add override for info/ as well when separate source/build dirs.
xemacs.mak: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
Makefile.in.in: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
alloc.c: Don't arbitrarily clear Vconfigure_info_directory since it
messes up separate build/source dirs.
console.c, console.h, device-msw.c, device.c: Add accidentally omitted msprinter console and data descriptions.
print.c, console-msw.c: Add clear-left-side functionality to help keep stdio/stderr
output from separate sources on separate lines. Generalize
the different kinds of debugging output. Add dpa().
profile.c: Add better docs on Unix/Windows differences.
regex.c: Fix problems with rel-alloc compilation caused by previous patch.
emacs.c: Seg fault rather than abort on Cygwin, since gdb doesn't trap
aborts properly.
console-gtk-impl.h, console-gtk.h, console-msw.h, console-x-impl.h, console-x.h, dialog-gtk.c, dialog-x.c, event-msw.c, frame-gtk.c, frame-x.c, frameslots.h, glyphs-gtk.c, glyphs-x.c, gui-gtk.c, gui-x.c, inline.c, menubar-gtk.c, menubar-msw.c, menubar-x.c, scrollbar-gtk.c, scrollbar-x.c, ui-gtk.c: Delete popup-data object. Delete menubar_data field from frames,
since its usage is frame-specific. Delete menubar-msw.h,
gui-x.h, gui-gtk.h. Clean up handling of lwlib callback data
GCPRO'ing and add missing GCPRO recomputation in widget code.
author | ben |
---|---|
date | Sun, 09 Mar 2003 02:27:46 +0000 |
parents | abe6d1db359e |
children |
rev | line source |
---|---|
428 | 1 /* Synched up with: FSF 19.31. */ |
2 | |
3 #include "usg5-4.h" | |
4 | |
5 #define IRIX5 | |
6 | |
7 #ifdef LIBS_SYSTEM | |
8 #undef LIBS_SYSTEM | |
9 #endif | |
10 | |
11 #ifdef LIB_STANDARD | |
12 #undef LIB_STANDARD | |
13 #endif | |
14 | |
15 #ifdef SYSTEM_TYPE | |
16 #undef SYSTEM_TYPE | |
17 #endif | |
18 #define SYSTEM_TYPE "irix" | |
19 | |
20 #ifdef SETUP_SLAVE_PTY | |
21 #undef SETUP_SLAVE_PTY | |
22 #endif | |
23 | |
24 /* jpff@maths.bath.ac.uk reports `struct exception' is not defined | |
25 on this system, so inhibit use of matherr. */ | |
26 #define NO_MATHERR | |
27 | |
28 /* Ulimit(UL_GMEMLIM) is busted... */ | |
29 #define ULIMIT_BREAK_VALUE 0x14000000 | |
30 | |
31 /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ | |
32 #define PREFER_VSUSP | |
33 | |
34 /* define MAIL_USE_FLOCK if the mailer uses flock | |
35 to interlock access to /usr/spool/mail/$USER. | |
36 The alternative is that a lock file named | |
37 /usr/spool/mail/$USER.lock. */ | |
38 | |
39 #define MAIL_USE_FLOCK | |
40 | |
41 /* use K&R C */ | |
42 /* XEmacs change -- use ANSI, not K&R */ | |
43 #ifndef __GNUC__ | |
44 #define C_SWITCH_SYSTEM "-xansi" | |
45 #endif | |
46 | |
47 /* jackr@engr.sgi.com says that you can't mix different kinds of | |
48 signal-handling functions under IRIX 5.3. I'm going to assume | |
49 that that was the reason this got broken. Now that the | |
50 signal routines are fixed up, maybe this will work. --ben */ | |
51 /* Nope, it doesn't. I've tried lots of things; it must be | |
52 genuinely broken. */ | |
53 /* XEmacs addition: People on IRIX 5.2 and IRIX 5.3 systems have | |
54 reported that they can't break out of (while t) using C-g or C-G. | |
55 This does not occur on other systems, so let's assume that SIGIO | |
56 is broken on these systems. */ | |
57 #define BROKEN_SIGIO |