blob: 530c0829f0ed9756e88363fcc8acb40d3bfc4dfe [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/*
Bram Moolenaar3f7d0902016-11-12 21:13:42 +01002 * config.h.in. Originally generated automatically from configure.ac by
3 * autoheader and manually changed after that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004 */
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
Bram Moolenaarb3a29552021-11-19 11:28:04 +000030/* Define when del_curterm() is available */
31#undef HAVE_DEL_CURTERM
32
Bram Moolenaar071d4272004-06-13 20:20:40 +000033/* Define when __DATE__ " " __TIME__ can be used */
34#undef HAVE_DATE_TIME
35
Bram Moolenaar8f1dde52020-06-05 23:16:29 +020036/* Defined from $SOURCE_DATE_EPOCH, used as the build date */
37#undef BUILD_DATE
38
Bram Moolenaar0c094b92009-05-14 20:20:33 +000039/* Define when __attribute__((unused)) can be used */
40#undef HAVE_ATTRIBUTE_UNUSED
41
Bram Moolenaar071d4272004-06-13 20:20:40 +000042/* defined always when using configure */
43#undef UNIX
44
45/* Defined to the size of an int */
Bram Moolenaara2aa31a2014-02-23 22:52:40 +010046#undef VIM_SIZEOF_INT
Bram Moolenaar071d4272004-06-13 20:20:40 +000047
Bram Moolenaar914703b2010-05-31 21:59:46 +020048/* Defined to the size of a long */
Bram Moolenaara2aa31a2014-02-23 22:52:40 +010049#undef VIM_SIZEOF_LONG
Bram Moolenaar914703b2010-05-31 21:59:46 +020050
51/* Defined to the size of off_t */
52#undef SIZEOF_OFF_T
53
Bram Moolenaar644fdff2010-05-30 13:26:21 +020054/* Defined to the size of time_t */
55#undef SIZEOF_TIME_T
56
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +000057/* Define when wchar_t is only 2 bytes. */
58#undef SMALL_WCHAR_T
59
Bram Moolenaar071d4272004-06-13 20:20:40 +000060/*
61 * If we cannot trust one of the following from the libraries, we use our
62 * own safe but probably slower vim_memmove().
63 */
64#undef USEBCOPY
65#undef USEMEMMOVE
66#undef USEMEMCPY
67
68/* Define when "man -s 2" is to be used */
69#undef USEMAN_S
70
71/* Define to empty if the keyword does not work. */
72#undef const
73
Bram Moolenaar76243bd2009-03-02 01:47:02 +000074/* Define to empty if the keyword does not work. */
75#undef volatile
76
Bram Moolenaar071d4272004-06-13 20:20:40 +000077/* Define to `int' if <sys/types.h> doesn't define. */
78#undef mode_t
79
80/* Define to `long' if <sys/types.h> doesn't define. */
81#undef off_t
82
83/* Define to `long' if <sys/types.h> doesn't define. */
84#undef pid_t
85
86/* Define to `unsigned' if <sys/types.h> doesn't define. */
87#undef size_t
88
89/* Define to `int' if <sys/types.h> doesn't define. */
90#undef uid_t
91
Bram Moolenaar0bbabe82010-05-17 20:32:55 +020092/* Define to `unsigned int' or other type that is 32 bit. */
93#undef uint32_t
94
Bram Moolenaar071d4272004-06-13 20:20:40 +000095/* Define to `int' if <sys/types.h> doesn't define. */
96#undef gid_t
97
98/* Define to `long' if <sys/types.h> doesn't define. */
99#undef ino_t
100
101/* Define to `unsigned' if <sys/types.h> doesn't define. */
102#undef dev_t
103
Bram Moolenaar0bbabe82010-05-17 20:32:55 +0200104/* Define on big-endian machines */
105#undef WORDS_BIGENDIAN
106
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107/* Define to `unsigned long' if <sys/types.h> doesn't define. */
108#undef rlim_t
109
110/* Define to `struct sigaltstack' if <signal.h> doesn't define. */
111#undef stack_t
112
113/* Define if stack_t has the ss_base field. */
114#undef HAVE_SS_BASE
115
116/* Define if you can safely include both <sys/time.h> and <time.h>. */
117#undef TIME_WITH_SYS_TIME
118
119/* Define if you can safely include both <sys/time.h> and <sys/select.h>. */
120#undef SYS_SELECT_WITH_SYS_TIME
121
Bram Moolenaar643b6142018-09-12 20:29:09 +0200122/* Define to a typecast for select() arguments 2, 3 and 4. */
123#undef SELECT_TYPE_ARG234
124
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125/* Define if you have /dev/ptc */
126#undef HAVE_DEV_PTC
127
128/* Define if you have Sys4 ptys */
129#undef HAVE_SVR4_PTYS
130
131/* Define to range of pty names to try */
132#undef PTYRANGE0
133#undef PTYRANGE1
134
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135/* Define if struct sigcontext is present */
136#undef HAVE_SIGCONTEXT
137
dundargocc57b5bc2022-11-02 13:30:51 +0000138/* Define if toupper/tolower only work on lower/uppercase characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139#undef BROKEN_TOUPPER
140
141/* Define if stat() ignores a trailing slash */
142#undef STAT_IGNORES_SLASH
143
Leah Neukirchen0a7984a2021-10-14 21:27:55 +0100144/* Define to nanoseconds field of struct stat */
145#undef ST_MTIM_NSEC
146
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147/* 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: */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157#undef HAVE_FCHDIR
158#undef HAVE_FCHOWN
Bram Moolenaarcd142e32017-11-16 17:03:45 +0100159#undef HAVE_FCHMOD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#undef HAVE_FSEEKO
161#undef HAVE_FSYNC
Bram Moolenaarcd142e32017-11-16 17:03:45 +0100162#undef HAVE_FTRUNCATE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#undef HAVE_GETCWD
Bram Moolenaar2fcf6682017-03-11 20:03:42 +0100164#undef HAVE_GETPGID
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165#undef HAVE_GETPSEUDOTTY
Bram Moolenaar24305862012-08-15 14:05:05 +0200166#undef HAVE_GETPWENT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167#undef HAVE_GETPWNAM
168#undef HAVE_GETPWUID
169#undef HAVE_GETRLIMIT
170#undef HAVE_GETTIMEOFDAY
171#undef HAVE_GETWD
172#undef HAVE_ICONV
Bram Moolenaarb6fb0512020-04-18 18:24:18 +0200173#undef HAVE_INET_NTOP
Bram Moolenaar63d25552019-05-10 21:28:38 +0200174#undef HAVE_LOCALTIME_R
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175#undef HAVE_LSTAT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176#undef HAVE_MEMSET
Bram Moolenaareaf03392009-11-17 11:08:52 +0000177#undef HAVE_MKDTEMP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178#undef HAVE_NANOSLEEP
Bram Moolenaar2fcf6682017-03-11 20:03:42 +0100179#undef HAVE_NL_LANGINFO_CODESET
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180#undef HAVE_OPENDIR
Bram Moolenaar1e449682019-04-28 14:59:59 +0200181#undef HAVE_POSIX_OPENPT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182#undef HAVE_PUTENV
183#undef HAVE_QSORT
184#undef HAVE_READLINK
185#undef HAVE_RENAME
186#undef HAVE_SELECT
Bram Moolenaar588ebeb2008-05-07 17:09:24 +0000187#undef HAVE_SELINUX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188#undef HAVE_SETENV
189#undef HAVE_SETPGID
190#undef HAVE_SETSID
191#undef HAVE_SIGACTION
192#undef HAVE_SIGALTSTACK
193#undef HAVE_SIGSET
194#undef HAVE_SIGSETJMP
195#undef HAVE_SIGSTACK
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +0200196#undef HAVE_SIGPROCMASK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197#undef HAVE_SIGVEC
Bram Moolenaar5bd32f42014-04-02 14:05:38 +0200198#undef HAVE_SMACK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199#undef HAVE_STRCASECMP
Bram Moolenaar84cf6bd2020-06-16 20:03:43 +0200200#undef HAVE_STRCOLL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#undef HAVE_STRERROR
202#undef HAVE_STRFTIME
203#undef HAVE_STRICMP
204#undef HAVE_STRNCASECMP
205#undef HAVE_STRNICMP
206#undef HAVE_STRPBRK
Bram Moolenaar10455d42019-11-21 15:36:18 +0100207#undef HAVE_STRPTIME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208#undef HAVE_STRTOL
Bram Moolenaar427f5b62019-06-09 13:43:51 +0200209#undef HAVE_CANBERRA
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200210#undef HAVE_SODIUM
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211#undef HAVE_ST_BLKSIZE
212#undef HAVE_SYSCONF
213#undef HAVE_SYSCTL
214#undef HAVE_SYSINFO
Bram Moolenaar914572a2007-05-01 11:37:47 +0000215#undef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaarf52f0602021-03-10 21:26:37 +0100216#undef HAVE_SYSINFO_UPTIME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217#undef HAVE_TGETENT
218#undef HAVE_TOWLOWER
219#undef HAVE_TOWUPPER
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000220#undef HAVE_ISWUPPER
Bram Moolenaardb517302019-06-18 22:53:24 +0200221#undef HAVE_TZSET
Bram Moolenaar137374f2018-05-13 15:59:50 +0200222#undef HAVE_UNSETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223#undef HAVE_USLEEP
224#undef HAVE_UTIME
Bram Moolenaard0573012017-10-28 21:11:06 +0200225#undef HAVE_MBLEN
Paul Ollis65745772022-06-05 16:55:54 +0100226#undef HAVE_TIMER_CREATE
Bram Moolenaar08210f82023-04-13 19:15:54 +0100227#undef HAVE_CLOCK_GETTIME
Christian Brabandte085dfd2023-09-30 12:49:18 +0200228#undef HAVE_XATTR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229
Bram Moolenaar317fd3a2010-05-07 16:05:55 +0200230/* Define, if needed, for accessing large files. */
231#undef _LARGE_FILES
232#undef _FILE_OFFSET_BITS
233#undef _LARGEFILE_SOURCE
234
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235/* Define if you do not have utime(), but do have the utimes() function. */
236#undef HAVE_UTIMES
237
238/* Define if you have the header file: */
239#undef HAVE_DIRENT_H
Evan Miller25448072022-12-30 10:42:23 +0000240#undef HAVE_DISPATCH_DISPATCH_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241#undef HAVE_ERRNO_H
242#undef HAVE_FCNTL_H
243#undef HAVE_FRAME_H
244#undef HAVE_ICONV_H
Bram Moolenaarfa7584c2010-05-19 21:57:45 +0200245#undef HAVE_INTTYPES_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246#undef HAVE_LANGINFO_H
247#undef HAVE_LIBC_H
248#undef HAVE_LIBGEN_H
249#undef HAVE_LIBINTL_H
250#undef HAVE_LOCALE_H
Bram Moolenaar446cb832008-06-24 21:56:24 +0000251#undef HAVE_MATH_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252#undef HAVE_NDIR_H
253#undef HAVE_POLL_H
254#undef HAVE_PTHREAD_NP_H
255#undef HAVE_PWD_H
256#undef HAVE_SETJMP_H
257#undef HAVE_SGTTY_H
Bram Moolenaarfa7584c2010-05-19 21:57:45 +0200258#undef HAVE_STDINT_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259#undef HAVE_STRINGS_H
260#undef HAVE_STROPTS_H
261#undef HAVE_SYS_ACCESS_H
262#undef HAVE_SYS_ACL_H
263#undef HAVE_SYS_DIR_H
264#undef HAVE_SYS_IOCTL_H
265#undef HAVE_SYS_NDIR_H
266#undef HAVE_SYS_PARAM_H
267#undef HAVE_SYS_POLL_H
268#undef HAVE_SYS_PTEM_H
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +0100269#undef HAVE_SYS_PTMS_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270#undef HAVE_SYS_RESOURCE_H
271#undef HAVE_SYS_SELECT_H
272#undef HAVE_SYS_STATFS_H
273#undef HAVE_SYS_STREAM_H
274#undef HAVE_SYS_SYSCTL_H
275#undef HAVE_SYS_SYSINFO_H
276#undef HAVE_SYS_SYSTEMINFO_H
277#undef HAVE_SYS_TIME_H
Bram Moolenaar914703b2010-05-31 21:59:46 +0200278#undef HAVE_SYS_TYPES_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279#undef HAVE_SYS_UTSNAME_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280#undef HAVE_TERMCAP_H
281#undef HAVE_TERMIOS_H
282#undef HAVE_TERMIO_H
Bram Moolenaar914703b2010-05-31 21:59:46 +0200283#undef HAVE_WCHAR_H
284#undef HAVE_WCTYPE_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285#undef HAVE_UNISTD_H
286#undef HAVE_UTIL_DEBUG_H
287#undef HAVE_UTIL_MSGI18N_H
288#undef HAVE_UTIME_H
289#undef HAVE_X11_SUNKEYSYM_H
290#undef HAVE_XM_XM_H
291#undef HAVE_XM_XPMP_H
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000292#undef HAVE_XM_TRAITP_H
293#undef HAVE_XM_MANAGER_H
294#undef HAVE_XM_UNHIGHLIGHTT_H
295#undef HAVE_XM_JOINSIDET_H
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000296#undef HAVE_XM_NOTEBOOK_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297#undef HAVE_X11_XPM_H
298#undef HAVE_X11_XMU_EDITRES_H
299#undef HAVE_X11_SM_SMLIB_H
300
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000301/* Define to the type of the XpmAttributes type. */
302#undef XPMATTRIBUTES_TYPE
303
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
305#undef HAVE_SYS_WAIT_H
306
307/* Define if you have a <sys/wait.h> that is not POSIX.1 compatible. */
308#undef HAVE_UNION_WAIT
309
310/* This is currently unused in vim: */
311/* Define if you have the ANSI C header files. */
312/* #undef STDC_HEADERS */
313
314/* instead, we check a few STDC things ourselves */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315#undef HAVE_STDLIB_H
316#undef HAVE_STRING_H
317
318/* Define if strings.h cannot be included when strings.h already is */
319#undef NO_STRINGS_WITH_STRING_H
320
321/* Define if you want tiny features. */
322#undef FEAT_TINY
323
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324/* Define if you want normal features. */
325#undef FEAT_NORMAL
326
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327/* Define if you want huge features. */
328#undef FEAT_HUGE
329
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200330/* Define if you want to include the Lua interpreter. */
331#undef FEAT_LUA
332
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200333/* Define for linking via dlopen() or LoadLibrary() */
334#undef DYNAMIC_LUA
335
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000336/* Define if you want to include the MzScheme interpreter. */
337#undef FEAT_MZSCHEME
338
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339/* Define if you want to include the Perl interpreter. */
340#undef FEAT_PERL
341
Bram Moolenaare06c1882010-07-21 22:05:20 +0200342/* Define for linking via dlopen() or LoadLibrary() */
343#undef DYNAMIC_PERL
344
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345/* Define if you want to include the Python interpreter. */
346#undef FEAT_PYTHON
347
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200348/* Define if you want to include the Python3 interpreter. */
349#undef FEAT_PYTHON3
350
351/* Define for linking via dlopen() or LoadLibrary() */
352#undef DYNAMIC_PYTHON
353
354/* Define for linking via dlopen() or LoadLibrary() */
355#undef DYNAMIC_PYTHON3
356
Yee Cheng Chinc13b3d12023-08-20 21:18:38 +0200357/* Define if compiled against Python 3 stable ABI / limited API */
358#undef DYNAMIC_PYTHON3_STABLE_ABI
359
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200360/* Define if dynamic python does not require RTLD_GLOBAL */
361#undef PY_NO_RTLD_GLOBAL
362
Bram Moolenaar6fabcbe2011-09-02 12:27:25 +0200363/* Define if dynamic python3 does not require RTLD_GLOBAL */
364#undef PY3_NO_RTLD_GLOBAL
365
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366/* Define if you want to include the Ruby interpreter. */
367#undef FEAT_RUBY
368
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200369/* Define for linking via dlopen() or LoadLibrary() */
370#undef DYNAMIC_RUBY
371
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372/* Define if you want to include the Tcl interpreter. */
373#undef FEAT_TCL
374
Bram Moolenaar8a5115c2016-01-09 19:41:11 +0100375/* Define for linking via dlopen() or LoadLibrary() */
376#undef DYNAMIC_TCL
377
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378/* Define if you want to add support for ACL */
379#undef HAVE_POSIX_ACL
Bram Moolenaar8d462f92012-02-05 22:51:33 +0100380#undef HAVE_SOLARIS_ZFS_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381#undef HAVE_SOLARIS_ACL
382#undef HAVE_AIX_ACL
383
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +0200384/* Define if pango_shape_full() is available. */
385#undef HAVE_PANGO_SHAPE_FULL
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387/* Define if you want to add support of GPM (Linux console mouse daemon) */
388#undef HAVE_GPM
389
Bram Moolenaar446cb832008-06-24 21:56:24 +0000390/* Define if you want to add support of sysmouse (*BSD console mouse) */
391#undef HAVE_SYSMOUSE
392
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393/* Define if you want to include the Cscope interface. */
394#undef FEAT_CSCOPE
395
Bram Moolenaar5c5697f2018-12-12 20:34:09 +0100396/* Define if you don't want to include right-left support. */
397#undef DISABLE_RIGHTLEFT
398
Bram Moolenaar5c5697f2018-12-12 20:34:09 +0100399/* Define if you don't want to include Arabic support. */
400#undef DISABLE_ARABIC
401
Bram Moolenaare42a6d22017-11-12 19:21:51 +0100402/* Define if you want to always define a server name at vim startup. */
403#undef FEAT_AUTOSERVERNAME
404
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405/* Define if you want to include fontset support. */
406#undef FEAT_XFONTSET
407
408/* Define if you want to include XIM support. */
409#undef FEAT_XIM
410
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411/* Define if you use GTK and want GNOME support. */
412#undef FEAT_GUI_GNOME
413
Bram Moolenaar843ee412004-06-30 16:16:41 +0000414/* Define if you use KDE and want KDE Toolbar support. */
415#undef FEAT_KDETOOLBAR
416
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417/* Define if your X has own locale library */
418#undef X_LOCALE
419
420/* Define if we have dlfcn.h. */
421#undef HAVE_DLFCN_H
422
423/* Define if there is a working gettext(). */
424#undef HAVE_GETTEXT
425
Christ van Willegence0ef912024-06-20 23:41:59 +0200426/* Define if there is a working bind_textdomain_codeset(). */
427#undef HAVE_BIND_TEXTDOMAIN_CODESET
428
429/* Define if there is a working dgettext(). */
430#undef HAVE_DGETTEXT
431
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432/* Define if _nl_msg_cat_cntr is present. */
433#undef HAVE_NL_MSG_CAT_CNTR
434
435/* Define if we have dlopen() */
436#undef HAVE_DLOPEN
437
438/* Define if we have dlsym() */
439#undef HAVE_DLSYM
440
441/* Define if we have dl.h. */
442#undef HAVE_DL_H
443
444/* Define if we have shl_load() */
445#undef HAVE_SHL_LOAD
446
Bram Moolenaarbfe13cc2020-04-12 17:53:12 +0200447/* Define if we can use IPv6 networking. */
448#undef FEAT_IPV6
449
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450/* Define if you want to include NetBeans integration. */
451#undef FEAT_NETBEANS_INTG
452
Bram Moolenaare0874f82016-01-24 20:36:41 +0100453/* Define if you want to include process communication. */
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100454#undef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +0100455
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200456/* Define if you want to include terminal emulator support. */
457#undef FEAT_TERMINAL
458
Bram Moolenaar9d302ad2018-12-21 11:48:51 +0100459// Define default global runtime path.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460#undef RUNTIME_GLOBAL
461
Bram Moolenaar9d302ad2018-12-21 11:48:51 +0100462// Define default global runtime after path.
463#undef RUNTIME_GLOBAL_AFTER
464
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465/* Define name of who modified a released Vim */
466#undef MODIFIED_BY
467
468/* Define if you want XSMP interaction as well as vanilla swapfile safety */
469#undef USE_XSMP_INTERACT
Bram Moolenaarf05da212009-11-17 16:13:15 +0000470
471/* Define if fcntl()'s F_SETFD command knows about FD_CLOEXEC */
472#undef HAVE_FD_CLOEXEC
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100473
Bram Moolenaarf3757f02017-03-16 15:13:45 +0100474/* Define if /proc/self/exe or similar can be read */
475#undef PROC_EXE_LINK
Bram Moolenaar47ffb902017-03-12 18:38:02 +0100476
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100477/* Define if you want Cygwin to use the WIN32 clipboard, not compatible with X11*/
478#undef FEAT_CYGWIN_WIN32_CLIPBOARD
Bram Moolenaar2b1b53f2013-11-02 21:04:38 +0100479
480/* Define if we have AvailabilityMacros.h on Mac OS X */
481#undef HAVE_AVAILABILITYMACROS_H
Bram Moolenaarcbc246a2014-10-11 14:47:26 +0200482
483/* Define if Xutf8SetWMProperties() is in an X library. */
484#undef HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar36e294c2015-12-29 18:55:46 +0100485
486/* Define if GResource is used to load icons */
487#undef USE_GRESOURCE
Bram Moolenaar98921892016-02-23 17:14:37 +0100488
489/* Define if GTK+ GUI is to be linked against GTK+ 3 */
490#undef USE_GTK3
Bram Moolenaar136f29a2016-02-27 20:14:15 +0100491
492/* Define if we have isinf() */
493#undef HAVE_ISINF
494
495/* Define if we have isnan() */
496#undef HAVE_ISNAN
497
Bram Moolenaarb2d0e512020-05-07 18:37:03 +0200498/* Define if we have dirfd() */
499#undef HAVE_DIRFD
500
501/* Define if we have flock() */
502#undef HAVE_FLOCK
503
Bram Moolenaar136f29a2016-02-27 20:14:15 +0100504/* Define to inline symbol or empty */
505#undef inline
Bram Moolenaar0e62a672021-02-25 17:17:56 +0100506
507/* Define if _SC_SIGSTKSZ is available via sysconf() */
508#undef HAVE_SYSCONF_SIGSTKSZ
Bram Moolenaar33fc4a62022-02-23 18:07:38 +0000509
510/* Define if you want to load libgpm dynamically */
511#undef DYNAMIC_GPM