Allow global VC ops like `C-x v D' in Diff and Log-View buffers.
[bpt/emacs.git] / src / s / aix4-2.h
CommitLineData
f2a77c3a 1/*
49628785
GM
2Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
3 2010 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
GM
40/* Define HAVE_TERMIO if the system provides sysV-style ioctls
41 for terminal control. */
f2a77c3a
DN
42#define HAVE_TERMIOS
43
e05aebe9 44/* Define HAVE_PTYS if the system supports pty devices. */
f2a77c3a
DN
45#define HAVE_PTYS
46
47/* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
f2a77c3a
DN
48#define HAVE_SOCKETS
49
f2a77c3a 50
e05aebe9
GM
51/* Define SYSV_SYSTEM_DIR to use the V.3 getdents/readir library
52 functions. Almost, but not quite the same as the 4.2 functions. */
f2a77c3a
DN
53#define SYSV_SYSTEM_DIR
54
f2a77c3a 55/* The file containing the kernel's symbol table is called /unix. */
f2a77c3a
DN
56#define KERNEL_FILE "/unix"
57
e05aebe9 58/* The kernel symbol where the load average is found is named avenrun. */
f2a77c3a
DN
59#define LDAV_SYMBOL "avenrun"
60\f
7f34aec3 61/* Special items needed to make Emacs run on this system. */
f2a77c3a 62
f2a77c3a
DN
63/* The following definition seems to be needed in AIX version 3.1.6.8.
64 It may not have been needed in certain earlier versions. */
65#define HAVE_TCATTR
66
f2a77c3a
DN
67/* AIX doesn't define this. */
68#define unix 1
69
f2a77c3a
DN
70/* string.h defines rindex as a macro, at least with native cc, so we
71 lose declaring char * rindex without this.
72 It is just a guess which versions of AIX need this definition. */
73#undef HAVE_STRING_H
74
f2a77c3a
DN
75/* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
76#define SIGNALS_VIA_CHARACTERS
f2a77c3a
DN
77#define CLASH_DETECTION
78
79/* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
f2a77c3a
DN
80#undef sigmask
81
f2a77c3a 82#ifndef HAVE_LIBXMU
f2a77c3a
DN
83/* Unfortunately without libXmu we cannot support EditRes. */
84#define NO_EDITRES
85#endif
ab5796a9 86
3480d92b
DN
87/* On AIX Emacs uses the gmalloc.c malloc implementation. But given
88 the way this system works, libc functions that return malloced
89 memory use the libc malloc implementation. Calling xfree or
c6ea2936 90 xrealloc on the results of such functions results in a crash.
3480d92b
DN
91
92 One solution for this could be to define SYSTEM_MALLOC here, but
93 that does not currently work on this system.
94
95 It is possible to completely override the malloc implementation on
96 AIX, but that involves putting the malloc functions in a shared
97 library and setting the MALLOCTYPE environment variable to point to
294c50a0
GM
98 that shared library.
99
3480d92b 100 Emacs currently calls xrealloc on the results of get_current_dir name,
e05aebe9 101 to avoid a crash just use the Emacs implementation for that function. */
3480d92b
DN
102#define BROKEN_GET_CURRENT_DIR_NAME 1
103
ab5796a9
MB
104/* arch-tag: 38fe75ea-6aef-42bd-8449-bc34d921a562
105 (do not change this comment) */