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