Mercurial > vim
annotate src/os_unix.h @ 29543:b679513dc17c
Added tag v9.0.0112 for changeset 61b400b5e1a81aa992a50aeefcb5c5ab45a53e9e
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 30 Jul 2022 16:45:04 +0200 |
parents | 1690417aeafe |
children | 3276298c67c5 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9669
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 /* | |
10 * NextStep has a problem with configure, undefine a few things: | |
11 */ | |
12 #ifdef NeXT | |
13 # ifdef HAVE_UTIME | |
14 # undef HAVE_UTIME | |
15 # endif | |
16 # ifdef HAVE_SYS_UTSNAME_H | |
17 # undef HAVE_SYS_UTSNAME_H | |
18 # endif | |
19 #endif | |
20 | |
21 #include <stdio.h> | |
22 #include <ctype.h> | |
23 | |
24 #ifdef VAXC | |
25 # include <types.h> | |
26 # include <stat.h> | |
27 #else | |
28 # include <sys/types.h> | |
29 # include <sys/stat.h> | |
30 #endif | |
31 | |
32 #ifdef HAVE_STDLIB_H | |
33 # include <stdlib.h> | |
34 #endif | |
35 | |
15963
2d8fa45b341d
patch 8.1.0987: unnecessary condition in #ifdef
Bram Moolenaar <Bram@vim.org>
parents:
15205
diff
changeset
|
36 #ifdef __CYGWIN__ |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
37 # define WIN32UNIX // Compiling for Win32 using Unix files. |
7 | 38 # define BINARY_FILE_IO |
585 | 39 |
40 # define CASE_INSENSITIVE_FILENAME | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
41 # define USE_FNAME_CASE // Fix filename case differences. |
7 | 42 #endif |
43 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
44 // On AIX 4.2 there is a conflicting prototype for ioctl() in stropts.h and |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
45 // unistd.h. This hack should fix that (suggested by Jeff George). |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
46 // But on AIX 4.3 it's alright (suggested by Jake Hamby). |
7 | 47 #if defined(FEAT_GUI) && defined(_AIX) && !defined(_AIX43) && !defined(_NO_PROTO) |
48 # define _NO_PROTO | |
49 #endif | |
50 | |
51 #ifdef HAVE_UNISTD_H | |
1879 | 52 # include <unistd.h> |
7 | 53 #endif |
54 | |
55 #ifdef HAVE_LIBC_H | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
56 # include <libc.h> // for NeXT |
7 | 57 #endif |
58 | |
59 #ifdef HAVE_SYS_PARAM_H | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
60 # include <sys/param.h> // defines BSD, if it's a BSD system |
7 | 61 #endif |
62 | |
63 /* | |
64 * Using getcwd() is preferred, because it checks for a buffer overflow. | |
65 * Don't use getcwd() on systems do use system("sh -c pwd"). There is an | |
66 * autoconf check for this. | |
67 * Use getcwd() anyway if getwd() isn't present. | |
68 */ | |
69 #if defined(HAVE_GETCWD) && !(defined(BAD_GETCWD) && defined(HAVE_GETWD)) | |
70 # define USE_GETCWD | |
71 #endif | |
72 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
73 // always use unlink() to remove files |
7 | 74 #ifndef PROTO |
75 # ifdef VMS | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
76 # define vim_mkdir(x, y) mkdir((char *)vms_fixfilename(x), y) |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
77 # define mch_rmdir(x) delete((char *)vms_fixfilename(x)) |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
78 # define mch_remove(x) delete((char *)vms_fixfilename(x)) |
7 | 79 # else |
80 # define vim_mkdir(x, y) mkdir((char *)(x), y) | |
81 # define mch_rmdir(x) rmdir((char *)(x)) | |
82 # define mch_remove(x) unlink((char *)(x)) | |
83 # endif | |
84 #endif | |
85 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
86 // The number of arguments to a signal handler is configured here. |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
87 // It used to be a long list of almost all systems. Any system that doesn't |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
88 // have an argument??? |
7 | 89 #define SIGHASARG |
90 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
91 // List 3 arg systems here. I guess __sgi, please test and correct me. jw. |
7 | 92 #if defined(__sgi) && defined(HAVE_SIGCONTEXT) |
93 # define SIGHAS3ARGS | |
94 #endif | |
95 | |
96 #ifdef SIGHASARG | |
97 # ifdef SIGHAS3ARGS | |
98 # define SIGPROTOARG (int, int, struct sigcontext *) | |
25824
3f5f25f7d8a2
patch 8.2.3447: a couple of declarations are not ANSI C
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
99 # define SIGDEFARG(s) (int s, int sig2, struct sigcontext *scont) |
7 | 100 # define SIGDUMMYARG 0, 0, (struct sigcontext *)0 |
101 # else | |
102 # define SIGPROTOARG (int) | |
25824
3f5f25f7d8a2
patch 8.2.3447: a couple of declarations are not ANSI C
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
103 # define SIGDEFARG(s) (int s UNUSED) |
7 | 104 # define SIGDUMMYARG 0 |
105 # endif | |
106 #else | |
107 # define SIGPROTOARG (void) | |
108 # define SIGDEFARG(s) () | |
109 # define SIGDUMMYARG | |
110 #endif | |
111 | |
112 #ifdef HAVE_DIRENT_H | |
113 # include <dirent.h> | |
114 # ifndef NAMLEN | |
115 # define NAMLEN(dirent) strlen((dirent)->d_name) | |
116 # endif | |
117 #else | |
118 # define dirent direct | |
119 # define NAMLEN(dirent) (dirent)->d_namlen | |
120 # if HAVE_SYS_NDIR_H | |
121 # include <sys/ndir.h> | |
122 # endif | |
123 # if HAVE_SYS_DIR_H | |
124 # include <sys/dir.h> | |
125 # endif | |
126 # if HAVE_NDIR_H | |
127 # include <ndir.h> | |
128 # endif | |
129 #endif | |
130 | |
29241
1690417aeafe
patch 8.2.5139: TIME_WITH_SYS_TIME is no longer supported by autoconf
Bram Moolenaar <Bram@vim.org>
parents:
25824
diff
changeset
|
131 #include <time.h> |
7 | 132 #ifdef HAVE_SYS_TIME_H |
133 # include <sys/time.h> | |
134 #endif | |
135 | |
136 #include <signal.h> | |
137 | |
138 #if defined(DIRSIZ) && !defined(MAXNAMLEN) | |
139 # define MAXNAMLEN DIRSIZ | |
140 #endif | |
141 | |
142 #if defined(UFS_MAXNAMLEN) && !defined(MAXNAMLEN) | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
143 # define MAXNAMLEN UFS_MAXNAMLEN // for dynix/ptx |
7 | 144 #endif |
145 | |
146 #if defined(NAME_MAX) && !defined(MAXNAMLEN) | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
147 # define MAXNAMLEN NAME_MAX // for Linux before .99p3 |
7 | 148 #endif |
149 | |
150 /* | |
151 * Note: if MAXNAMLEN has the wrong value, you will get error messages | |
152 * for not being able to open the swap file. | |
153 */ | |
154 #if !defined(MAXNAMLEN) | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
155 # define MAXNAMLEN 512 // for all other Unix |
7 | 156 #endif |
157 | |
158 #define BASENAMELEN (MAXNAMLEN - 5) | |
159 | |
160 #ifdef HAVE_PWD_H | |
161 # include <pwd.h> | |
162 #endif | |
163 | |
164 #if (defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)) \ | |
165 || (defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)) \ | |
166 || defined(HAVE_SYSCTL) || defined(HAVE_SYSCONF) | |
167 # define HAVE_TOTAL_MEM | |
168 #endif | |
169 | |
3927 | 170 |
171 #ifndef PROTO | |
172 | |
7 | 173 #ifdef VMS |
819 | 174 # include <unixio.h> |
175 # include <unixlib.h> | |
176 # include <signal.h> | |
177 # include <file.h> | |
178 # include <ssdef.h> | |
179 # include <descrip.h> | |
180 # include <libclidef.h> | |
181 # include <lnmdef.h> | |
182 # include <psldef.h> | |
183 # include <prvdef.h> | |
184 # include <dvidef.h> | |
185 # include <dcdef.h> | |
186 # include <stsdef.h> | |
187 # include <iodef.h> | |
188 # include <ttdef.h> | |
189 # include <tt2def.h> | |
190 # include <jpidef.h> | |
191 # include <rms.h> | |
192 # include <trmdef.h> | |
193 # include <string.h> | |
194 # include <starlet.h> | |
195 # include <socket.h> | |
196 # include <lib$routines.h> | |
5541 | 197 # include <libdef.h> |
198 # include <libdtdef.h> | |
819 | 199 |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
20311
diff
changeset
|
200 # if defined(FEAT_GUI_MOTIF) |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
20311
diff
changeset
|
201 # define XFree XFREE |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
20311
diff
changeset
|
202 # define XmRepTypeInstallTearOffModelCon XMREPTYPEINSTALLTEAROFFMODELCON |
819 | 203 # endif |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
20311
diff
changeset
|
204 #endif // VMS |
7 | 205 |
20311
05b4efb062a7
patch 8.2.0711: temp directory might be cleared
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
206 #ifdef HAVE_FLOCK |
05b4efb062a7
patch 8.2.0711: temp directory might be cleared
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
207 # include <sys/file.h> |
05b4efb062a7
patch 8.2.0711: temp directory might be cleared
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
208 #endif |
05b4efb062a7
patch 8.2.0711: temp directory might be cleared
Bram Moolenaar <Bram@vim.org>
parents:
19526
diff
changeset
|
209 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
210 #endif // PROTO |
3927 | 211 |
212 #ifdef VMS | |
7 | 213 typedef struct dsc$descriptor DESC; |
214 #endif | |
215 | |
216 /* | |
217 * Unix system-dependent file names | |
218 */ | |
219 #ifndef SYS_VIMRC_FILE | |
220 # define SYS_VIMRC_FILE "$VIM/vimrc" | |
221 #endif | |
222 #ifndef SYS_GVIMRC_FILE | |
223 # define SYS_GVIMRC_FILE "$VIM/gvimrc" | |
224 #endif | |
225 #ifndef DFLT_HELPFILE | |
226 # define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt" | |
227 #endif | |
228 #ifndef FILETYPE_FILE | |
229 # define FILETYPE_FILE "filetype.vim" | |
230 #endif | |
231 #ifndef FTPLUGIN_FILE | |
232 # define FTPLUGIN_FILE "ftplugin.vim" | |
233 #endif | |
234 #ifndef INDENT_FILE | |
235 # define INDENT_FILE "indent.vim" | |
236 #endif | |
237 #ifndef FTOFF_FILE | |
238 # define FTOFF_FILE "ftoff.vim" | |
239 #endif | |
240 #ifndef FTPLUGOF_FILE | |
241 # define FTPLUGOF_FILE "ftplugof.vim" | |
242 #endif | |
243 #ifndef INDOFF_FILE | |
244 # define INDOFF_FILE "indoff.vim" | |
245 #endif | |
246 #ifndef SYS_MENU_FILE | |
247 # define SYS_MENU_FILE "$VIMRUNTIME/menu.vim" | |
248 #endif | |
249 | |
250 #ifndef USR_EXRC_FILE | |
251 # ifdef VMS | |
252 # define USR_EXRC_FILE "sys$login:.exrc" | |
253 # else | |
254 # define USR_EXRC_FILE "$HOME/.exrc" | |
255 # endif | |
256 #endif | |
257 | |
258 #if !defined(USR_EXRC_FILE2) && defined(VMS) | |
259 # define USR_EXRC_FILE2 "sys$login:_exrc" | |
260 #endif | |
261 | |
262 #ifndef USR_VIMRC_FILE | |
263 # ifdef VMS | |
264 # define USR_VIMRC_FILE "sys$login:.vimrc" | |
265 # else | |
266 # define USR_VIMRC_FILE "$HOME/.vimrc" | |
267 # endif | |
268 #endif | |
269 | |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
270 |
6783 | 271 #if !defined(USR_VIMRC_FILE2) |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
272 # ifdef VMS |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
273 # define USR_VIMRC_FILE2 "sys$login:vimfiles/vimrc" |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
274 # else |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
275 # define USR_VIMRC_FILE2 "~/.vim/vimrc" |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
276 # endif |
7 | 277 #endif |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
278 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
279 #if !defined(USR_VIMRC_FILE3) && defined(VMS) |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
280 # define USR_VIMRC_FILE3 "sys$login:_vimrc" |
7 | 281 #endif |
282 | |
283 #ifndef USR_GVIMRC_FILE | |
284 # ifdef VMS | |
285 # define USR_GVIMRC_FILE "sys$login:.gvimrc" | |
286 # else | |
287 # define USR_GVIMRC_FILE "$HOME/.gvimrc" | |
288 # endif | |
289 #endif | |
290 | |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
291 #ifndef USR_GVIMRC_FILE2 |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
292 # ifdef VMS |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
293 # define USR_GVIMRC_FILE2 "sys$login:vimfiles/gvimrc" |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
294 # else |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
295 # define USR_GVIMRC_FILE2 "~/.vim/gvimrc" |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
296 # endif |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
297 #endif |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
298 |
7 | 299 #ifdef VMS |
4863
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
300 # ifndef USR_GVIMRC_FILE3 |
c4d4f0fc12b9
updated for version 7.3.1178
Bram Moolenaar <bram@vim.org>
parents:
3927
diff
changeset
|
301 # define USR_GVIMRC_FILE3 "sys$login:_gvimrc" |
7 | 302 # endif |
303 #endif | |
304 | |
9669
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
305 #ifndef VIM_DEFAULTS_FILE |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
306 # define VIM_DEFAULTS_FILE "$VIMRUNTIME/defaults.vim" |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
307 #endif |
284b4eb307fc
commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
308 |
7 | 309 #ifndef EVIM_FILE |
310 # define EVIM_FILE "$VIMRUNTIME/evim.vim" | |
311 #endif | |
312 | |
313 #ifdef FEAT_VIMINFO | |
314 # ifndef VIMINFO_FILE | |
315 # ifdef VMS | |
316 # define VIMINFO_FILE "sys$login:.viminfo" | |
317 # else | |
318 # define VIMINFO_FILE "$HOME/.viminfo" | |
319 # endif | |
320 # endif | |
321 # if !defined(VIMINFO_FILE2) && defined(VMS) | |
322 # define VIMINFO_FILE2 "sys$login:_viminfo" | |
323 # endif | |
324 #endif | |
325 | |
326 #ifndef EXRC_FILE | |
327 # define EXRC_FILE ".exrc" | |
328 #endif | |
329 | |
330 #ifndef VIMRC_FILE | |
331 # define VIMRC_FILE ".vimrc" | |
332 #endif | |
333 | |
334 #ifdef FEAT_GUI | |
335 # ifndef GVIMRC_FILE | |
336 # define GVIMRC_FILE ".gvimrc" | |
337 # endif | |
338 #endif | |
339 | |
340 #ifndef SYNTAX_FNAME | |
341 # define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim" | |
342 #endif | |
343 | |
344 #ifndef DFLT_BDIR | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
345 # ifdef VMS |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
346 # define DFLT_BDIR "./,sys$login:,tmp:" |
7 | 347 # else |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
348 # define DFLT_BDIR ".,~/tmp,~/" // default for 'backupdir' |
7 | 349 # endif |
350 #endif | |
351 | |
352 #ifndef DFLT_DIR | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
353 # ifdef VMS |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
354 # define DFLT_DIR "./,sys$login:,tmp:" |
7 | 355 # else |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
356 # define DFLT_DIR ".,~/tmp,/var/tmp,/tmp" // default for 'directory' |
7 | 357 # endif |
358 #endif | |
359 | |
360 #ifndef DFLT_VDIR | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
361 # ifdef VMS |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
362 # define DFLT_VDIR "sys$login:vimfiles/view" |
7 | 363 # else |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
364 # define DFLT_VDIR "$HOME/.vim/view" // default for 'viewdir' |
7 | 365 # endif |
366 #endif | |
367 | |
368 #define DFLT_ERRORFILE "errors.err" | |
369 | |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
370 #ifndef DFLT_RUNTIMEPATH |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
371 |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
372 # ifdef VMS |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
373 # define DFLT_RUNTIMEPATH "sys$login:vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,sys$login:vimfiles/after" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
374 # define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
375 # else |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
376 # ifdef RUNTIME_GLOBAL |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
377 # ifdef RUNTIME_GLOBAL_AFTER |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
378 # define DFLT_RUNTIMEPATH "~/.vim," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER ",~/.vim/after" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
379 # define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
380 # else |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
381 # define DFLT_RUNTIMEPATH "~/.vim," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after,~/.vim/after" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
382 # define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
383 # endif |
15205
54d2905bd5ab
patch 8.1.0612: cannot use two global runtime dirs with configure
Bram Moolenaar <Bram@vim.org>
parents:
14509
diff
changeset
|
384 # else |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
385 # define DFLT_RUNTIMEPATH "~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after" |
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
386 # define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after" |
15205
54d2905bd5ab
patch 8.1.0612: cannot use two global runtime dirs with configure
Bram Moolenaar <Bram@vim.org>
parents:
14509
diff
changeset
|
387 # endif |
7 | 388 # endif |
19526
22f0dda71638
patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents:
18753
diff
changeset
|
389 |
7 | 390 #endif |
391 | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
392 #ifdef VMS |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
393 # ifndef VAX |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
394 # define VMS_TEMPNAM // to fix default .LIS extension |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
395 # endif |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
396 # define TEMPNAME "TMP:v?XXXXXX.txt" |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
397 # define TEMPNAMELEN 28 |
7 | 398 #else |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
399 // Try several directories to put the temp files. |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
400 # define TEMPDIRNAMES "$TMPDIR", "/tmp", ".", "$HOME" |
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
6783
diff
changeset
|
401 # define TEMPNAMELEN 256 |
7 | 402 #endif |
403 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
404 // Special wildcards that need to be handled by the shell |
7 | 405 #define SPECIAL_WILDCHAR "`'{" |
406 | |
407 /* | |
408 * Unix has plenty of memory, use large buffers | |
409 */ | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
410 #define CMDBUFFSIZE 1024 // size of the command processing buffer |
1611 | 411 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
412 // Use the system path length if it makes sense. |
1611 | 413 #if defined(PATH_MAX) && (PATH_MAX > 1000) |
414 # define MAXPATHL PATH_MAX | |
415 #else | |
416 # define MAXPATHL 1024 | |
417 #endif | |
7 | 418 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
419 #define CHECK_INODE // used when checking if a swap file already |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
420 // exists for a file |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
421 #ifdef VMS // Use less memory because of older systems |
7 | 422 # ifndef DFLT_MAXMEM |
423 # define DFLT_MAXMEM (2*1024) | |
424 # endif | |
425 # ifndef DFLT_MAXMEMTOT | |
426 # define DFLT_MAXMEMTOT (5*1024) | |
427 # endif | |
428 #else | |
429 # ifndef DFLT_MAXMEM | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
430 # define DFLT_MAXMEM (5*1024) // use up to 5 Mbyte for a buffer |
7 | 431 # endif |
432 # ifndef DFLT_MAXMEMTOT | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
433 # define DFLT_MAXMEMTOT (10*1024) // use up to 10 Mbyte for Vim |
7 | 434 # endif |
435 #endif | |
436 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
437 // memmove() is not present on all systems, use memmove, bcopy or memcpy. |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
438 // Some systems have (void *) arguments, some (char *). If we use (char *) it |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
439 // works for all |
10702
24a1fbd78b76
patch 8.0.0241: fallback implementation of mch_memmove is unused
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
440 #if defined(USEMEMMOVE) || (!defined(USEBCOPY) && !defined(USEMEMCPY)) |
7 | 441 # define mch_memmove(to, from, len) memmove((char *)(to), (char *)(from), len) |
442 #else | |
443 # ifdef USEBCOPY | |
444 # define mch_memmove(to, from, len) bcopy((char *)(from), (char *)(to), len) | |
445 # else | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
446 // ifdef USEMEMCPY |
7 | 447 # define mch_memmove(to, from, len) memcpy((char *)(to), (char *)(from), len) |
448 # endif | |
449 #endif | |
450 | |
451 #ifndef PROTO | |
452 # ifdef HAVE_RENAME | |
453 # define mch_rename(src, dst) rename(src, dst) | |
454 # else | |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7598
diff
changeset
|
455 int mch_rename(const char *src, const char *dest); |
7 | 456 # endif |
457 # ifndef VMS | |
458 # ifdef __MVS__ | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
459 // on OS390 Unix getenv() doesn't return a pointer to persistent |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
460 // storage -> use __getenv() |
7 | 461 # define mch_getenv(x) (char_u *)__getenv((char *)(x)) |
462 # else | |
463 # define mch_getenv(x) (char_u *)getenv((char *)(x)) | |
464 # endif | |
465 # define mch_setenv(name, val, x) setenv(name, val, x) | |
466 # endif | |
467 #endif | |
468 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
469 // Note: Some systems need both string.h and strings.h (Savage). However, |
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
470 // some systems can't handle both, only use string.h in that case. |
7 | 471 #ifdef HAVE_STRING_H |
472 # include <string.h> | |
473 #endif | |
474 #if defined(HAVE_STRINGS_H) && !defined(NO_STRINGS_WITH_STRING_H) | |
475 # include <strings.h> | |
476 #endif | |
477 | |
478 #if defined(HAVE_SETJMP_H) | |
479 # include <setjmp.h> | |
480 # ifdef HAVE_SIGSETJMP | |
481 # define JMP_BUF sigjmp_buf | |
482 # define SETJMP(x) sigsetjmp((x), 1) | |
483 # define LONGJMP siglongjmp | |
484 # else | |
485 # define JMP_BUF jmp_buf | |
486 # define SETJMP(x) setjmp(x) | |
487 # define LONGJMP longjmp | |
488 # endif | |
489 #endif | |
490 | |
5743 | 491 #ifndef HAVE_DUP |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
492 # define HAVE_DUP // have dup() |
5743 | 493 #endif |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
494 #define HAVE_ST_MODE // have stat.st_mode |
7 | 495 |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18705
diff
changeset
|
496 // We have three kinds of ACL support. |
7 | 497 #define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL || HAVE_AIX_ACL) |