Merge from emacs-23
[bpt/emacs.git] / src / s / darwin.h
1 /* System description header file for Darwin (Mac OS X).
2
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010 Free Software Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21
22 /* Define symbols to identify the version of Unix this is.
23 Define all the symbols that apply correctly. */
24 #define BSD4_2
25 /* BSD4_3 and BSD4_4 are already defined in sys/param.h */
26 #define BSD_SYSTEM
27
28 /* More specific than the above two. We cannot use __APPLE__ as this
29 may not be defined on non-OSX Darwin, and we cannot define DARWIN
30 here because Panther and lower CoreFoundation.h uses DARWIN to
31 distinguish OS X from pure Darwin. */
32 #define DARWIN_OS
33
34
35 /* SYSTEM_TYPE should indicate the kind of system you are using.
36 It sets the Lisp variable system-type. */
37 #define SYSTEM_TYPE "darwin"
38
39 /* Emacs can read input using SIGIO and buffering characters itself,
40 or using CBREAK mode and making C-g cause SIGINT.
41 The choice is controlled by the variable interrupt_input.
42
43 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
44
45 Emacs uses the presence or absence of the SIGIO and BROKEN_SIGIO macros
46 to indicate whether or not signal-driven I/O is possible. It uses
47 INTERRUPT_INPUT to decide whether to use it by default.
48
49 SIGIO can be used only on systems that implement it (4.2 and 4.3).
50 CBREAK mode has two disadvantages
51 1) At least in 4.2, it is impossible to handle the Meta key properly.
52 I hear that in system V this problem does not exist.
53 2) Control-G causes output to be discarded.
54 I do not know whether this can be fixed in system V.
55
56 Another method of doing input is planned but not implemented.
57 It would have Emacs fork off a separate process
58 to read the input and send it to the true Emacs process
59 through a pipe. */
60 #define INTERRUPT_INPUT
61
62 /* Letter to use in finding device name of first pty,
63 if system supports pty's. 'a' means it is /dev/ptya0 */
64 #define FIRST_PTY_LETTER 'p'
65
66 /* Define HAVE_TERMIOS if the system provides POSIX-style
67 functions and macros for terminal control.
68
69 Define HAVE_TERMIO if the system provides sysV-style ioctls
70 for terminal control.
71
72 Do not define both. HAVE_TERMIOS is preferred, if it is supported
73 on your system. */
74 #define HAVE_TERMIOS
75 #define NO_TERMIO
76
77 /* Define HAVE_PTYS if the system supports pty devices.
78 Note: PTYs are broken on darwin <6. Use at your own risk. */
79 #define HAVE_PTYS
80 /* Run only once. We need a `for'-loop because the code uses `continue'. */
81 #define PTY_ITERATION for (i = 0; i < 1; i++)
82 #define PTY_NAME_SPRINTF /* none */
83 #define PTY_TTY_NAME_SPRINTF /* none */
84 /* Note that openpty may fork via grantpt on Mac OS X 10.4/Darwin 8.
85 But we don't have to block SIGCHLD because it is blocked in the
86 implementation of grantpt. */
87 #define PTY_OPEN \
88 do \
89 { \
90 int slave; \
91 if (openpty (&fd, &slave, pty_name, NULL, NULL) == -1) \
92 fd = -1; \
93 else \
94 emacs_close (slave); \
95 } \
96 while (0)
97
98 /* PTYs only work correctly on Darwin 7 or higher. So make the default
99 for process-connection-type dependent on the kernel version. */
100 #define MIN_PTY_KERNEL_VERSION '7'
101
102 /* Define this symbol if your system has the functions bcopy, etc. */
103 #define BSTRING
104
105 /* Define CLASH_DETECTION if you want lock files to be written
106 so that Emacs can tell instantly when you try to modify
107 a file that someone else has modified in his Emacs. */
108 #define CLASH_DETECTION
109
110 /* Avoid the use of the name init_process (process.c) because it is
111 also the name of a Mach system call. */
112 #define init_process emacs_init_process
113
114 /* Used in dispnew.c. Copied from freebsd.h. */
115 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)
116
117 /* System uses OXTABS instead of the expected TAB3. (Copied from bsd386.h.) */
118 #define TAB3 OXTABS
119
120 /* Darwin ld insists on the use of malloc routines in the System framework. */
121 #define SYSTEM_MALLOC
122
123 /* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
124 #define HAVE_SOCKETS
125
126 /* Definitions for how to dump. Copied from nextstep.h. */
127 #define UNEXEC unexmacosx.o
128
129 /* start_of_text isn't actually used, so make it compile without error. */
130 #define TEXT_START (0)
131
132 /* Definitions for how to compile & link. */
133 #ifdef HAVE_NS
134 #define SYSTEM_PURESIZE_EXTRA 200000
135 #endif
136
137 /* On Darwin, res_init appears not to be useful: see bug#562 and
138 http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01467.html */
139 #undef HAVE_RES_INIT
140 #undef HAVE_LIBRESOLV
141
142 #ifdef emacs
143 #define malloc unexec_malloc
144 #define realloc unexec_realloc
145 #define free unexec_free
146 /* Don't use posix_memalign because it is not compatible with unexmacosx.c. */
147 #undef HAVE_POSIX_MEMALIGN
148 #endif
149
150 /* Define the following so emacs symbols will not conflict with those
151 in the System framework. Otherwise -prebind will not work. */
152
153 /* Do not define abort in emacs.c. */
154 #define NO_ABORT
155
156 /* Do not define matherr in floatfns.c. */
157 #define NO_MATHERR
158
159 /* The following solves the problem that Emacs hangs when evaluating
160 (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile
161 does not exist. Also, setsid is not allowed in the vfork child's
162 context as of Darwin 9/Mac OS X 10.5. */
163 #undef HAVE_WORKING_VFORK
164 #define vfork fork
165
166 /* Don't close pty in process.c to make it as controlling terminal.
167 It is already a controlling terminal of subprocess, because we did
168 ioctl TIOCSCTTY. */
169 #define DONT_REOPEN_PTY
170
171 /* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method for marking the stack. */
172 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
173
174 /* arch-tag: 481d443d-4f89-43ea-b5fb-49706d95fa41
175 (do not change this comment) */