Mercurial > hg > xemacs-beta
comparison src/s/aix3-2-5.h @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children | 0132846995bd |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:376386a54a3c |
---|---|
1 /* s- file for building Emacs on AIX 3.2.5. */ | |
2 | |
3 /* Synched up with: FSF 19.31. */ | |
4 | |
5 #include "aix3-2.h" | |
6 | |
7 /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g" | |
8 because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because | |
9 "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */ | |
10 #ifndef __GNUC__ | |
11 #undef C_DEBUG_SWITCH | |
12 #undef C_OPTIMIZE_SWITCH | |
13 #define C_DEBUG_SWITCH | |
14 #define C_OPTIMIZE_SWITCH -O | |
15 #endif | |
16 | |
17 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ | |
18 #define SIGNALS_VIA_CHARACTERS | |
19 #define MAIL_USE_LOCKF | |
20 #define CLASH_DETECTION | |
21 | |
22 /* XEmacs: from dkeller@VNET.IBM.COM */ | |
23 #define BROKEN_SIGIO | |
24 | |
25 /* Bill Woodward <wpwood@austin.ibm.com> says: | |
26 libIM *must* precede libXm, to avoid getting aixLoadIM error messages. */ | |
27 #define LIB_MOTIF -lIM -lXm |