Mercurial > hg > xemacs-beta
annotate src/m/7300.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 | c69610198c35 |
children | ecf1ebac70d8 |
rev | line source |
---|---|
428 | 1 /* machine description file for AT&T UNIX PC model 7300 |
2 Copyright (C) 1986 Free Software Foundation, Inc. | |
3 Modified for this machine by mtxinu!rtech!gonzo!daveb | |
4 | |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
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 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
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 /* The following line tells the configuration script what sort of | |
25 operating system this machine is likely to run. | |
26 USUAL-OPSYS="usg5-2-2" */ | |
27 | |
28 /* Now define a symbol for the cpu type, if your compiler | |
29 does not define it automatically: | |
30 vax, m68000, ns16000 are the ones defined so far. */ | |
31 | |
32 # ifndef mc68k | |
33 # define mc68k | |
34 # endif | |
35 #ifndef m68k | |
36 #define m68k | |
37 #endif | |
38 | |
39 /* Cause crt0.c to define errno. */ | |
40 | |
41 #define NEED_ERRNO | |
42 | |
43 /* Data type of load average, as read out of kmem. */ | |
44 /* These are commented out since it is not supported by this machine. */ | |
45 | |
46 /* #define LOAD_AVE_TYPE long */ | |
47 | |
48 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
49 | |
50 /* #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0) */ | |
51 | |
52 #ifdef __GNUC__ | |
53 | |
54 #define HAVE_ALLOCA | |
55 | |
56 #else | |
57 | |
58 #define SWITCH_ENUM_BUG | |
59 #define C_ALLOCA | |
60 #define STACK_DIRECTION -1 | |
61 | |
62 #endif | |
63 | |
64 /* We don't have memmove. */ | |
65 #define memmove(d, s, n) safe_bcopy (s, d, n) | |
66 | |
67 /* These three lines were new in 18.50. They were said to permit | |
68 a demand-paged executable, but someone else says they don't work. | |
69 Someone else says they do. They didn't work because errno was an | |
70 initialized variable in crt0.c, and because of %splimit (also therein), | |
71 both of which have been fixed now. */ | |
72 #define SECTION_ALIGNMENT 0x03ff | |
73 #define SEGMENT_MASK 0xffff | |
74 #define LD_SWITCH_MACHINE "-z" | |
75 | |
76 /* Insist on using cc when compiling this. GCC may have been | |
77 configured to use GAS syntax, which causes problems. */ | |
78 #define CRT0_COMPILE "cc -c -O -Demacs" |