* unexnext.c:
[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 */
28/* #define BSD4_3 */
29/* #define BSD4_4 */
30#define BSD_SYSTEM
31/* #define VMS */
32
2dfcf968
YM
33#if 0 /* Don't define DARWIN on Mac OS X because CoreFoundation.h uses
34 it to distinguish Mac OS X from bare Darwin. */
d9e7c622
ST
35#ifndef DARWIN
36#define DARWIN 1
37#endif
2dfcf968 38#endif
d9e7c622 39
e0f712ba
AC
40/* MAC_OS is used to conditionally compile code common to both MAC_OS8
41 and MAC_OSX. */
42#ifdef MAC_OSX
9794a8cd 43#ifdef HAVE_CARBON
e0f712ba 44#define MAC_OS
80ca7302
DN
45/* We need a little extra space, see ../../lisp/loadup.el. */
46#define SYSTEM_PURESIZE_EXTRA 30000
b7ea0894 47
caf49fb0
DN
48#endif
49#endif
80ca7302 50
e0f712ba
AC
51/* SYSTEM_TYPE should indicate the kind of system you are using.
52 It sets the Lisp variable system-type. */
53
54#define SYSTEM_TYPE "darwin"
55
56/* NOMULTIPLEJOBS should be defined if your system's shell
57 does not have "job control" (the ability to stop a program,
58 run some other program, then continue the first one). */
59
60/* #define NOMULTIPLEJOBS */
61
62/* Emacs can read input using SIGIO and buffering characters itself,
63 or using CBREAK mode and making C-g cause SIGINT.
64 The choice is controlled by the variable interrupt_input.
65
66 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
67
68 Emacs uses the presence or absence of the SIGIO and BROKEN_SIGIO macros
69 to indicate whether or not signal-driven I/O is possible. It uses
70 INTERRUPT_INPUT to decide whether to use it by default.
71
72 SIGIO can be used only on systems that implement it (4.2 and 4.3).
73 CBREAK mode has two disadvantages
74 1) At least in 4.2, it is impossible to handle the Meta key properly.
75 I hear that in system V this problem does not exist.
76 2) Control-G causes output to be discarded.
77 I do not know whether this can be fixed in system V.
78
79 Another method of doing input is planned but not implemented.
80 It would have Emacs fork off a separate process
81 to read the input and send it to the true Emacs process
82 through a pipe. */
83
84#define INTERRUPT_INPUT
85
86/* Letter to use in finding device name of first pty,
87 if system supports pty's. 'a' means it is /dev/ptya0 */
88
89#define FIRST_PTY_LETTER 'p'
90
91/*
92 * Define HAVE_TERMIOS if the system provides POSIX-style
93 * functions and macros for terminal control.
94 *
95 * Define HAVE_TERMIO if the system provides sysV-style ioctls
96 * for terminal control.
97 *
98 * Do not define both. HAVE_TERMIOS is preferred, if it is
99 * supported on your system.
100 */
101
102#define HAVE_TERMIOS
103/* #define HAVE_TERMIO */
104
105#define NO_TERMIO
106
107/*
108 * Define HAVE_PTYS if the system supports pty devices.
d9e7c622 109 * Note: PTYs are broken on darwin <6. Use at your own risk.
e0f712ba
AC
110 */
111
112#define HAVE_PTYS
113
d9e7c622
ST
114/**
115 * PTYs only work correctly on Darwin 7 or higher. So make the
116 * default for process-connection-type dependent on the kernel
117 * version.
a15252fd 118 */
bb4c0e89 119#define MIN_PTY_KERNEL_VERSION '7'
a15252fd 120
e0f712ba
AC
121/*
122 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate
123 * The 4.2 opendir, etc., library functions.
124 */
125
126/* #define NONSYSTEM_DIR_LIBRARY */
127
128/* Define this symbol if your system has the functions bcopy, etc. */
129
130#define BSTRING
131
132/* subprocesses should be defined if you want to
133 have code for asynchronous subprocesses
134 (as used in M-x compile and M-x shell).
135 This is generally OS dependent, and not supported
136 under most USG systems. */
137
138#define subprocesses
139
140/* If your system uses COFF (Common Object File Format) then define the
141 preprocessor symbol "COFF". */
142
143/* #define COFF */
144
145/* define MAIL_USE_FLOCK if the mailer uses flock
146 to interlock access to /usr/spool/mail/$USER.
147 The alternative is that a lock file named
148 /usr/spool/mail/$USER.lock. */
149
150#define MAIL_USE_FLOCK
151
152/* Define CLASH_DETECTION if you want lock files to be written
153 so that Emacs can tell instantly when you try to modify
154 a file that someone else has modified in his Emacs. */
155
156#define CLASH_DETECTION
157
158/* Define this if your operating system declares signal handlers to
159 have a type other than the usual. `The usual' is `void' for ANSI C
160 systems (i.e. when the __STDC__ macro is defined), and `int' for
161 pre-ANSI systems. If you're using GCC on an older system, __STDC__
162 will be defined, but the system's include files will still say that
163 signal returns int or whatever; in situations like that, define
164 this to be what the system's include files want. */
165/* #define SIGTYPE int */
166
167/* If the character used to separate elements of the executable path
168 is not ':', #define this to be the appropriate character constant. */
169/* #define SEPCHAR ':' */
170
171/* Define this if the system can use mmap for buffer text allocation. */
172/* #define USE_MMAP_FOR_BUFFERS 1 */
173
174/* ============================================================ */
175
176/* Here, add any special hacks needed
177 to make Emacs work on this system. For example,
178 you might define certain system call names that don't
179 exist on your system, or that do different things on
180 your system and must be used only through an encapsulation
181 (Which you should place, by convention, in sysdep.c). */
182
183/* Some compilers tend to put everything declared static
184 into the initialized data area, which becomes pure after dumping Emacs.
185 On these systems, you must #define static as nothing to foil this.
186 Note that emacs carefully avoids static vars inside functions. */
187
188/* #define static */
189
190/* If the system's imake configuration file defines `NeedWidePrototypes'
191 as `NO', we must define NARROWPROTO manually. Such a define is
177c0ea7 192 generated in the Makefile generated by `xmkmf'. If we don't
e0f712ba
AC
193 define NARROWPROTO, we will see the wrong function prototypes
194 for X functions taking float or double parameters. */
195
196/* #define NARROWPROTO 1 */
197
198/* ============================================================ */
199
200/* After adding support for a new system, modify the large case
201 statement in the `configure' script to recognize reasonable
202 configuration names, and add a description of the system to
203 `etc/MACHINES'.
204
205 If you've just fixed a problem in an existing configuration file,
206 you should also check `etc/MACHINES' to make sure its descriptions
207 of known problems in that configuration should be updated. */
208
209
210/* Avoid the use of the name init_process (process.c) because it is
211 also the name of a Mach system call. */
212#define init_process emacs_init_process
213
e0f712ba
AC
214/* Used in dispnew.c. Copied from freebsd.h. */
215#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)
216
e0f712ba
AC
217/* System uses OXTABS instead of the expected TAB3. (Copied from
218 bsd386.h.) */
219#define TAB3 OXTABS
220
221/* Darwin ld insists on the use of malloc routines in the System
222 framework. */
223#define SYSTEM_MALLOC
224
225/* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
226#define HAVE_SOCKETS
227
fc7a70cc
ST
228/* In Carbon, asynchronous I/O (using SIGIO) can't be used for window
229 events because they don't come from sockets, even though it works
230 fine on tty's. */
231#ifdef HAVE_CARBON
232#define NO_SOCK_SIGIO
233#endif
234
e0f712ba 235/* Extra initialization calls in main for Mac OS X system type. */
9794a8cd 236#ifdef HAVE_CARBON
e0f712ba 237#define SYMS_SYSTEM syms_of_mac()
9794a8cd 238#endif
e0f712ba
AC
239
240/* Definitions for how to dump. Copied from nextstep.h. */
241
242#define UNEXEC unexmacosx.o
243
244#define START_FILES pre-crt0.o
245
246/* start_of_text isn't actually used, so make it compile without error. */
247#define TEXT_START (0)
248
249/* This seems to be right for end_of_text, but it may not be used anyway. */
250#define TEXT_END get_etext()
251
252/* This seems to be right for end_of_data, but it may not be used anyway. */
253#define DATA_END get_edata()
254
255/* Definitions for how to compile & link. */
256
bb4c0e89
YM
257/* Indicate that we are compiling for Mac OS X. */
258#define C_SWITCH_SYSTEM -fpascal-strings -DMAC_OSX
e0f712ba 259
50eff40f
YM
260#ifdef HAVE_CARBON
261
262#ifdef HAVE_AVAILABILITYMACROS_H
263#include <AvailabilityMacros.h>
264#endif
265
266/* Whether to use the Image I/O framework for reading images. */
267#ifndef USE_MAC_IMAGE_IO
268#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1040 && (MAC_OS_X_VERSION_MIN_REQUIRED >= 1040 || MAC_OS_X_VERSION_MIN_REQUIRED < 1020)
269#define USE_MAC_IMAGE_IO 1
270#endif
271#endif
272
273/* If the Image I/O framework is not used, fall back on QuickTime. */
274#if USE_MAC_IMAGE_IO
275#define LIBS_IMAGE
276#else
277#define LIBS_IMAGE -framework QuickTime
278#endif
279
280#endif /* HAVE_CARBON */
281
640a0770
ST
282/* Link in the Carbon lib. */
283#ifdef HAVE_CARBON
50eff40f 284#define LIBS_CARBON -framework Carbon LIBS_IMAGE
640a0770 285#else
29b585db 286#define LIBS_CARBON
640a0770
ST
287#endif
288
289/* The -headerpad option tells ld (see man page) to leave room at the
290 end of the header for adding load commands. Needed for dumping.
291 0x690 is the total size of 30 segment load commands (at 56
292 each). */
293#define LD_SWITCH_SYSTEM_TEMACS -prebind LIBS_CARBON -Xlinker -headerpad -Xlinker 690
e0f712ba
AC
294
295#define C_SWITCH_SYSTEM_TEMACS -Dtemacs
296
f00691a3
AC
297/* The ncurses library has been moved out of the System framework in
298 Mac OS X 10.2. So if ./configure detects it, set the command-line
299 option to use it. */
300#ifdef HAVE_LIBNCURSES
301#define LIBS_TERMCAP -lncurses
ad8d730c
AC
302/* This prevents crashes when running Emacs in Terminal.app under
303 10.2. */
304#define TERMINFO
f00691a3
AC
305#endif
306
e0f712ba
AC
307/* Link this program just by running cc. */
308#define ORDINARY_LINK
309
310/* We don't have a g library, so override the -lg LIBS_DEBUG switch. */
311#define LIBS_DEBUG
312
313/* Adding -lm confuses the dynamic linker, so omit it. */
314#define LIB_MATH
315
316/* Tell src/Makefile.in to create files in the Mac OS X application
317 bundle mac/Emacs.app. */
9794a8cd 318#ifdef HAVE_CARBON
e0f712ba 319#define OTHER_FILES macosx-app
9794a8cd 320#endif
e0f712ba
AC
321
322
323/* Define the following so emacs symbols will not conflict with those
324 in the System framework. Otherwise -prebind will not work. */
325
326/* Do not define abort in emacs.c. */
327#define NO_ABORT
328
329/* Do not define matherr in floatfns.c. */
330#define NO_MATHERR
331
332
511ca371
AC
333/* The following solves the problem that Emacs hangs when evaluating
334 (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile
335 does not exist. */
336#undef HAVE_WORKING_VFORK
337#define vfork fork
a7a4eb95
YM
338
339/* Don't close pty in process.c to make it as controlling terminal.
340 It is already a controlling terminal of subprocess, because we did
341 ioctl TIOCSCTTY. */
5cb724f0 342#define DONT_REOPEN_PTY
09740ad8 343
e0f712ba
AC
344#ifdef temacs
345#define malloc unexec_malloc
346#define realloc unexec_realloc
347#define free unexec_free
348#endif
8030369c 349
7a262394
SM
350/* This makes create_process in process.c save and restore signal
351 handlers correctly. Suggested by Nozomu Ando.*/
352#define POSIX_SIGNALS
353
8030369c
AC
354/* Reroute calls to SELECT to the version defined in mac.c to fix the
355 problem of Emacs requiring an extra return to be typed to start
356 working when started from the command line. */
a6311b2f 357#if defined (HAVE_CARBON) && (defined (emacs) || defined (temacs))
8030369c
AC
358#define select sys_select
359#endif
ab5796a9 360
3f080e4e
AC
361/* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method for marking the
362 stack. */
363#define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
364
ab5796a9
MB
365/* arch-tag: 481d443d-4f89-43ea-b5fb-49706d95fa41
366 (do not change this comment) */