Mercurial > emacs
annotate src/s/sunos4-0.h @ 58465:02afd0c73e8e
(math-svo-c, math-svo-wid, math-svo-off): New variables.
(math-stack-value-offset-fancy): Replace variables c, wid and off
by declared variables.
(math-comp-just, math-comp-comma-spc): New variables.
(math-compose-expr, math-compose-matrix): Replace variable just by
declared variable.
(math-comp-vector-prec): New variable.
(math-compose-expr, math-compose-matrix, math-compose-rows): Replace
variable vector-prec by declared variable.
(math-comp-left-bracket, math-comp-right-bracket, math-comp-comma): New variables.
(math-compose-expr, math-compose-rows): Replace variables left-bracket,
right-bracket and comma by declared variables.
(math-comp-full-width): New variable.
(math-comp-to-string-flat, math-comp-to-string-flat-term): Replace
variable full-width by declared variable.
(math-comp-sel-tag): Declared it.
(math-comp-highlight, math-comp-word, math-comp-level)
(math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
(math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
New variables.
(math-comp-to-string-flat, math-comp-to-string-flat-term)
(math-comp-sel-flat-term): Replace variables comp-highlight, comp-word,
comp-level, comp-margin, comp-pos and comp-buf by declared variables.
(math-comp-simplify, math-comp-simplify-term, math-comp-add-string)
(math-comp-add-string-sel): Replace variables comp-highlight,
comp-buf, comp-base, comp-height, comp-tag, comp-hpos and comp-vpos
by declared variables.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Wed, 24 Nov 2004 05:59:23 +0000 |
parents | 695cf19ef79e |
children | bbb115bb1b44 375f2633d815 |
rev | line source |
---|---|
457 | 1 #include "bsd4-2.h" |
2 | |
8757 | 3 #ifndef SUNOS4 |
4 #define SUNOS4 | |
5 #endif | |
6 | |
457 | 7 #if 0 /* This may have been needed for an earlier version of Sun OS 4. |
8 It seems to cause warnings in 4.0.3 and 4.1. */ | |
9 #define O_NDELAY FNDELAY /* Non-blocking I/O (4.2 style) */ | |
10 #endif | |
11 | |
7140
c2e4cc470ade
(LD_SWITCH_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6820
diff
changeset
|
12 /* We use the Sun syntax -Bstatic unconditionally, because even when we |
c2e4cc470ade
(LD_SWITCH_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6820
diff
changeset
|
13 use GCC, these are passed through to the linker, not handled by GCC |
c2e4cc470ade
(LD_SWITCH_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6820
diff
changeset
|
14 directly. */ |
18569
b751e29103f4
(LD_SWITCH_SYSTEM_TEMACS): Defined. Move -e here.
Richard M. Stallman <rms@gnu.org>
parents:
8757
diff
changeset
|
15 #define LD_SWITCH_SYSTEM -Bstatic |
b751e29103f4
(LD_SWITCH_SYSTEM_TEMACS): Defined. Move -e here.
Richard M. Stallman <rms@gnu.org>
parents:
8757
diff
changeset
|
16 |
b751e29103f4
(LD_SWITCH_SYSTEM_TEMACS): Defined. Move -e here.
Richard M. Stallman <rms@gnu.org>
parents:
8757
diff
changeset
|
17 /* We use this for linking temacs, but not for other programs |
b751e29103f4
(LD_SWITCH_SYSTEM_TEMACS): Defined. Move -e here.
Richard M. Stallman <rms@gnu.org>
parents:
8757
diff
changeset
|
18 or for tests in configure. */ |
b751e29103f4
(LD_SWITCH_SYSTEM_TEMACS): Defined. Move -e here.
Richard M. Stallman <rms@gnu.org>
parents:
8757
diff
changeset
|
19 #define LD_SWITCH_SYSTEM_TEMACS -e __start |
457 | 20 |
21 /* In SunOS 4.1, a static function called by tzsetwall reportedly | |
22 clears the byte just past an eight byte region it mallocs, corrupting | |
23 GNU malloc's memory pool. But Sun's malloc doesn't seem to mind. */ | |
24 | |
25 #define SYSTEM_MALLOC | |
5681
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
26 |
26528
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
27 /* SunOS 4.x cc <stdlib.h> declares abort and free to return int. */ |
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
28 |
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
29 #ifndef __STDC__ |
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
30 #define ABORT_RETURN_TYPE int |
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
31 #define FREE_RETURN_TYPE int |
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
32 #endif |
6b226f263365
(ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
Paul Eggert <eggert@twinsun.com>
parents:
18569
diff
changeset
|
33 |
5681
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
34 #ifdef __GNUC__ |
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
35 /* We must define mkdir with this arg prototype |
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
36 to match GCC's fixed stat.h. */ |
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
37 #define MKDIR_PROTOTYPE \ |
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
38 int mkdir (const char *dpath, unsigned short dmode) |
4524a1b19b67
[__GNUC__] (MKDIR_PROTOTYPE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
457
diff
changeset
|
39 #endif /* __GNUC__ */ |
30426
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
40 |
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
41 /* Must use the system's termcap, if we use any termcap. |
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
42 It does special things. */ |
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
43 |
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
44 #ifndef TERMINFO |
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
45 #define LIBS_TERMCAP -ltermcap |
8674e7d48c7a
(LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents:
26528
diff
changeset
|
46 #endif |
49356
fbabb532002e
(GC_SETJMP_WORKS, GC_MARK_STACK): Define.
Dave Love <fx@gnu.org>
parents:
30426
diff
changeset
|
47 |
fbabb532002e
(GC_SETJMP_WORKS, GC_MARK_STACK): Define.
Dave Love <fx@gnu.org>
parents:
30426
diff
changeset
|
48 #define GC_SETJMP_WORKS 1 |
fbabb532002e
(GC_SETJMP_WORKS, GC_MARK_STACK): Define.
Dave Love <fx@gnu.org>
parents:
30426
diff
changeset
|
49 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS |
52401 | 50 |
51 /* arch-tag: 362f3bfc-810d-4f6e-9b83-5a32f8f1a926 | |
52 (do not change this comment) */ |