make the minibuffer mutex recursive.
[emacs.git] / src / s / aix4-2.h
blob93869db6bca66cb42972829f6cc29e6208da6221
1 /*
2 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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.
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.
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/>. */
21 * Define symbols to identify the version of Unix this is.
22 * Define all the symbols that apply correctly.
25 #define USG /* System III, System V, etc */
26 #define USG5
28 /* This symbol should be defined on AIX Version 3 ??????? */
29 #ifndef _AIX
30 #define _AIX
31 #endif
33 /* SYSTEM_TYPE should indicate the kind of system you are using.
34 It sets the Lisp variable system-type. */
36 #define SYSTEM_TYPE "aix"
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. */
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));
46 * Define HAVE_TERMIO if the system provides sysV-style ioctls
47 * for terminal control.
50 #define HAVE_TERMIOS
53 * Define HAVE_PTYS if the system supports pty devices.
56 #define HAVE_PTYS
58 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
60 #define HAVE_SOCKETS
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
69 #define SYSV_SYSTEM_DIR
71 /* Define this symbol if your system has the functions bcopy, etc. */
73 #define BSTRING
75 /* The file containing the kernel's symbol table is called /unix. */
77 #define KERNEL_FILE "/unix"
79 /* The symbol in the kernel where the load average is found
80 is named avenrun. */
82 #define LDAV_SYMBOL "avenrun"
84 /* Special itemss needed to make Emacs run on this system. */
86 #ifndef __GNUC__
87 #define LINKER cc
88 #endif
90 /* Prevent -lg from being used for debugging. Not needed. */
92 #define LIBS_DEBUG
94 /* No need to specify -lc when linking. */
96 #define LIB_STANDARD
98 /* -lpthreads seems to be necessary for Xlib in X11R6, and should be harmless
99 on older versions of X where it happens to exist. */
100 #ifdef HAVE_LIBPTHREADS
101 #define LIBS_SYSTEM -lrts -lIM -liconv -lpthreads
102 #else
103 /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */
104 #define LIBS_SYSTEM -lrts -lIM -liconv
105 #endif
107 /* Use terminfo instead of termcap. */
109 #define TERMINFO
111 /* The following definition seems to be needed in AIX version 3.1.6.8.
112 It may not have been needed in certain earlier versions. */
113 #define HAVE_TCATTR
115 /* Include unistd.h, even though we don't define POSIX. */
116 #define NEED_UNISTD_H
118 /* AIX doesn't define this. */
119 #define unix 1
121 #ifndef __GNUC__
122 /* Some programs in src produce warnings saying certain subprograms
123 are to comples and need a MAXMEM value greater than 2000 for
124 additional optimization. --nils@exp-math.uni-essen.de */
125 #define C_SWITCH_SYSTEM -ma -qmaxmem=4000
126 #endif
128 /* string.h defines rindex as a macro, at least with native cc, so we
129 lose declaring char * rindex without this.
130 It is just a guess which versions of AIX need this definition. */
131 #undef HAVE_STRING_H
133 /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g"
134 because "cc -O" crashes. Under AIX 3.2.5, "cc -O" is required because
135 "cc -g" crashes. Go figure. --floppy@merlin.mit.edu */
136 /* The above isn't generally true. If it occurs with some compiler
137 release, seek a fixed version, be it XLC or GCC. The XLC version
138 isn't tied to the OS version on AIX any more than elsewhere. XLC
139 (the IBM compiler) can use -g with -O. (-O3 is also a possibility
140 for the optimization level.) -- fx, after David Edelsohn. */
141 #define C_DEBUG_SWITCH -g -O
143 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
144 #define SIGNALS_VIA_CHARACTERS
145 #define MAIL_USE_LOCKF
146 #define CLASH_DETECTION
148 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
149 #define POSIX_SIGNALS
150 #undef sigmask
152 /* olson@mcs.anl.gov says -li18n is needed by -lXm. */
153 #define LIB_MOTIF -lXm -li18n
155 #ifndef HAVE_LIBXMU
156 #define LIBXMU
158 /* Unfortunately without libXmu we cannot support EditRes. */
159 #define NO_EDITRES
160 #endif
162 /* On AIX Emacs uses the gmalloc.c malloc implementation. But given
163 the way this system works, libc functions that return malloced
164 memory use the libc malloc implementation. Calling xfree or
165 xrealloc on the results of such functions results in a crash.
167 One solution for this could be to define SYSTEM_MALLOC here, but
168 that does not currently work on this system.
170 It is possible to completely override the malloc implementation on
171 AIX, but that involves putting the malloc functions in a shared
172 library and setting the MALLOCTYPE environment variable to point to
173 tha shared library.
175 Emacs currently calls xrealloc on the results of get_current_dir name,
176 to avoid a crash just use the Emacs implementation for that function.
178 #define BROKEN_GET_CURRENT_DIR_NAME 1
180 #define UNEXEC unexaix.o
182 #define ORDINARY_LINK
184 /* arch-tag: 38fe75ea-6aef-42bd-8449-bc34d921a562
185 (do not change this comment) */