Mercurial > emacs
annotate src/s/aix3-2-5.h @ 15701:5db02009315e libc-1-93 libc-960716 libc-960717 libc-960718 libc-960719 libc-960720 libc-960721 libc-960722 libc-960723 libc-960724 libc-960725 libc-960726 libc-960727 libc-960728 libc-960729 libc-960730 libc-960731 libc-960801 libc-960802 libc-960803 libc-960804 libc-960805 libc-960806 libc-960807 libc-960808 libc-960809 libc-960810 libc-960811 libc-960812 libc-960813 libc-960814 libc-960815 libc-960816 libc-960817 libc-960818 libc-960819 libc-960820 libc-960821 libc-960822 libc-960823 libc-960824 libc-960825 libc-960826 libc-960827 libc-960828 libc-960829 libc-960830 libc-960831 libc-960901 libc-960902 libc-960903 libc-960904 libc-960905 libc-960906 libc-960907 libc-960908 libc-960909 libc-960910 libc-960911 libc-960912 release-0-0 release-0-1
Fix previous change. Use sed's y command instead.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 16 Jul 1996 04:47:46 +0000 |
parents | 004a081ecdef |
children | aa2f8bc34e57 |
rev | line source |
---|---|
6128 | 1 /* s- file for building Emacs on AIX 3.2.5. */ |
2 | |
3 #include "aix3-2.h" | |
4 | |
5 /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g" | |
6 because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because | |
7 "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */ | |
8 #ifndef __GNUC__ | |
12496
333d25d9a8b1
(C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these
Richard M. Stallman <rms@gnu.org>
parents:
6128
diff
changeset
|
9 #undef C_DEBUG_SWITCH |
333d25d9a8b1
(C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these
Richard M. Stallman <rms@gnu.org>
parents:
6128
diff
changeset
|
10 #undef C_OPTIMIZE_SWITCH |
333d25d9a8b1
(C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these
Richard M. Stallman <rms@gnu.org>
parents:
6128
diff
changeset
|
11 #define C_DEBUG_SWITCH -O |
333d25d9a8b1
(C_OPTIMIZE_SWITCH, C_DEBUG_SWITCH): Use these
Richard M. Stallman <rms@gnu.org>
parents:
6128
diff
changeset
|
12 #define C_OPTIMIZE_SWITCH -O |
6128 | 13 #endif |
12904
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
14 |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
15 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
16 #define SIGNALS_VIA_CHARACTERS |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
17 #define MAIL_USE_LOCKF |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
18 #define CLASH_DETECTION |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
19 |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
20 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
21 #define POSIX_SIGNALS |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
22 #undef sigmask |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
23 #undef sigsetmask |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
24 #undef _setjmp |
0352cffbcc0d
(POSIX_SIGNALS, CLASH_DETECTION): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
12496
diff
changeset
|
25 #undef _longjmp |
13784 | 26 |
14180
ce32f656d8b2
(LIB_MOTIF): New macro definition.
Richard M. Stallman <rms@gnu.org>
parents:
13784
diff
changeset
|
27 /* Bill Woodward <wpwood@austin.ibm.com> says: |
ce32f656d8b2
(LIB_MOTIF): New macro definition.
Richard M. Stallman <rms@gnu.org>
parents:
13784
diff
changeset
|
28 libIM *must* precede libXm, to avoid getting aixLoadIM error messages. */ |
ce32f656d8b2
(LIB_MOTIF): New macro definition.
Richard M. Stallman <rms@gnu.org>
parents:
13784
diff
changeset
|
29 #define LIB_MOTIF -lIM -lXm |