Mercurial > emacs
annotate src/s/aix4-2.h @ 108161:514ebf69b289
Fix wrong-docstring problem introduced with hash-consing.
* eval.c (Fautoload): Set doc to a unique number rather than to 0.
Remove unused var `args'.
* lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
(LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
* doc.c (store_function_docstring): Use XSETCAR.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 29 Apr 2010 08:42:01 -0400 |
parents | 1c3ecdb885b5 |
children | 01b4cde1b57b |
rev | line source |
---|---|
96303 | 1 /* |
106815 | 2 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
96303 | 3 Free Software Foundation, Inc. |
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 | |
20 /* | |
21 * Define symbols to identify the version of Unix this is. | |
22 * Define all the symbols that apply correctly. | |
23 */ | |
24 | |
25 #define USG /* System III, System V, etc */ | |
26 #define USG5 | |
27 | |
28 /* This symbol should be defined on AIX Version 3 ??????? */ | |
29 #ifndef _AIX | |
30 #define _AIX | |
31 #endif | |
32 | |
33 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
34 It sets the Lisp variable system-type. */ | |
35 | |
36 #define SYSTEM_TYPE "aix" | |
37 | |
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. */ | |
40 | |
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)); | |
44 | |
45 /* | |
46 * Define HAVE_TERMIO if the system provides sysV-style ioctls | |
47 * for terminal control. | |
48 */ | |
49 | |
50 #define HAVE_TERMIOS | |
51 | |
52 /* | |
53 * Define HAVE_PTYS if the system supports pty devices. | |
54 */ | |
55 | |
56 #define HAVE_PTYS | |
57 | |
58 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */ | |
59 | |
60 #define HAVE_SOCKETS | |
61 | |
62 | |
63 /* | |
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 | |
67 */ | |
68 | |
69 #define SYSV_SYSTEM_DIR | |
70 | |
71 /* Define this symbol if your system has the functions bcopy, etc. */ | |
72 | |
73 #define BSTRING | |
74 | |
75 /* The file containing the kernel's symbol table is called /unix. */ | |
76 | |
77 #define KERNEL_FILE "/unix" | |
78 | |
79 /* The symbol in the kernel where the load average is found | |
80 is named avenrun. */ | |
22824 | 81 |
96303 | 82 #define LDAV_SYMBOL "avenrun" |
83 | |
84 /* Special itemss needed to make Emacs run on this system. */ | |
85 | |
86 #ifndef __GNUC__ | |
87 #define LINKER cc | |
88 #endif | |
89 | |
90 /* No need to specify -lc when linking. */ | |
91 | |
92 #define LIB_STANDARD | |
93 | |
107462
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
94 /* -lpthreads seems to be necessary for Xlib in X11R6, and should be harmless |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
95 on older versions of X where it happens to exist. */ |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
96 #ifdef HAVE_LIBPTHREADS |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
97 #define LIBS_SYSTEM -lrts -lIM -liconv -lpthreads |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
98 #else |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
99 /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */ |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
100 #define LIBS_SYSTEM -lrts -lIM -liconv |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
101 #endif |
6efbd7584cd8
Simplify LIBS_MACHINE definitions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107452
diff
changeset
|
102 |
96303 | 103 /* Use terminfo instead of termcap. */ |
104 | |
105 #define TERMINFO | |
106 | |
107 /* The following definition seems to be needed in AIX version 3.1.6.8. | |
108 It may not have been needed in certain earlier versions. */ | |
109 #define HAVE_TCATTR | |
110 | |
111 /* Include unistd.h, even though we don't define POSIX. */ | |
112 #define NEED_UNISTD_H | |
113 | |
114 /* AIX doesn't define this. */ | |
115 #define unix 1 | |
116 | |
117 #ifndef __GNUC__ | |
118 /* Some programs in src produce warnings saying certain subprograms | |
119 are to comples and need a MAXMEM value greater than 2000 for | |
120 additional optimization. --nils@exp-math.uni-essen.de */ | |
121 #define C_SWITCH_SYSTEM -ma -qmaxmem=4000 | |
122 #endif | |
123 | |
124 /* string.h defines rindex as a macro, at least with native cc, so we | |
125 lose declaring char * rindex without this. | |
126 It is just a guess which versions of AIX need this definition. */ | |
127 #undef HAVE_STRING_H | |
128 | |
129 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ | |
130 #define SIGNALS_VIA_CHARACTERS | |
131 #define MAIL_USE_LOCKF | |
132 #define CLASH_DETECTION | |
133 | |
134 /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ | |
135 #define POSIX_SIGNALS | |
136 #undef sigmask | |
137 | |
138 #ifndef HAVE_LIBXMU | |
139 /* Unfortunately without libXmu we cannot support EditRes. */ | |
140 #define NO_EDITRES | |
141 #endif | |
52401 | 142 |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
143 /* 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
|
144 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
|
145 memory use the libc malloc implementation. Calling xfree or |
108133 | 146 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
|
147 |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
148 One solution for this could be to define SYSTEM_MALLOC here, but |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
149 that does not currently work on this system. |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
150 |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
151 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
|
152 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
|
153 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
|
154 that shared library. |
1c3ecdb885b5
Move LIBXMU from cpp to configure.
Glenn Morris <rgm@gnu.org>
parents:
108133
diff
changeset
|
155 |
65657
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
156 Emacs currently calls xrealloc on the results of get_current_dir name, |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
157 to avoid a crash just use the Emacs implementation for that function. |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
158 */ |
c6e45e9a83bf
* s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME): Define
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
159 #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
|
160 |
107439
ed20cbe62401
Remove support for Solaris on PPC and for old versions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
161 #define UNEXEC unexaix.o |
ed20cbe62401
Remove support for Solaris on PPC and for old versions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
162 |
107452
f18ffe3db4b2
* m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107439
diff
changeset
|
163 #define ORDINARY_LINK |
f18ffe3db4b2
* m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107439
diff
changeset
|
164 |
52401 | 165 /* arch-tag: 38fe75ea-6aef-42bd-8449-bc34d921a562 |
166 (do not change this comment) */ |