Remove support for Mac Carbon.
[bpt/emacs.git] / src / s / darwin.h
CommitLineData
e0f712ba 1/* System description header file for Darwin (Mac OS X).
4b158629
GM
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008 Free Software Foundation, Inc.
e0f712ba
AC
4
5This file is part of GNU Emacs.
6
4b158629 7GNU Emacs is free software: you can redistribute it and/or modify
e0f712ba 8it under the terms of the GNU General Public License as published by
4b158629
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
e0f712ba
AC
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
4b158629 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
e0f712ba
AC
19
20
21/*
22 * Define symbols to identify the version of Unix this is.
23 * Define all the symbols that apply correctly.
24 */
25
e0f712ba
AC
26#define BSD4_2
27/* BSD4_3 and BSD4_4 are already defined in sys/param.h */
e0f712ba 28#define BSD_SYSTEM
e0f712ba 29
e0f712ba
AC
30/* SYSTEM_TYPE should indicate the kind of system you are using.
31 It sets the Lisp variable system-type. */
32
33#define SYSTEM_TYPE "darwin"
34
e0f712ba
AC
35/* Emacs can read input using SIGIO and buffering characters itself,
36 or using CBREAK mode and making C-g cause SIGINT.
37 The choice is controlled by the variable interrupt_input.
38
39 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
40
41 Emacs uses the presence or absence of the SIGIO and BROKEN_SIGIO macros
42 to indicate whether or not signal-driven I/O is possible. It uses
43 INTERRUPT_INPUT to decide whether to use it by default.
44
45 SIGIO can be used only on systems that implement it (4.2 and 4.3).
46 CBREAK mode has two disadvantages
47 1) At least in 4.2, it is impossible to handle the Meta key properly.
48 I hear that in system V this problem does not exist.
49 2) Control-G causes output to be discarded.
50 I do not know whether this can be fixed in system V.
51
52 Another method of doing input is planned but not implemented.
53 It would have Emacs fork off a separate process
54 to read the input and send it to the true Emacs process
55 through a pipe. */
56
57#define INTERRUPT_INPUT
58
59/* Letter to use in finding device name of first pty,
60 if system supports pty's. 'a' means it is /dev/ptya0 */
61
62#define FIRST_PTY_LETTER 'p'
63
64/*
65 * Define HAVE_TERMIOS if the system provides POSIX-style
66 * functions and macros for terminal control.
67 *
68 * Define HAVE_TERMIO if the system provides sysV-style ioctls
69 * for terminal control.
70 *
71 * Do not define both. HAVE_TERMIOS is preferred, if it is
72 * supported on your system.
73 */
74
75#define HAVE_TERMIOS
e0f712ba
AC
76
77#define NO_TERMIO
78
79/*
80 * Define HAVE_PTYS if the system supports pty devices.
d9e7c622 81 * Note: PTYs are broken on darwin <6. Use at your own risk.
e0f712ba
AC
82 */
83
84#define HAVE_PTYS
85
d9e7c622
ST
86/**
87 * PTYs only work correctly on Darwin 7 or higher. So make the
88 * default for process-connection-type dependent on the kernel
89 * version.
a15252fd 90 */
bb4c0e89 91#define MIN_PTY_KERNEL_VERSION '7'
a15252fd 92
e0f712ba
AC
93/* Define this symbol if your system has the functions bcopy, etc. */
94
95#define BSTRING
96
e0f712ba
AC
97/* define MAIL_USE_FLOCK if the mailer uses flock
98 to interlock access to /usr/spool/mail/$USER.
99 The alternative is that a lock file named
100 /usr/spool/mail/$USER.lock. */
101
102#define MAIL_USE_FLOCK
103
104/* Define CLASH_DETECTION if you want lock files to be written
105 so that Emacs can tell instantly when you try to modify
106 a file that someone else has modified in his Emacs. */
107
108#define CLASH_DETECTION
109
e0f712ba
AC
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
e0f712ba
AC
114/* Used in dispnew.c. Copied from freebsd.h. */
115#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)
116
e0f712ba
AC
117/* System uses OXTABS instead of the expected TAB3. (Copied from
118 bsd386.h.) */
119#define TAB3 OXTABS
120
121/* Darwin ld insists on the use of malloc routines in the System
122 framework. */
123#define SYSTEM_MALLOC
124
125/* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
126#define HAVE_SOCKETS
127
edfda783
AR
128/* This seems to help in Ctrl-G detection under Cocoa, however at the cost
129 of some quirks that may or may not bother a given user. */
9e2a2647 130#if defined (COCOA_EXPERIMENTAL_CTRL_G)
fc7a70cc
ST
131#define NO_SOCK_SIGIO
132#endif
133
e0f712ba
AC
134/* Definitions for how to dump. Copied from nextstep.h. */
135
136#define UNEXEC unexmacosx.o
137
138#define START_FILES pre-crt0.o
139
140/* start_of_text isn't actually used, so make it compile without error. */
141#define TEXT_START (0)
142
e0f712ba
AC
143/* Definitions for how to compile & link. */
144
9e2a2647 145/* Link in the AppKit lib. */
edfda783 146#ifdef HAVE_NS
2749d28e
DN
147/* PENDING: can this target be specified in a clearer way? */
148#define OTHER_FILES ns-app
6fb5f7da
AR
149/* XXX: lresolv is here because configure when testing #undefs res_init,
150 a macro in /usr/include/resolv.h for res_9_init, not in stdc lib. */
edfda783
AR
151#define LIBS_MACGUI -framework AppKit -lresolv
152#define SYSTEM_PURESIZE_EXTRA 200000
153#define HEADERPAD_EXTRA 6C8
2749d28e 154#else /* !HAVE_NS */
edfda783 155#define HEADERPAD_EXTRA 690
e0f712ba 156
9e2a2647
DN
157/* FIXME: Is this needed?
158 This is for the Carbon port. Under the NeXTstep port, this is still picked
2749d28e
DN
159 up during preprocessing, but is undone in config.in. */
160#define C_SWITCH_SYSTEM -fpascal-strings -DMAC_OSX
161
edfda783 162#define LIBS_MACGUI
2749d28e 163
edfda783 164#endif /* !HAVE_NS */
640a0770
ST
165
166/* The -headerpad option tells ld (see man page) to leave room at the
167 end of the header for adding load commands. Needed for dumping.
168 0x690 is the total size of 30 segment load commands (at 56
edfda783
AR
169 each); under Cocoa 31 commands are required. */
170#define LD_SWITCH_SYSTEM_TEMACS -prebind LIBS_MACGUI -Xlinker -headerpad -Xlinker HEADERPAD_EXTRA
e0f712ba
AC
171
172#define C_SWITCH_SYSTEM_TEMACS -Dtemacs
173
f00691a3
AC
174/* The ncurses library has been moved out of the System framework in
175 Mac OS X 10.2. So if ./configure detects it, set the command-line
176 option to use it. */
177#ifdef HAVE_LIBNCURSES
178#define LIBS_TERMCAP -lncurses
ad8d730c
AC
179/* This prevents crashes when running Emacs in Terminal.app under
180 10.2. */
181#define TERMINFO
f00691a3
AC
182#endif
183
e0f712ba
AC
184/* Link this program just by running cc. */
185#define ORDINARY_LINK
186
187/* We don't have a g library, so override the -lg LIBS_DEBUG switch. */
188#define LIBS_DEBUG
189
190/* Adding -lm confuses the dynamic linker, so omit it. */
191#define LIB_MATH
192
e0f712ba
AC
193/* Define the following so emacs symbols will not conflict with those
194 in the System framework. Otherwise -prebind will not work. */
195
196/* Do not define abort in emacs.c. */
197#define NO_ABORT
198
199/* Do not define matherr in floatfns.c. */
200#define NO_MATHERR
201
511ca371
AC
202/* The following solves the problem that Emacs hangs when evaluating
203 (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile
69955d31
YM
204 does not exist. Also, setsid is not allowed in the vfork child's
205 context as of Darwin 9/Mac OS X 10.5. */
511ca371
AC
206#undef HAVE_WORKING_VFORK
207#define vfork fork
a7a4eb95
YM
208
209/* Don't close pty in process.c to make it as controlling terminal.
210 It is already a controlling terminal of subprocess, because we did
211 ioctl TIOCSCTTY. */
5cb724f0 212#define DONT_REOPEN_PTY
09740ad8 213
e0f712ba
AC
214#ifdef temacs
215#define malloc unexec_malloc
216#define realloc unexec_realloc
217#define free unexec_free
218#endif
8030369c 219
7a262394
SM
220/* This makes create_process in process.c save and restore signal
221 handlers correctly. Suggested by Nozomu Ando.*/
222#define POSIX_SIGNALS
223
3f080e4e
AC
224/* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method for marking the
225 stack. */
226#define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
227
ab5796a9
MB
228/* arch-tag: 481d443d-4f89-43ea-b5fb-49706d95fa41
229 (do not change this comment) */