]> code.delx.au - gnu-emacs/blob - src/s/aix4-2.h
Convert consecutive FSF copyright years to ranges.
[gnu-emacs] / src / s / aix4-2.h
1 /*
2 Copyright (C) 1999, 2001-2011 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 /* Define symbols to identify the version of Unix this is.
20 Define all the symbols that apply correctly. */
21 #define USG /* System III, System V, etc */
22 #define USG5
23
24 /* This symbol should be defined on AIX Version 3 ??????? */
25 #ifndef _AIX
26 #define _AIX
27 #endif
28
29 /* SYSTEM_TYPE should indicate the kind of system you are using.
30 It sets the Lisp variable system-type. */
31 #define SYSTEM_TYPE "aix"
32
33 /* In AIX, you allocate a pty by opening /dev/ptc to get the master side.
34 To get the name of the slave side, you just ttyname() the master side. */
35 #define PTY_ITERATION for (c = 0; !c ; c++)
36 #define PTY_NAME_SPRINTF strcpy (pty_name, "/dev/ptc");
37 #define PTY_TTY_NAME_SPRINTF strcpy (pty_name, ttyname (fd));
38
39 /* Define HAVE_PTYS if the system supports pty devices. */
40 #define HAVE_PTYS
41
42 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
43 #define HAVE_SOCKETS
44
45 /* The file containing the kernel's symbol table is called /unix. */
46 #define KERNEL_FILE "/unix"
47
48 /* The kernel symbol where the load average is found is named avenrun. */
49 #define LDAV_SYMBOL "avenrun"
50 \f
51 /* Special items needed to make Emacs run on this system. */
52
53 /* AIX doesn't define this. */
54 #define unix 1
55
56 /* string.h defines rindex as a macro, at least with native cc, so we
57 lose declaring char * rindex without this.
58 It is just a guess which versions of AIX need this definition. */
59 #undef HAVE_STRING_H
60
61 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
62 #define SIGNALS_VIA_CHARACTERS
63 #define CLASH_DETECTION
64
65 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
66 #undef sigmask
67
68 #ifndef HAVE_LIBXMU
69 /* Unfortunately without libXmu we cannot support EditRes. */
70 #define NO_EDITRES
71 #endif
72
73 /* On AIX Emacs uses the gmalloc.c malloc implementation. But given
74 the way this system works, libc functions that return malloced
75 memory use the libc malloc implementation. Calling xfree or
76 xrealloc on the results of such functions results in a crash.
77
78 One solution for this could be to define SYSTEM_MALLOC in configure,
79 but that does not currently work on this system.
80
81 It is possible to completely override the malloc implementation on
82 AIX, but that involves putting the malloc functions in a shared
83 library and setting the MALLOCTYPE environment variable to point to
84 that shared library.
85
86 Emacs currently calls xrealloc on the results of get_current_dir name,
87 to avoid a crash just use the Emacs implementation for that function. */
88 #define BROKEN_GET_CURRENT_DIR_NAME 1
89