blob: 940e267b996b1c08eb126b2af5469f329f4f6db3 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/* Before Including the MacOS specific files,
10 * lets set the OPAQUE_TOOLBOX_STRUCTS to 0 so we
11 * can access the internal structures.
12 * (Until fully Carbon compliant)
13 * TODO: Can we remove this? (Dany)
14 */
15#if 0
16# define OPAQUE_TOOLBOX_STRUCTS 0
17#endif
18
19/*
20 * Macintosh machine-dependent things.
Bram Moolenaarab79bcb2004-07-18 21:34:53 +000021 *
22 * Include the Mac header files, unless also compiling with X11 (the header
23 * files have many conflicts).
Bram Moolenaar071d4272004-06-13 20:20:40 +000024 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +000025#ifndef FEAT_X11
26# include <QuickDraw.h>
27# include <ToolUtils.h>
28# include <LowMem.h>
29# include <Scrap.h>
30# include <Sound.h>
31# include <TextUtils.h>
32# include <Memory.h>
33# include <OSUtils.h>
34# include <Files.h>
35# ifdef FEAT_MBYTE
36# include <Script.h>
37# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#endif
39
40/*
41 * Unix interface
42 */
43#if defined(__MWERKS__) /* for CodeWarrior */
44# include <unistd.h>
45# include <utsname.h>
46# include <unix.h>
47#endif
48#if defined(__APPLE_CC__) /* for Project Builder and ... */
49# include <unistd.h>
50#endif
51/* Get stat.h or something similar. Comment: How come some OS get in in vim.h */
52#if defined(__MWERKS__)
53# include <stat.h>
54#endif
55#if defined(__APPLE_CC__)
56# include <sys/stat.h>
57#endif
58#if defined(__MRC__) || defined(__SC__) /* for Apple MPW Compilers */
59/* There's no stat.h for MPW? */
60# ifdef powerc
61# pragma options align=power
62# endif
63 struct stat
64 {
65 UInt32 st_mtime;
66 UInt32 st_mode;
67 UInt32 st_size;
68 };
69# ifdef powerc
70# pragma options align=reset
71# endif
72#endif
73#if defined(__APPLE_CC__) /* && defined(HAVE_CURSE) */
74/* The curses.h from MacOS X provides by default some BACKWARD compatibilty
75 * definition which can cause us problem later on. So we undefine a few of them. */
76# include <curses.h>
77# undef reg
78# undef ospeed
79/* OK defined to 0 in MacOS X 10.2 curses! Remove it, we define it to be 1. */
80# undef OK
81#endif
82#include <signal.h>
83#include <errno.h>
84#include <stdio.h>
85#include <stdlib.h>
86#include <time.h>
87#ifdef MACOS_X
88# include <dirent.h>
89#endif
90
91/*
92 * Incompatibility checks
93 */
94
95/* Got problem trying to use shared library in 68k */
96#if !defined(__POWERPC__) && defined(FEAT_PYTHON)
97# undef FEAT_PYTHON
98# warning Auto-disabling Python. Not yet supported in 68k.
99#endif
100
101#if !defined(__POWERPC__) && !defined(__ppc__)
102# if !__option(enumsalwaysint)
103# error "You must compile with enums always int!"
104# endif
105# if defined(__MWERKS__) && !defined(__fourbyteints__)
106# error "You must compile the project with 4-byte ints"
107/* MPW ints are always 4 byte long */
108# endif
109#endif
110
111/*
112 * MacOS specific #define
113 */
114
115/* This will go away when CMD_KEY fully tested */
116#define USE_CMD_KEY
117/* On MacOS X use the / not the : */
118/* TODO: Should file such as ~/.vimrc reside instead in
119 * ~/Library/Vim or ~/Library/Preferences/org.vim.vim/ ? (Dany)
120 */
121/* When compiled under MacOS X (including CARBON version)
122 * we use the Unix File path style */
123#if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
124# undef COLON_AS_PATHSEP
125# define USE_UNIXFILENAME
126#else
127# define COLON_AS_PATHSEP
128# define DONT_ADD_PATHSEP_TO_DIR
129#endif
130
131
132/*
133 * Generic Vim #define
134 */
135
136#define FEAT_SOURCE_FFS
137#define FEAT_SOURCE_FF_MAC
138
139#define USE_EXE_NAME /* to find $VIM */
140#define CASE_INSENSITIVE_FILENAME /* ignore case when comparing file names */
141#define SPACE_IN_FILENAME
142#define BREAKCHECK_SKIP 32 /* call mch_breakcheck() each time, it's
143 quite fast. Did I forgot to update the comment */
144
145
146#undef USE_FNAME_CASE /* So that :e os_Mac.c, :w, save back the file as os_mac.c */
147#define BINARY_FILE_IO
148#define EOL_DEFAULT EOL_MAC
149#ifndef MACOS_X_UNIX /* I hope that switching these two lines */
150# define USE_CR /* does what I want -- BNF */
151# define NO_CONSOLE /* don't include console mode */
152#endif
153#define HAVE_AVAIL_MEM
154
155#ifndef HAVE_CONFIG_H
156/* #define SYNC_DUP_CLOSE sync() a file with dup() and close() */
157# define HAVE_STRING_H
158# define HAVE_STRCSPN
159# define HAVE_MEMSET
160# define USE_TMPNAM /* use tmpnam() instead of mktemp() */
161# define HAVE_FCNTL_H
162# define HAVE_QSORT
163# define HAVE_ST_MODE /* have stat.st_mode */
164
165# if defined(__DATE__) && defined(__TIME__)
166# define HAVE_DATE_TIME
167# endif
168# define HAVE_STRFTIME
169#endif
170
171
172/*
173 * Names for the EXRC, HELP and temporary files.
174 * Some of these may have been defined in the makefile.
175 */
176
177#ifndef SYS_VIMRC_FILE
178# ifdef COLON_AS_PATHSEP
179# define SYS_VIMRC_FILE "$VIM:vimrc"
180# else
181# define SYS_VIMRC_FILE "$VIM/vimrc"
182# endif
183#endif
184#ifndef SYS_GVIMRC_FILE
185# ifdef COLON_AS_PATHSEP
186# define SYS_GVIMRC_FILE "$VIM:gvimrc"
187# else
188# define SYS_GVIMRC_FILE "$VIM/gvimrc"
189# endif
190#endif
191#ifndef SYS_MENU_FILE
192# ifdef COLON_AS_PATHSEP
193# define SYS_MENU_FILE "$VIMRUNTIME:menu.vim"
194# else
195# define SYS_MENU_FILE "$VIMRUNTIME/menu.vim"
196# endif
197#endif
198#ifndef SYS_OPTWIN_FILE
199# ifdef COLON_AS_PATHSEP
200# define SYS_OPTWIN_FILE "$VIMRUNTIME:optwin.vim"
201# else
202# define SYS_OPTWIN_FILE "$VIMRUNTIME/optwin.vim"
203# endif
204#endif
205#ifndef EVIM_FILE
206# ifdef COLON_AS_PATHSEP
207# define EVIM_FILE "$VIMRUNTIME:evim.vim"
208# else
209# define EVIM_FILE "$VIMRUNTIME/evim.vim"
210# endif
211#endif
212
213#ifdef FEAT_GUI
214# ifndef USR_GVIMRC_FILE
215# ifdef COLON_AS_PATHSEP
216# define USR_GVIMRC_FILE "$VIM:.gvimrc"
217# else
218# define USR_GVIMRC_FILE "~/.gvimrc"
219# endif
220# endif
221# ifndef GVIMRC_FILE
222# define GVIMRC_FILE "_gvimrc"
223# endif
224#endif
225#ifndef USR_VIMRC_FILE
226# ifdef COLON_AS_PATHSEP
227# define USR_VIMRC_FILE "$VIM:.vimrc"
228# else
229# define USR_VIMRC_FILE "~/.vimrc"
230# endif
231#endif
232
233#ifndef USR_EXRC_FILE
234# ifdef COLON_AS_PATHSEP
235# define USR_EXRC_FILE "$VIM:.exrc"
236# else
237# define USR_EXRC_FILE "~/.exrc"
238# endif
239#endif
240
241#ifndef VIMRC_FILE
242# define VIMRC_FILE "_vimrc"
243#endif
244
245#ifndef EXRC_FILE
246# define EXRC_FILE "_exrc"
247#endif
248
249#ifndef DFLT_HELPFILE
250# ifdef COLON_AS_PATHSEP
251# define DFLT_HELPFILE "$VIMRUNTIME:doc:help.txt"
252# else
253# define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt"
254# endif
255#endif
256
257#ifndef FILETYPE_FILE
258# define FILETYPE_FILE "filetype.vim"
259#endif
260#ifndef FTPLUGIN_FILE
261# define FTPLUGIN_FILE "ftplugin.vim"
262#endif
263#ifndef INDENT_FILE
264# define INDENT_FILE "indent.vim"
265#endif
266#ifndef FTOFF_FILE
267# define FTOFF_FILE "ftoff.vim"
268#endif
269#ifndef FTPLUGOF_FILE
270# define FTPLUGOF_FILE "ftplugof.vim"
271#endif
272#ifndef INDOFF_FILE
273# define INDOFF_FILE "indoff.vim"
274#endif
275
276#ifndef SYNTAX_FNAME
277# ifdef COLON_AS_PATHSEP
278# define SYNTAX_FNAME "$VIMRUNTIME:syntax:%s.vim"
279# else
280# define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim"
281# endif
282#endif
283
284#ifdef FEAT_VIMINFO
285# ifndef VIMINFO_FILE
286# ifdef COLON_AS_PATHSEP
287# define VIMINFO_FILE "$VIM:viminfo"
288# else
289# define VIMINFO_FILE "~/.viminfo"
290# endif
291# endif
292#endif /* FEAT_VIMINFO */
293
294#ifndef DFLT_BDIR
295# define DFLT_BDIR "." /* default for 'backupdir' */
296#endif
297
298#ifndef DFLT_DIR
299# define DFLT_DIR "." /* default for 'directory' */
300#endif
301
302#ifndef DFLT_VDIR
303# ifdef COLON_AS_PATHSEP
304# define DFLT_VDIR "$VIM:vimfiles:view" /* default for 'viewdir' */
305# else
306# define DFLT_VDIR "$VIM/vimfiles/view" /* default for 'viewdir' */
307# endif
308#endif
309
310#define DFLT_ERRORFILE "errors.err"
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000311
312#ifndef DFLT_RUNTIMEPATH
313# ifdef COLON_AS_PATHSEP
314# define DFLT_RUNTIMEPATH "$VIM:vimfiles,$VIMRUNTIME,$VIM:vimfiles:after"
315# else
316# define DFLT_RUNTIMEPATH "~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after"
317# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318#endif
319
320/*
321 * Macintosh has plenty of memory, use large buffers
322 */
323#define CMDBUFFSIZE 1024 /* size of the command processing buffer */
324
325#if defined(MACOS_X_UNIX)
326# define MAXPATHL 1024
327# define BASENAMELEN (MAXNAMLEN - 5) /* length of base of filename */
328#else
329# define MAXPATHL 256 /* Limited by the Pascal Strings */
330# define BASENAMELEN (32-5-1) /* length of base of filename */
331#endif
332
333#ifndef DFLT_MAXMEM
334# define DFLT_MAXMEM 512 /* use up to 512 Kbyte for buffer */
335#endif
336
337#ifndef DFLT_MAXMEMTOT
338# define DFLT_MAXMEMTOT 2048 /* use up to 2048 Kbyte for Vim */
339#endif
340
341#define WILDCHAR_LIST "*?[{`$"
342
343/**************/
344#define mch_rename(src, dst) rename(src, dst)
345#define mch_remove(x) unlink((char *)(x))
346#ifndef mch_getenv
347# if defined(__MRC__) || defined(__SC__)
348# define mch_getenv(name) ((char_u *)getenv((char *)(name)))
349# define mch_setenv(name, val, x) setenv((name), (val))
350# elif defined(__APPLE_CC__)
351# define mch_getenv(name) ((char_u *)getenv((char *)(name)))
352/*# define mch_setenv(name, val, x) setenv((name), (val)) */ /* Obsoleted by Dany on Oct 30, 2001 */
353# define mch_setenv(name, val, x) setenv(name, val, x)
354# else
355 /* vim_getenv() is in pty.c */
356# define USE_VIMPTY_GETENV
357# define mch_getenv(x) vimpty_getenv(x)
358# define mch_setenv(name, val, x) setenv(name, val, x)
359# endif
360#endif
361
362#ifndef HAVE_CONFIG_H
363# ifdef __APPLE_CC__
364/* Assuming compiling for MacOS X */
365/* Trying to take advantage of the prebinding */
366# define HAVE_TGETENT
367# define OSPEED_EXTERN
368# define UP_BC_PC_EXTERN
369# endif
370#endif
371
372/* Some "prep work" definition to be able to compile the MacOS X
373 * version with os_unix.x instead of os_mac.c. Based on the result
374 * of ./configure for console MacOS X.
375 */
376
377#ifdef MACOS_X_UNIX
378# define SIGPROTOARG (int)
379# define SIGDEFARG(s) (s) int s;
380# define SIGDUMMYARG 0
381# undef HAVE_AVAIL_MEM
382# ifndef HAVE_CONFIG_H
383# define RETSIGTYPE void
384# define SIGRETURN return
385/*# define USE_SYSTEM */ /* Output ship do debugger :(, but ot compile */
386# define HAVE_SYS_WAIT_H 1 /* Attempt */
387# define HAVE_TERMIOS_H 1
388# define SYS_SELECT_WITH_SYS_TIME 1
389# define HAVE_SELECT 1
390# define HAVE_SYS_SELECT_H 1
391# define HAVE_PUTENV
392# define HAVE_SETENV
393# define HAVE_RENAME
394# endif
395# define mch_chdir(s) chdir(s)
396#endif
397
398#if defined(MACOS_X) && !defined(HAVE_CONFIG_H)
399# define HAVE_PUTENV
400#endif
401
402/* A Mac constant causing big problem to syntax highlighting */
403#define UNKNOWN_CREATOR '\?\?\?\?'
404
405/*
406 * for debugging
407 */
408#ifdef MACOS_X
409# ifdef _DEBUG
410# define TRACE Trace
411 void Trace(char *fmt, ...);
412# else
413# define TRACE 1 ? (void)0 : printf
414# endif
415#endif
416
417#ifdef MACOS_CLASSIC
418# define TRACE 1 ? (int)0 : printf
419#endif