]> code.delx.au - gnu-emacs/blob - src/s/aix4-2.h
* term/ns-win.el: Standardize references to "Nextstep" in
[gnu-emacs] / src / s / aix4-2.h
1 /*
2 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
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 3 of the License, or
10 (at your option) 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /*
21 * Define symbols to identify the version of Unix this is.
22 * Define all the symbols that apply correctly.
23 */
24
25 #define USG /* System III, System V, etc */
26 #define USG5
27
28 /* This symbol should be defined on AIX Version 3 ??????? */
29 #ifndef _AIX
30 #define _AIX
31 #endif
32
33 /* SYSTEM_TYPE should indicate the kind of system you are using.
34 It sets the Lisp variable system-type. */
35
36 #define SYSTEM_TYPE "aix"
37
38 /* In AIX, you allocate a pty by opening /dev/ptc to get the master side.
39 To get the name of the slave side, you just ttyname() the master side. */
40
41 #define PTY_ITERATION for (c = 0; !c ; c++)
42 #define PTY_NAME_SPRINTF strcpy (pty_name, "/dev/ptc");
43 #define PTY_TTY_NAME_SPRINTF strcpy (pty_name, ttyname (fd));
44
45 /*
46 * Define HAVE_TERMIO if the system provides sysV-style ioctls
47 * for terminal control.
48 */
49
50 #define HAVE_TERMIOS
51
52 /*
53 * Define HAVE_PTYS if the system supports pty devices.
54 */
55
56 #define HAVE_PTYS
57
58 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
59
60 #define HAVE_SOCKETS
61
62
63 /*
64 * Define SYSV_SYSTEM_DIR to use the V.3 getdents/readir
65 * library functions. Almost, but not quite the same as
66 * the 4.2 functions
67 */
68
69 #define SYSV_SYSTEM_DIR
70
71 /* Define this symbol if your system has the functions bcopy, etc. */
72
73 #define BSTRING
74
75 /* subprocesses should be defined if you want to
76 have code for asynchronous subprocesses
77 (as used in M-x compile and M-x shell).
78 This is supposed to work now on system V release 2. */
79
80 #define subprocesses
81
82 /* The file containing the kernel's symbol table is called /unix. */
83
84 #define KERNEL_FILE "/unix"
85
86 /* The symbol in the kernel where the load average is found
87 is named avenrun. */
88
89 #define LDAV_SYMBOL "avenrun"
90 \f
91 /* Special itemss needed to make Emacs run on this system. */
92
93 #ifndef __GNUC__
94 #define LINKER cc
95 #endif
96
97 /* Prevent -lg from being used for debugging. Not needed. */
98
99 #define LIBS_DEBUG
100
101 /* No need to specify -lc when linking. */
102
103 #define LIB_STANDARD
104
105 /* Use terminfo instead of termcap. */
106
107 #define TERMINFO
108
109 /* The following definition seems to be needed in AIX version 3.1.6.8.
110 It may not have been needed in certain earlier versions. */
111 #define HAVE_TCATTR
112
113 /* Include unistd.h, even though we don't define POSIX. */
114 #define NEED_UNISTD_H
115
116 /* AIX doesn't define this. */
117 #define unix 1
118
119 #ifndef __GNUC__
120 /* Some programs in src produce warnings saying certain subprograms
121 are to comples and need a MAXMEM value greater than 2000 for
122 additional optimization. --nils@exp-math.uni-essen.de */
123 #define C_SWITCH_SYSTEM -ma -qmaxmem=4000
124 #endif
125
126 /* string.h defines rindex as a macro, at least with native cc, so we
127 lose declaring char * rindex without this.
128 It is just a guess which versions of AIX need this definition. */
129 #undef HAVE_STRING_H
130
131 /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g"
132 because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because
133 "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */
134 /* The above isn't generally true. If it occurs with some compiler
135 release, seek a fixed version, be it XLC or GCC. The XLC version
136 isn't tied to the OS version on AIX any more than elsewhere. XLC
137 (the IBM compiler) can use -g with -O. (-O3 is also a possibility
138 for the optimization level.) -- fx, after David Edelsohn. */
139 #define C_DEBUG_SWITCH -g -O
140
141 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
142 #define SIGNALS_VIA_CHARACTERS
143 #define MAIL_USE_LOCKF
144 #define CLASH_DETECTION
145
146 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
147 #define POSIX_SIGNALS
148 #undef sigmask
149
150 /* olson@mcs.anl.gov says -li18n is needed by -lXm. */
151 #define LIB_MOTIF -lXm -li18n
152
153 #ifndef HAVE_LIBXMU
154 #define LIBXMU
155
156 /* Unfortunately without libXmu we cannot support EditRes. */
157 #define NO_EDITRES
158 #endif
159
160 /* On AIX Emacs uses the gmalloc.c malloc implementation. But given
161 the way this system works, libc functions that return malloced
162 memory use the libc malloc implementation. Calling xfree or
163 xrealloc on the results of such functions results in a crash.
164
165 One solution for this could be to define SYSTEM_MALLOC here, but
166 that does not currently work on this system.
167
168 It is possible to completely override the malloc implementation on
169 AIX, but that involves putting the malloc functions in a shared
170 library and setting the MALLOCTYPE environment variable to point to
171 tha shared library.
172
173 Emacs currently calls xrealloc on the results of get_current_dir name,
174 to avoid a crash just use the Emacs implementation for that function.
175 */
176 #define BROKEN_GET_CURRENT_DIR_NAME 1
177
178 /* arch-tag: 38fe75ea-6aef-42bd-8449-bc34d921a562
179 (do not change this comment) */