7
|
1 /* 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.
|
18
|
21 *
|
|
22 * Include the Mac header files, unless also compiling with X11 (the header
|
|
23 * files have many conflicts).
|
7
|
24 */
|
18
|
25 #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
|
7
|
38 #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)
|
20
|
122 * we use the Unix File path style. Also when UNIX is defined. */
|
|
123 #if defined(UNIX) || (defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX)
|
7
|
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
|
20
|
143 quite fast. Did I forgot to update the
|
|
144 comment */
|
7
|
145
|
|
146
|
20
|
147 #undef USE_FNAME_CASE /* So that :e os_Mac.c, :w, save back the file
|
|
148 as os_mac.c */
|
7
|
149 #define BINARY_FILE_IO
|
|
150 #define EOL_DEFAULT EOL_MAC
|
20
|
151 #ifndef MACOS_X_UNIX /* I hope that switching these two lines */
|
|
152 # define USE_CR /* does what I want -- BNF */
|
7
|
153 # define NO_CONSOLE /* don't include console mode */
|
|
154 #endif
|
|
155 #define HAVE_AVAIL_MEM
|
|
156
|
|
157 #ifndef HAVE_CONFIG_H
|
|
158 /* #define SYNC_DUP_CLOSE sync() a file with dup() and close() */
|
|
159 # define HAVE_STRING_H
|
|
160 # define HAVE_STRCSPN
|
|
161 # define HAVE_MEMSET
|
|
162 # define USE_TMPNAM /* use tmpnam() instead of mktemp() */
|
|
163 # define HAVE_FCNTL_H
|
|
164 # define HAVE_QSORT
|
|
165 # define HAVE_ST_MODE /* have stat.st_mode */
|
|
166
|
|
167 # if defined(__DATE__) && defined(__TIME__)
|
|
168 # define HAVE_DATE_TIME
|
|
169 # endif
|
|
170 # define HAVE_STRFTIME
|
|
171 #endif
|
|
172
|
|
173
|
|
174 /*
|
|
175 * Names for the EXRC, HELP and temporary files.
|
|
176 * Some of these may have been defined in the makefile.
|
|
177 */
|
|
178
|
|
179 #ifndef SYS_VIMRC_FILE
|
|
180 # ifdef COLON_AS_PATHSEP
|
|
181 # define SYS_VIMRC_FILE "$VIM:vimrc"
|
|
182 # else
|
|
183 # define SYS_VIMRC_FILE "$VIM/vimrc"
|
|
184 # endif
|
|
185 #endif
|
|
186 #ifndef SYS_GVIMRC_FILE
|
|
187 # ifdef COLON_AS_PATHSEP
|
|
188 # define SYS_GVIMRC_FILE "$VIM:gvimrc"
|
|
189 # else
|
|
190 # define SYS_GVIMRC_FILE "$VIM/gvimrc"
|
|
191 # endif
|
|
192 #endif
|
|
193 #ifndef SYS_MENU_FILE
|
|
194 # ifdef COLON_AS_PATHSEP
|
|
195 # define SYS_MENU_FILE "$VIMRUNTIME:menu.vim"
|
|
196 # else
|
|
197 # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim"
|
|
198 # endif
|
|
199 #endif
|
|
200 #ifndef SYS_OPTWIN_FILE
|
|
201 # ifdef COLON_AS_PATHSEP
|
|
202 # define SYS_OPTWIN_FILE "$VIMRUNTIME:optwin.vim"
|
|
203 # else
|
|
204 # define SYS_OPTWIN_FILE "$VIMRUNTIME/optwin.vim"
|
|
205 # endif
|
|
206 #endif
|
|
207 #ifndef EVIM_FILE
|
|
208 # ifdef COLON_AS_PATHSEP
|
|
209 # define EVIM_FILE "$VIMRUNTIME:evim.vim"
|
|
210 # else
|
|
211 # define EVIM_FILE "$VIMRUNTIME/evim.vim"
|
|
212 # endif
|
|
213 #endif
|
|
214
|
|
215 #ifdef FEAT_GUI
|
|
216 # ifndef USR_GVIMRC_FILE
|
|
217 # ifdef COLON_AS_PATHSEP
|
|
218 # define USR_GVIMRC_FILE "$VIM:.gvimrc"
|
|
219 # else
|
|
220 # define USR_GVIMRC_FILE "~/.gvimrc"
|
|
221 # endif
|
|
222 # endif
|
|
223 # ifndef GVIMRC_FILE
|
|
224 # define GVIMRC_FILE "_gvimrc"
|
|
225 # endif
|
|
226 #endif
|
|
227 #ifndef USR_VIMRC_FILE
|
|
228 # ifdef COLON_AS_PATHSEP
|
|
229 # define USR_VIMRC_FILE "$VIM:.vimrc"
|
|
230 # else
|
|
231 # define USR_VIMRC_FILE "~/.vimrc"
|
|
232 # endif
|
|
233 #endif
|
|
234
|
|
235 #ifndef USR_EXRC_FILE
|
|
236 # ifdef COLON_AS_PATHSEP
|
|
237 # define USR_EXRC_FILE "$VIM:.exrc"
|
|
238 # else
|
|
239 # define USR_EXRC_FILE "~/.exrc"
|
|
240 # endif
|
|
241 #endif
|
|
242
|
|
243 #ifndef VIMRC_FILE
|
|
244 # define VIMRC_FILE "_vimrc"
|
|
245 #endif
|
|
246
|
|
247 #ifndef EXRC_FILE
|
|
248 # define EXRC_FILE "_exrc"
|
|
249 #endif
|
|
250
|
|
251 #ifndef DFLT_HELPFILE
|
|
252 # ifdef COLON_AS_PATHSEP
|
|
253 # define DFLT_HELPFILE "$VIMRUNTIME:doc:help.txt"
|
|
254 # else
|
|
255 # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt"
|
|
256 # endif
|
|
257 #endif
|
|
258
|
|
259 #ifndef FILETYPE_FILE
|
|
260 # define FILETYPE_FILE "filetype.vim"
|
|
261 #endif
|
|
262 #ifndef FTPLUGIN_FILE
|
|
263 # define FTPLUGIN_FILE "ftplugin.vim"
|
|
264 #endif
|
|
265 #ifndef INDENT_FILE
|
|
266 # define INDENT_FILE "indent.vim"
|
|
267 #endif
|
|
268 #ifndef FTOFF_FILE
|
|
269 # define FTOFF_FILE "ftoff.vim"
|
|
270 #endif
|
|
271 #ifndef FTPLUGOF_FILE
|
|
272 # define FTPLUGOF_FILE "ftplugof.vim"
|
|
273 #endif
|
|
274 #ifndef INDOFF_FILE
|
|
275 # define INDOFF_FILE "indoff.vim"
|
|
276 #endif
|
|
277
|
|
278 #ifndef SYNTAX_FNAME
|
|
279 # ifdef COLON_AS_PATHSEP
|
|
280 # define SYNTAX_FNAME "$VIMRUNTIME:syntax:%s.vim"
|
|
281 # else
|
|
282 # define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim"
|
|
283 # endif
|
|
284 #endif
|
|
285
|
|
286 #ifdef FEAT_VIMINFO
|
|
287 # ifndef VIMINFO_FILE
|
|
288 # ifdef COLON_AS_PATHSEP
|
|
289 # define VIMINFO_FILE "$VIM:viminfo"
|
|
290 # else
|
|
291 # define VIMINFO_FILE "~/.viminfo"
|
|
292 # endif
|
|
293 # endif
|
|
294 #endif /* FEAT_VIMINFO */
|
|
295
|
|
296 #ifndef DFLT_BDIR
|
|
297 # define DFLT_BDIR "." /* default for 'backupdir' */
|
|
298 #endif
|
|
299
|
|
300 #ifndef DFLT_DIR
|
|
301 # define DFLT_DIR "." /* default for 'directory' */
|
|
302 #endif
|
|
303
|
|
304 #ifndef DFLT_VDIR
|
|
305 # ifdef COLON_AS_PATHSEP
|
|
306 # define DFLT_VDIR "$VIM:vimfiles:view" /* default for 'viewdir' */
|
|
307 # else
|
|
308 # define DFLT_VDIR "$VIM/vimfiles/view" /* default for 'viewdir' */
|
|
309 # endif
|
|
310 #endif
|
|
311
|
|
312 #define DFLT_ERRORFILE "errors.err"
|
18
|
313
|
|
314 #ifndef DFLT_RUNTIMEPATH
|
|
315 # ifdef COLON_AS_PATHSEP
|
|
316 # define DFLT_RUNTIMEPATH "$VIM:vimfiles,$VIMRUNTIME,$VIM:vimfiles:after"
|
|
317 # else
|
|
318 # define DFLT_RUNTIMEPATH "~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after"
|
|
319 # endif
|
7
|
320 #endif
|
|
321
|
|
322 /*
|
|
323 * Macintosh has plenty of memory, use large buffers
|
|
324 */
|
|
325 #define CMDBUFFSIZE 1024 /* size of the command processing buffer */
|
|
326
|
|
327 #if defined(MACOS_X_UNIX)
|
|
328 # define MAXPATHL 1024
|
|
329 # define BASENAMELEN (MAXNAMLEN - 5) /* length of base of filename */
|
|
330 #else
|
|
331 # define MAXPATHL 256 /* Limited by the Pascal Strings */
|
|
332 # define BASENAMELEN (32-5-1) /* length of base of filename */
|
|
333 #endif
|
|
334
|
|
335 #ifndef DFLT_MAXMEM
|
|
336 # define DFLT_MAXMEM 512 /* use up to 512 Kbyte for buffer */
|
|
337 #endif
|
|
338
|
|
339 #ifndef DFLT_MAXMEMTOT
|
|
340 # define DFLT_MAXMEMTOT 2048 /* use up to 2048 Kbyte for Vim */
|
|
341 #endif
|
|
342
|
|
343 #define WILDCHAR_LIST "*?[{`$"
|
|
344
|
|
345 /**************/
|
|
346 #define mch_rename(src, dst) rename(src, dst)
|
|
347 #define mch_remove(x) unlink((char *)(x))
|
|
348 #ifndef mch_getenv
|
|
349 # if defined(__MRC__) || defined(__SC__)
|
|
350 # define mch_getenv(name) ((char_u *)getenv((char *)(name)))
|
|
351 # define mch_setenv(name, val, x) setenv((name), (val))
|
|
352 # elif defined(__APPLE_CC__)
|
|
353 # define mch_getenv(name) ((char_u *)getenv((char *)(name)))
|
|
354 /*# define mch_setenv(name, val, x) setenv((name), (val)) */ /* Obsoleted by Dany on Oct 30, 2001 */
|
|
355 # define mch_setenv(name, val, x) setenv(name, val, x)
|
|
356 # else
|
|
357 /* vim_getenv() is in pty.c */
|
|
358 # define USE_VIMPTY_GETENV
|
|
359 # define mch_getenv(x) vimpty_getenv(x)
|
|
360 # define mch_setenv(name, val, x) setenv(name, val, x)
|
|
361 # endif
|
|
362 #endif
|
|
363
|
|
364 #ifndef HAVE_CONFIG_H
|
|
365 # ifdef __APPLE_CC__
|
|
366 /* Assuming compiling for MacOS X */
|
|
367 /* Trying to take advantage of the prebinding */
|
|
368 # define HAVE_TGETENT
|
|
369 # define OSPEED_EXTERN
|
|
370 # define UP_BC_PC_EXTERN
|
|
371 # endif
|
|
372 #endif
|
|
373
|
|
374 /* Some "prep work" definition to be able to compile the MacOS X
|
|
375 * version with os_unix.x instead of os_mac.c. Based on the result
|
|
376 * of ./configure for console MacOS X.
|
|
377 */
|
|
378
|
|
379 #ifdef MACOS_X_UNIX
|
|
380 # define SIGPROTOARG (int)
|
|
381 # define SIGDEFARG(s) (s) int s;
|
|
382 # define SIGDUMMYARG 0
|
|
383 # undef HAVE_AVAIL_MEM
|
|
384 # ifndef HAVE_CONFIG_H
|
|
385 # define RETSIGTYPE void
|
|
386 # define SIGRETURN return
|
|
387 /*# define USE_SYSTEM */ /* Output ship do debugger :(, but ot compile */
|
|
388 # define HAVE_SYS_WAIT_H 1 /* Attempt */
|
|
389 # define HAVE_TERMIOS_H 1
|
|
390 # define SYS_SELECT_WITH_SYS_TIME 1
|
|
391 # define HAVE_SELECT 1
|
|
392 # define HAVE_SYS_SELECT_H 1
|
|
393 # define HAVE_PUTENV
|
|
394 # define HAVE_SETENV
|
|
395 # define HAVE_RENAME
|
|
396 # endif
|
|
397 # define mch_chdir(s) chdir(s)
|
|
398 #endif
|
|
399
|
|
400 #if defined(MACOS_X) && !defined(HAVE_CONFIG_H)
|
|
401 # define HAVE_PUTENV
|
|
402 #endif
|
|
403
|
|
404 /* A Mac constant causing big problem to syntax highlighting */
|
|
405 #define UNKNOWN_CREATOR '\?\?\?\?'
|
|
406
|
|
407 /*
|
|
408 * for debugging
|
|
409 */
|
|
410 #ifdef MACOS_X
|
|
411 # ifdef _DEBUG
|
|
412 # define TRACE Trace
|
|
413 void Trace(char *fmt, ...);
|
|
414 # else
|
|
415 # define TRACE 1 ? (void)0 : printf
|
|
416 # endif
|
|
417 #endif
|
|
418
|
|
419 #ifdef MACOS_CLASSIC
|
|
420 # define TRACE 1 ? (int)0 : printf
|
|
421 #endif
|