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