annotate src/os_unix.h @ 32669:448aef880252

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