Mercurial > hg > xemacs-beta
annotate src/s/dgux5-4r3.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 | 023b83f4e54b |
children |
rev | line source |
---|---|
613 | 1 /* Definitions file for XEmacs running on Data General's DG/UX |
428 | 2 version 5.4 Release 3.00 and above. |
3 Copyright (C) 1994 Free Software Foundation, Inc. | |
4 | |
613 | 5 This file is part of XEmacs. |
428 | 6 |
613 | 7 XEmacs is free software; you can redistribute it and/or modify |
428 | 8 it under the terms of the GNU General Public License as published by |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
11 | |
613 | 12 XEmacs is distributed in the hope that it will be useful, |
428 | 13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
21 | |
22 /* Synched up with: FSF 19.31. */ | |
23 | |
24 /* NOTE: DGUX5.4R3.00 will not build with the delivered gcc-2.4.5 | |
25 compiler. You must upgraded to at least gcc-2.5.8. If you are | |
26 running DGUX 5.4R3.00 check on the system dg-rtp.dg.com:/pub/gnu | |
27 for gcc-2.5.8 or later compiler. | |
28 -pmr@pajato.com */ | |
29 | |
30 #include "dgux5-4r2.h" | |
31 | |
32 /* DGUX 5.4R3.00 brought the definition of `struct inet_addr' into | |
33 compliance with the majority of Unix systems. The workaround | |
34 introduced in 5.4R2 is no longer necessary. */ | |
35 | |
36 #ifdef HAVE_BROKEN_INET_ADDR | |
37 #undef HAVE_BROKEN_INET_ADDR | |
38 #endif | |
39 | |
40 /* Under DGUX 5.4R3.00, getting a debuggable executable has been | |
41 greatly simplified and applies to either COFF or ELF | |
42 environments. */ | |
43 | |
44 #ifdef C_DEBUG_SWITCH | |
45 #undef C_DEBUG_SWITCH | |
46 #define C_DEBUG_SWITCH "-g" | |
47 #endif | |
48 | |
49 /* Define the following to avoid conflicts resulting from the fact | |
50 that conflicting baud rate definitions occur when loading both | |
51 termio.h and termios.h, which is unavoidable because of the need to | |
52 load curses.h. */ | |
53 #define _POSIX_BAUD_RATE_FLAVOR |