Mercurial > emacs
annotate src/s/aix4-2.h @ 111534:e9570ce66184
* src/xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sat, 13 Nov 2010 14:20:01 -0800 |
parents | a8b56c7dbb62 |
children | 417b1e4d63cd |
rev | line source |
---|---|
96303 | 1 /* |
108227
135e34f90ef1
Move C_SWITCH_MACHINE, C_SWITCH_SYSTEM from cpp to autoconf.
Glenn Morris <rgm@gnu.org>
parents:
108205
diff
changeset
|
2 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, |
135e34f90ef1
Move C_SWITCH_MACHINE, C_SWITCH_SYSTEM from cpp to autoconf.
Glenn Morris <rgm@gnu.org>
parents:
108205
diff
changeset
|
3 2010 Free Software Foundation, Inc. |
96303 | 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 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108382
diff
changeset
|
20 /* Define symbols to identify the version of Unix this is. |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108382
diff
changeset
|
21 Define all the symbols that apply correctly. */ |
96303 | 22 #define USG /* System III, System V, etc */ |
23 #define USG5 | |
24 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108382
diff
changeset
|
25 /* This symbol should be defined on AIX Version 3 ??????? */ |
96303 | 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. */ | |
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. */ | |
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 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108382
diff
changeset
|
40 /* Define HAVE_PTYS if the system supports pty devices. */ |
96303 | 41 #define HAVE_PTYS |
42 | |
43 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */ | |
44 #define HAVE_SOCKETS | |
45 | |
46 /* The file containing the kernel's symbol table is called /unix. */ | |
47 #define KERNEL_FILE "/unix" | |
48 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108382
diff
changeset
|
49 /* The kernel symbol where the load average is found is named avenrun. */ |
96303 | 50 #define LDAV_SYMBOL "avenrun" |
51 | |
108690
2068a9dec459
* s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
Glenn Morris <rgm@gnu.org>
parents:
108511
diff
changeset
|
52 /* Special items needed to make Emacs run on this system. */ |
96303 | 53 |
54 /* AIX doesn't define this. */ | |
55 #define unix 1 | |
56 | |
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 | |
62 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ | |
63 #define SIGNALS_VIA_CHARACTERS | |
64 #define CLASH_DETECTION | |
65 | |
66 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ | |
67 #undef sigmask | |
68 | |
69 #ifndef HAVE_LIBXMU | |
70 /* Unfortunately without libXmu we cannot support EditRes. */ | |
71 #define NO_EDITRES | |
72 #endif | |
52401 | 73 |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
74 /* On AIX Emacs uses the gmalloc.c malloc implementation. But given |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
75 the way this system works, libc functions that return malloced |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
76 memory use the libc malloc implementation. Calling xfree or |
108133 | 77 xrealloc on the results of such functions results in a crash. |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
78 |
109073
6799ec1a7188
Remove some cpp that is internal to configure.in.
Glenn Morris <rgm@gnu.org>
parents:
108892
diff
changeset
|
79 One solution for this could be to define SYSTEM_MALLOC in configure, |
6799ec1a7188
Remove some cpp that is internal to configure.in.
Glenn Morris <rgm@gnu.org>
parents:
108892
diff
changeset
|
80 but that does not currently work on this system. |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
81 |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
82 It is possible to completely override the malloc implementation on |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
83 AIX, but that involves putting the malloc functions in a shared |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
84 library and setting the MALLOCTYPE environment variable to point to |
108148
1c3ecdb885b5
Move LIBXMU from cpp to configure.
Glenn Morris <rgm@gnu.org>
parents:
108133
diff
changeset
|
85 that shared library. |
1c3ecdb885b5
Move LIBXMU from cpp to configure.
Glenn Morris <rgm@gnu.org>
parents:
108133
diff
changeset
|
86 |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
87 Emacs currently calls xrealloc on the results of get_current_dir name, |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108382
diff
changeset
|
88 to avoid a crash just use the Emacs implementation for that function. */ |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
89 #define BROKEN_GET_CURRENT_DIR_NAME 1 |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
90 |
52401 | 91 /* arch-tag: 38fe75ea-6aef-42bd-8449-bc34d921a562 |
92 (do not change this comment) */ |