Mercurial > vim
annotate src/config.h.in @ 14603:d1b69129db99 v8.1.0315
patch 8.1.0315: helpgrep with language doesn't work properly
commit https://github.com/vim/vim/commit/c631f2df624954184509df49479d52ad7fe5233b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 21 21:58:13 2018 +0200
patch 8.1.0315: helpgrep with language doesn't work properly
Problem: Helpgrep with language doesn't work properly. (Takuya Fujiwara)
Solution: Check for the language earlier. (Hirohito Higashi)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 21 Aug 2018 22:00:05 +0200 |
parents | e4d5726e1678 |
children | cf33c47d66aa |
rev | line source |
---|---|
7 | 1 /* |
10375
2055d3722c5b
commit https://github.com/vim/vim/commit/3f7d0907269558cb3ea184a3083640f9e20bb21e
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
2 * config.h.in. Originally generated automatically from configure.ac by |
2055d3722c5b
commit https://github.com/vim/vim/commit/3f7d0907269558cb3ea184a3083640f9e20bb21e
Christian Brabandt <cb@256bit.org>
parents:
10297
diff
changeset
|
3 * autoheader and manually changed after that. |
7 | 4 */ |
5 | |
6 /* Define if we have EBCDIC code */ | |
7 #undef EBCDIC | |
8 | |
9 /* Define unless no X support found */ | |
10 #undef HAVE_X11 | |
11 | |
12 /* Define when terminfo support found */ | |
13 #undef TERMINFO | |
14 | |
15 /* Define when termcap.h contains ospeed */ | |
16 #undef HAVE_OSPEED | |
17 | |
18 /* Define when ospeed can be extern */ | |
19 #undef OSPEED_EXTERN | |
20 | |
21 /* Define when termcap.h contains UP, BC and PC */ | |
22 #undef HAVE_UP_BC_PC | |
23 | |
24 /* Define when UP, BC and PC can be extern */ | |
25 #undef UP_BC_PC_EXTERN | |
26 | |
27 /* Define when termcap.h defines outfuntype */ | |
28 #undef HAVE_OUTFUNTYPE | |
29 | |
30 /* Define when __DATE__ " " __TIME__ can be used */ | |
31 #undef HAVE_DATE_TIME | |
32 | |
1876 | 33 /* Define when __attribute__((unused)) can be used */ |
34 #undef HAVE_ATTRIBUTE_UNUSED | |
35 | |
7 | 36 /* defined always when using configure */ |
37 #undef UNIX | |
38 | |
39 /* Defined to the size of an int */ | |
5684 | 40 #undef VIM_SIZEOF_INT |
7 | 41 |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
42 /* Defined to the size of a long */ |
5684 | 43 #undef VIM_SIZEOF_LONG |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
44 |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
45 /* Defined to the size of off_t */ |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
46 #undef SIZEOF_OFF_T |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
47 |
2232
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
48 /* Defined to the size of time_t */ |
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
49 #undef SIZEOF_TIME_T |
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
50 |
1887 | 51 /* Define when wchar_t is only 2 bytes. */ |
52 #undef SMALL_WCHAR_T | |
53 | |
7 | 54 /* |
55 * If we cannot trust one of the following from the libraries, we use our | |
56 * own safe but probably slower vim_memmove(). | |
57 */ | |
58 #undef USEBCOPY | |
59 #undef USEMEMMOVE | |
60 #undef USEMEMCPY | |
61 | |
62 /* Define when "man -s 2" is to be used */ | |
63 #undef USEMAN_S | |
64 | |
65 /* Define to empty if the keyword does not work. */ | |
66 #undef const | |
67 | |
1832 | 68 /* Define to empty if the keyword does not work. */ |
69 #undef volatile | |
70 | |
7 | 71 /* Define to `int' if <sys/types.h> doesn't define. */ |
72 #undef mode_t | |
73 | |
74 /* Define to `long' if <sys/types.h> doesn't define. */ | |
75 #undef off_t | |
76 | |
77 /* Define to `long' if <sys/types.h> doesn't define. */ | |
78 #undef pid_t | |
79 | |
80 /* Define to `unsigned' if <sys/types.h> doesn't define. */ | |
81 #undef size_t | |
82 | |
83 /* Define to `int' if <sys/types.h> doesn't define. */ | |
84 #undef uid_t | |
85 | |
2184
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
86 /* Define to `unsigned int' or other type that is 32 bit. */ |
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
87 #undef uint32_t |
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
88 |
7 | 89 /* Define to `int' if <sys/types.h> doesn't define. */ |
90 #undef gid_t | |
91 | |
92 /* Define to `long' if <sys/types.h> doesn't define. */ | |
93 #undef ino_t | |
94 | |
95 /* Define to `unsigned' if <sys/types.h> doesn't define. */ | |
96 #undef dev_t | |
97 | |
2184
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
98 /* Define on big-endian machines */ |
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
99 #undef WORDS_BIGENDIAN |
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
100 |
7 | 101 /* Define to `unsigned long' if <sys/types.h> doesn't define. */ |
102 #undef rlim_t | |
103 | |
104 /* Define to `struct sigaltstack' if <signal.h> doesn't define. */ | |
105 #undef stack_t | |
106 | |
107 /* Define if stack_t has the ss_base field. */ | |
108 #undef HAVE_SS_BASE | |
109 | |
110 /* Define if you can safely include both <sys/time.h> and <time.h>. */ | |
111 #undef TIME_WITH_SYS_TIME | |
112 | |
113 /* Define if you can safely include both <sys/time.h> and <sys/select.h>. */ | |
114 #undef SYS_SELECT_WITH_SYS_TIME | |
115 | |
116 /* Define if you have /dev/ptc */ | |
117 #undef HAVE_DEV_PTC | |
118 | |
119 /* Define if you have Sys4 ptys */ | |
120 #undef HAVE_SVR4_PTYS | |
121 | |
122 /* Define to range of pty names to try */ | |
123 #undef PTYRANGE0 | |
124 #undef PTYRANGE1 | |
125 | |
126 /* Define mode for pty */ | |
127 #undef PTYMODE | |
128 | |
129 /* Define group for pty */ | |
130 #undef PTYGROUP | |
131 | |
132 /* Define as the return type of signal handlers (int or void). */ | |
133 #undef RETSIGTYPE | |
134 | |
135 /* Define as the command at the end of signal handlers ("" or "return 0;"). */ | |
136 #undef SIGRETURN | |
137 | |
138 /* Define if struct sigcontext is present */ | |
139 #undef HAVE_SIGCONTEXT | |
140 | |
141 /* Define if touuper/tolower only work on lower/upercase characters */ | |
142 #undef BROKEN_TOUPPER | |
143 | |
144 /* Define if stat() ignores a trailing slash */ | |
145 #undef STAT_IGNORES_SLASH | |
146 | |
147 /* Define if tgetstr() has a second argument that is (char *) */ | |
148 #undef TGETSTR_CHAR_P | |
149 | |
150 /* Define if tgetent() returns zero for an error */ | |
151 #undef TGETENT_ZERO_ERR | |
152 | |
153 /* Define if the getcwd() function should not be used. */ | |
154 #undef BAD_GETCWD | |
155 | |
156 /* Define if you the function: */ | |
157 #undef HAVE_FCHDIR | |
158 #undef HAVE_FCHOWN | |
12847
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
159 #undef HAVE_FCHMOD |
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
160 #undef HAVE_FLOAT_FUNCS |
7 | 161 #undef HAVE_FSEEKO |
162 #undef HAVE_FSYNC | |
12847
14f287552218
patch 8.0.1300: file permissions may end up wrong when writing
Christian Brabandt <cb@256bit.org>
parents:
12837
diff
changeset
|
163 #undef HAVE_FTRUNCATE |
7 | 164 #undef HAVE_GETCWD |
11115
3b36da20ad73
patch 8.0.0445: getpgid is not supported on all systems
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
165 #undef HAVE_GETPGID |
7 | 166 #undef HAVE_GETPSEUDOTTY |
3744 | 167 #undef HAVE_GETPWENT |
7 | 168 #undef HAVE_GETPWNAM |
169 #undef HAVE_GETPWUID | |
170 #undef HAVE_GETRLIMIT | |
171 #undef HAVE_GETTIMEOFDAY | |
172 #undef HAVE_GETWD | |
173 #undef HAVE_ICONV | |
174 #undef HAVE_LSTAT | |
175 #undef HAVE_MEMSET | |
1997 | 176 #undef HAVE_MKDTEMP |
7 | 177 #undef HAVE_NANOSLEEP |
11115
3b36da20ad73
patch 8.0.0445: getpgid is not supported on all systems
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
178 #undef HAVE_NL_LANGINFO_CODESET |
7 | 179 #undef HAVE_OPENDIR |
180 #undef HAVE_PUTENV | |
181 #undef HAVE_QSORT | |
182 #undef HAVE_READLINK | |
183 #undef HAVE_RENAME | |
184 #undef HAVE_SELECT | |
1583 | 185 #undef HAVE_SELINUX |
7 | 186 #undef HAVE_SETENV |
187 #undef HAVE_SETPGID | |
188 #undef HAVE_SETSID | |
189 #undef HAVE_SIGACTION | |
190 #undef HAVE_SIGALTSTACK | |
191 #undef HAVE_SIGSET | |
192 #undef HAVE_SIGSETJMP | |
193 #undef HAVE_SIGSTACK | |
10297
c90f4cc9c3fe
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Christian Brabandt <cb@256bit.org>
parents:
8997
diff
changeset
|
194 #undef HAVE_SIGPROCMASK |
7 | 195 #undef HAVE_SIGVEC |
5788 | 196 #undef HAVE_SMACK |
7 | 197 #undef HAVE_STRCASECMP |
198 #undef HAVE_STRERROR | |
199 #undef HAVE_STRFTIME | |
200 #undef HAVE_STRICMP | |
201 #undef HAVE_STRNCASECMP | |
202 #undef HAVE_STRNICMP | |
203 #undef HAVE_STRPBRK | |
204 #undef HAVE_STRTOL | |
205 #undef HAVE_ST_BLKSIZE | |
206 #undef HAVE_SYSCONF | |
207 #undef HAVE_SYSCTL | |
208 #undef HAVE_SYSINFO | |
1110 | 209 #undef HAVE_SYSINFO_MEM_UNIT |
7 | 210 #undef HAVE_TGETENT |
211 #undef HAVE_TOWLOWER | |
212 #undef HAVE_TOWUPPER | |
258 | 213 #undef HAVE_ISWUPPER |
13923
e4d5726e1678
patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents:
12847
diff
changeset
|
214 #undef HAVE_UNSETENV |
7 | 215 #undef HAVE_USLEEP |
216 #undef HAVE_UTIME | |
217 #undef HAVE_BIND_TEXTDOMAIN_CODESET | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
11621
diff
changeset
|
218 #undef HAVE_MBLEN |
7 | 219 |
2131
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
220 /* Define, if needed, for accessing large files. */ |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
221 #undef _LARGE_FILES |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
222 #undef _FILE_OFFSET_BITS |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
223 #undef _LARGEFILE_SOURCE |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
224 |
7 | 225 /* Define if you do not have utime(), but do have the utimes() function. */ |
226 #undef HAVE_UTIMES | |
227 | |
228 /* Define if you have the header file: */ | |
229 #undef HAVE_DIRENT_H | |
230 #undef HAVE_ERRNO_H | |
231 #undef HAVE_FCNTL_H | |
232 #undef HAVE_FRAME_H | |
233 #undef HAVE_ICONV_H | |
2199
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
234 #undef HAVE_INTTYPES_H |
7 | 235 #undef HAVE_LANGINFO_H |
236 #undef HAVE_LIBC_H | |
237 #undef HAVE_LIBGEN_H | |
238 #undef HAVE_LIBINTL_H | |
239 #undef HAVE_LOCALE_H | |
1621 | 240 #undef HAVE_MATH_H |
7 | 241 #undef HAVE_NDIR_H |
242 #undef HAVE_POLL_H | |
243 #undef HAVE_PTHREAD_NP_H | |
244 #undef HAVE_PWD_H | |
245 #undef HAVE_SETJMP_H | |
246 #undef HAVE_SGTTY_H | |
2199
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
247 #undef HAVE_STDINT_H |
7 | 248 #undef HAVE_STRINGS_H |
249 #undef HAVE_STROPTS_H | |
250 #undef HAVE_SYS_ACCESS_H | |
251 #undef HAVE_SYS_ACL_H | |
252 #undef HAVE_SYS_DIR_H | |
253 #undef HAVE_SYS_IOCTL_H | |
254 #undef HAVE_SYS_NDIR_H | |
255 #undef HAVE_SYS_PARAM_H | |
256 #undef HAVE_SYS_POLL_H | |
257 #undef HAVE_SYS_PTEM_H | |
258 #undef HAVE_SYS_RESOURCE_H | |
259 #undef HAVE_SYS_SELECT_H | |
260 #undef HAVE_SYS_STATFS_H | |
261 #undef HAVE_SYS_STREAM_H | |
262 #undef HAVE_SYS_SYSCTL_H | |
263 #undef HAVE_SYS_SYSINFO_H | |
264 #undef HAVE_SYS_SYSTEMINFO_H | |
265 #undef HAVE_SYS_TIME_H | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
266 #undef HAVE_SYS_TYPES_H |
7 | 267 #undef HAVE_SYS_UTSNAME_H |
268 #undef HAVE_TERMCAP_H | |
269 #undef HAVE_TERMIOS_H | |
270 #undef HAVE_TERMIO_H | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
271 #undef HAVE_WCHAR_H |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
272 #undef HAVE_WCTYPE_H |
7 | 273 #undef HAVE_UNISTD_H |
274 #undef HAVE_UTIL_DEBUG_H | |
275 #undef HAVE_UTIL_MSGI18N_H | |
276 #undef HAVE_UTIME_H | |
277 #undef HAVE_X11_SUNKEYSYM_H | |
278 #undef HAVE_XM_XM_H | |
279 #undef HAVE_XM_XPMP_H | |
148 | 280 #undef HAVE_XM_TRAITP_H |
281 #undef HAVE_XM_MANAGER_H | |
282 #undef HAVE_XM_UNHIGHLIGHTT_H | |
283 #undef HAVE_XM_JOINSIDET_H | |
838 | 284 #undef HAVE_XM_NOTEBOOK_H |
7 | 285 #undef HAVE_X11_XPM_H |
286 #undef HAVE_X11_XMU_EDITRES_H | |
287 #undef HAVE_X11_SM_SMLIB_H | |
288 | |
819 | 289 /* Define to the type of the XpmAttributes type. */ |
290 #undef XPMATTRIBUTES_TYPE | |
291 | |
7 | 292 /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */ |
293 #undef HAVE_SYS_WAIT_H | |
294 | |
295 /* Define if you have a <sys/wait.h> that is not POSIX.1 compatible. */ | |
296 #undef HAVE_UNION_WAIT | |
297 | |
298 /* This is currently unused in vim: */ | |
299 /* Define if you have the ANSI C header files. */ | |
300 /* #undef STDC_HEADERS */ | |
301 | |
302 /* instead, we check a few STDC things ourselves */ | |
303 #undef HAVE_STDLIB_H | |
304 #undef HAVE_STRING_H | |
305 | |
306 /* Define if strings.h cannot be included when strings.h already is */ | |
307 #undef NO_STRINGS_WITH_STRING_H | |
308 | |
309 /* Define if you want tiny features. */ | |
310 #undef FEAT_TINY | |
311 | |
312 /* Define if you want small features. */ | |
313 #undef FEAT_SMALL | |
314 | |
315 /* Define if you want normal features. */ | |
316 #undef FEAT_NORMAL | |
317 | |
318 /* Define if you want big features. */ | |
319 #undef FEAT_BIG | |
320 | |
321 /* Define if you want huge features. */ | |
322 #undef FEAT_HUGE | |
323 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
324 /* Define if you want to include the Lua interpreter. */ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
325 #undef FEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
326 |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
327 /* Define for linking via dlopen() or LoadLibrary() */ |
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
328 #undef DYNAMIC_LUA |
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
329 |
14 | 330 /* Define if you want to include the MzScheme interpreter. */ |
331 #undef FEAT_MZSCHEME | |
332 | |
7 | 333 /* Define if you want to include the Perl interpreter. */ |
334 #undef FEAT_PERL | |
335 | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
336 /* Define for linking via dlopen() or LoadLibrary() */ |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
337 #undef DYNAMIC_PERL |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
338 |
7 | 339 /* Define if you want to include the Python interpreter. */ |
340 #undef FEAT_PYTHON | |
341 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
342 /* Define if you want to include the Python3 interpreter. */ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
343 #undef FEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
344 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
345 /* Define for linking via dlopen() or LoadLibrary() */ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
346 #undef DYNAMIC_PYTHON |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
347 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
348 /* Define for linking via dlopen() or LoadLibrary() */ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
349 #undef DYNAMIC_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
350 |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2373
diff
changeset
|
351 /* Define if dynamic python does not require RTLD_GLOBAL */ |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2373
diff
changeset
|
352 #undef PY_NO_RTLD_GLOBAL |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2373
diff
changeset
|
353 |
3038 | 354 /* Define if dynamic python3 does not require RTLD_GLOBAL */ |
355 #undef PY3_NO_RTLD_GLOBAL | |
356 | |
7 | 357 /* Define if you want to include the Ruby interpreter. */ |
358 #undef FEAT_RUBY | |
359 | |
2621 | 360 /* Define for linking via dlopen() or LoadLibrary() */ |
361 #undef DYNAMIC_RUBY | |
362 | |
7 | 363 /* Define if you want to include the Tcl interpreter. */ |
364 #undef FEAT_TCL | |
365 | |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
366 /* Define for linking via dlopen() or LoadLibrary() */ |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
367 #undef DYNAMIC_TCL |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
368 |
7 | 369 /* Define if you want to add support for ACL */ |
370 #undef HAVE_POSIX_ACL | |
3330 | 371 #undef HAVE_SOLARIS_ZFS_ACL |
7 | 372 #undef HAVE_SOLARIS_ACL |
373 #undef HAVE_AIX_ACL | |
374 | |
7098
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
6282
diff
changeset
|
375 /* Define if pango_shape_full() is available. */ |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
6282
diff
changeset
|
376 #undef HAVE_PANGO_SHAPE_FULL |
70b56e5eccb2
commit https://github.com/vim/vim/commit/3cbe0c01ad71875bd662edb629f9e792a734f292
Christian Brabandt <cb@256bit.org>
parents:
6282
diff
changeset
|
377 |
7 | 378 /* Define if you want to add support of GPM (Linux console mouse daemon) */ |
379 #undef HAVE_GPM | |
380 | |
1621 | 381 /* Define if you want to add support of sysmouse (*BSD console mouse) */ |
382 #undef HAVE_SYSMOUSE | |
383 | |
7 | 384 /* Define if you want to include the Cscope interface. */ |
385 #undef FEAT_CSCOPE | |
386 | |
387 /* Define if you want to include multibyte support. */ | |
388 #undef FEAT_MBYTE | |
389 | |
12837
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
390 /* Define if you want to always define a server name at vim startup. */ |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
391 #undef FEAT_AUTOSERVERNAME |
963cdeb42c41
patch 8.0.1295: cannot automatically get a server name in a terminal
Christian Brabandt <cb@256bit.org>
parents:
12716
diff
changeset
|
392 |
7 | 393 /* Define if you want to include fontset support. */ |
394 #undef FEAT_XFONTSET | |
395 | |
396 /* Define if you want to include XIM support. */ | |
397 #undef FEAT_XIM | |
398 | |
399 /* Define if you want to include Hangul input support. */ | |
400 #undef FEAT_HANGULIN | |
401 | |
402 /* Define if you use GTK and want GNOME support. */ | |
403 #undef FEAT_GUI_GNOME | |
404 | |
11 | 405 /* Define if you use KDE and want KDE Toolbar support. */ |
406 #undef FEAT_KDETOOLBAR | |
407 | |
7 | 408 /* Define if your X has own locale library */ |
409 #undef X_LOCALE | |
410 | |
411 /* Define if we have dlfcn.h. */ | |
412 #undef HAVE_DLFCN_H | |
413 | |
414 /* Define if there is a working gettext(). */ | |
415 #undef HAVE_GETTEXT | |
416 | |
417 /* Define if _nl_msg_cat_cntr is present. */ | |
418 #undef HAVE_NL_MSG_CAT_CNTR | |
419 | |
420 /* Define if we have dlopen() */ | |
421 #undef HAVE_DLOPEN | |
422 | |
423 /* Define if we have dlsym() */ | |
424 #undef HAVE_DLSYM | |
425 | |
426 /* Define if we have dl.h. */ | |
427 #undef HAVE_DL_H | |
428 | |
429 /* Define if we have shl_load() */ | |
430 #undef HAVE_SHL_LOAD | |
431 | |
432 /* Define if you want to include Sun Visual Workshop support. */ | |
433 #undef FEAT_SUN_WORKSHOP | |
434 | |
435 /* Define if you want to include NetBeans integration. */ | |
436 #undef FEAT_NETBEANS_INTG | |
437 | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
438 /* Define if you want to include process communication. */ |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8289
diff
changeset
|
439 #undef FEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
440 |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
441 /* Define if you want to include terminal emulator support. */ |
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
442 #undef FEAT_TERMINAL |
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11474
diff
changeset
|
443 |
7 | 444 /* Define default global runtime path */ |
445 #undef RUNTIME_GLOBAL | |
446 | |
447 /* Define name of who modified a released Vim */ | |
448 #undef MODIFIED_BY | |
449 | |
450 /* Define if you want XSMP interaction as well as vanilla swapfile safety */ | |
451 #undef USE_XSMP_INTERACT | |
2003 | 452 |
453 /* Define if fcntl()'s F_SETFD command knows about FD_CLOEXEC */ | |
454 #undef HAVE_FD_CLOEXEC | |
4168 | 455 |
11154
0895f142cac3
patch 8.0.0464: can't find executable name on Solaris and FreeBSD
Christian Brabandt <cb@256bit.org>
parents:
11125
diff
changeset
|
456 /* Define if /proc/self/exe or similar can be read */ |
0895f142cac3
patch 8.0.0464: can't find executable name on Solaris and FreeBSD
Christian Brabandt <cb@256bit.org>
parents:
11125
diff
changeset
|
457 #undef PROC_EXE_LINK |
11125
6f52cc87fe15
patch 8.0.0450: v:progpath is not reliably set
Christian Brabandt <cb@256bit.org>
parents:
11115
diff
changeset
|
458 |
4168 | 459 /* Define if you want Cygwin to use the WIN32 clipboard, not compatible with X11*/ |
460 #undef FEAT_CYGWIN_WIN32_CLIPBOARD | |
5409 | 461 |
462 /* Define if we have AvailabilityMacros.h on Mac OS X */ | |
463 #undef HAVE_AVAILABILITYMACROS_H | |
6282 | 464 |
465 /* Define if Xutf8SetWMProperties() is in an X library. */ | |
466 #undef HAVE_XUTF8SETWMPROPERTIES | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
467 |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
468 /* Define if GResource is used to load icons */ |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
7098
diff
changeset
|
469 #undef USE_GRESOURCE |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
470 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
471 /* Define if GTK+ GUI is to be linked against GTK+ 3 */ |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
7842
diff
changeset
|
472 #undef USE_GTK3 |
8289
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
473 |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
474 /* Define if we have isinf() */ |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
475 #undef HAVE_ISINF |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
476 |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
477 /* Define if we have isnan() */ |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
478 #undef HAVE_ISNAN |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
479 |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
480 /* Define to inline symbol or empty */ |
6ae3fb4fe7c1
commit https://github.com/vim/vim/commit/136f29a91dbafce424e31a4af133155f997e8f78
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
481 #undef inline |