annotate src/s/aix3-2-5.h @ 2958:9e04ad6a1ac6
[xemacs-hg @ 2005-09-27 05:35:24 by ben]
Add SRC inclusion, for lib-src changes
Makefile.in.in: Always include SRC, so <config.h> in lib-src always works.
sysdep.c: Fix bit-rotted dup2 code. Also new -> new_.
nt.c: Fix possible use of uninitialized var. Also new -> new_.
text.c, event-Xt.c, lisp.h, number-gmp.c, number-gmp.h: Fix compilation warnings. A couple of changes of new -> new_,
'foo -> `foo'.
author |
ben |
date |
Tue, 27 Sep 2005 05:35:26 +0000 |
parents |
3ecd8885ac67 |
children |
|
rev |
line source |
428
|
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 #define MAIL_USE_LOCKF
|
|
18
|
|
19 /* XEmacs: from dkeller@VNET.IBM.COM */
|
|
20 #define BROKEN_SIGIO
|