blob: 66baee65a5bae511a57fba6af5330148c7b564c5 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/*
2 * config.h.in. Generated automatically from configure.in by autoheader, and
3 * manually changed after that.
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
Bram Moolenaar0c094b92009-05-14 20:20:33 +000033/* Define when __attribute__((unused)) can be used */
34#undef HAVE_ATTRIBUTE_UNUSED
35
Bram Moolenaar071d4272004-06-13 20:20:40 +000036/* defined always when using configure */
37#undef UNIX
38
39/* Defined to the size of an int */
40#undef SIZEOF_INT
41
42/*
43 * If we cannot trust one of the following from the libraries, we use our
44 * own safe but probably slower vim_memmove().
45 */
46#undef USEBCOPY
47#undef USEMEMMOVE
48#undef USEMEMCPY
49
50/* Define when "man -s 2" is to be used */
51#undef USEMAN_S
52
53/* Define to empty if the keyword does not work. */
54#undef const
55
Bram Moolenaar76243bd2009-03-02 01:47:02 +000056/* Define to empty if the keyword does not work. */
57#undef volatile
58
Bram Moolenaar071d4272004-06-13 20:20:40 +000059/* Define to `int' if <sys/types.h> doesn't define. */
60#undef mode_t
61
62/* Define to `long' if <sys/types.h> doesn't define. */
63#undef off_t
64
65/* Define to `long' if <sys/types.h> doesn't define. */
66#undef pid_t
67
68/* Define to `unsigned' if <sys/types.h> doesn't define. */
69#undef size_t
70
71/* Define to `int' if <sys/types.h> doesn't define. */
72#undef uid_t
73
74/* Define to `int' if <sys/types.h> doesn't define. */
75#undef gid_t
76
77/* Define to `long' if <sys/types.h> doesn't define. */
78#undef ino_t
79
80/* Define to `unsigned' if <sys/types.h> doesn't define. */
81#undef dev_t
82
83/* Define to `unsigned long' if <sys/types.h> doesn't define. */
84#undef rlim_t
85
86/* Define to `struct sigaltstack' if <signal.h> doesn't define. */
87#undef stack_t
88
89/* Define if stack_t has the ss_base field. */
90#undef HAVE_SS_BASE
91
92/* Define if you can safely include both <sys/time.h> and <time.h>. */
93#undef TIME_WITH_SYS_TIME
94
95/* Define if you can safely include both <sys/time.h> and <sys/select.h>. */
96#undef SYS_SELECT_WITH_SYS_TIME
97
98/* Define if you have /dev/ptc */
99#undef HAVE_DEV_PTC
100
101/* Define if you have Sys4 ptys */
102#undef HAVE_SVR4_PTYS
103
104/* Define to range of pty names to try */
105#undef PTYRANGE0
106#undef PTYRANGE1
107
108/* Define mode for pty */
109#undef PTYMODE
110
111/* Define group for pty */
112#undef PTYGROUP
113
114/* Define as the return type of signal handlers (int or void). */
115#undef RETSIGTYPE
116
117/* Define as the command at the end of signal handlers ("" or "return 0;"). */
118#undef SIGRETURN
119
120/* Define if struct sigcontext is present */
121#undef HAVE_SIGCONTEXT
122
123/* Define if touuper/tolower only work on lower/upercase characters */
124#undef BROKEN_TOUPPER
125
126/* Define if stat() ignores a trailing slash */
127#undef STAT_IGNORES_SLASH
128
129/* Define if tgetstr() has a second argument that is (char *) */
130#undef TGETSTR_CHAR_P
131
132/* Define if tgetent() returns zero for an error */
133#undef TGETENT_ZERO_ERR
134
135/* Define if the getcwd() function should not be used. */
136#undef BAD_GETCWD
137
138/* Define if you the function: */
139#undef HAVE_BCMP
140#undef HAVE_FCHDIR
141#undef HAVE_FCHOWN
142#undef HAVE_FSEEKO
143#undef HAVE_FSYNC
144#undef HAVE_FTELLO
145#undef HAVE_GETCWD
146#undef HAVE_GETPSEUDOTTY
147#undef HAVE_GETPWNAM
148#undef HAVE_GETPWUID
149#undef HAVE_GETRLIMIT
150#undef HAVE_GETTIMEOFDAY
151#undef HAVE_GETWD
152#undef HAVE_ICONV
153#undef HAVE_NL_LANGINFO_CODESET
154#undef HAVE_LSTAT
155#undef HAVE_MEMCMP
156#undef HAVE_MEMSET
157#undef HAVE_NANOSLEEP
158#undef HAVE_OPENDIR
Bram Moolenaar446cb832008-06-24 21:56:24 +0000159#undef HAVE_FLOAT_FUNCS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#undef HAVE_PUTENV
161#undef HAVE_QSORT
162#undef HAVE_READLINK
163#undef HAVE_RENAME
164#undef HAVE_SELECT
Bram Moolenaar588ebeb2008-05-07 17:09:24 +0000165#undef HAVE_SELINUX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#undef HAVE_SETENV
167#undef HAVE_SETPGID
168#undef HAVE_SETSID
169#undef HAVE_SIGACTION
170#undef HAVE_SIGALTSTACK
171#undef HAVE_SIGSET
172#undef HAVE_SIGSETJMP
173#undef HAVE_SIGSTACK
174#undef HAVE_SIGVEC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175#undef HAVE_STRCASECMP
176#undef HAVE_STRERROR
177#undef HAVE_STRFTIME
178#undef HAVE_STRICMP
179#undef HAVE_STRNCASECMP
180#undef HAVE_STRNICMP
181#undef HAVE_STRPBRK
182#undef HAVE_STRTOL
183#undef HAVE_ST_BLKSIZE
184#undef HAVE_SYSCONF
185#undef HAVE_SYSCTL
186#undef HAVE_SYSINFO
Bram Moolenaar914572a2007-05-01 11:37:47 +0000187#undef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188#undef HAVE_TGETENT
189#undef HAVE_TOWLOWER
190#undef HAVE_TOWUPPER
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000191#undef HAVE_ISWUPPER
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192#undef HAVE_USLEEP
193#undef HAVE_UTIME
194#undef HAVE_BIND_TEXTDOMAIN_CODESET
195
196/* Define if you do not have utime(), but do have the utimes() function. */
197#undef HAVE_UTIMES
198
199/* Define if you have the header file: */
200#undef HAVE_DIRENT_H
201#undef HAVE_ERRNO_H
202#undef HAVE_FCNTL_H
203#undef HAVE_FRAME_H
204#undef HAVE_ICONV_H
205#undef HAVE_LANGINFO_H
206#undef HAVE_LIBC_H
207#undef HAVE_LIBGEN_H
208#undef HAVE_LIBINTL_H
209#undef HAVE_LOCALE_H
Bram Moolenaar446cb832008-06-24 21:56:24 +0000210#undef HAVE_MATH_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211#undef HAVE_NDIR_H
212#undef HAVE_POLL_H
213#undef HAVE_PTHREAD_NP_H
214#undef HAVE_PWD_H
215#undef HAVE_SETJMP_H
216#undef HAVE_SGTTY_H
217#undef HAVE_STRINGS_H
218#undef HAVE_STROPTS_H
219#undef HAVE_SYS_ACCESS_H
220#undef HAVE_SYS_ACL_H
221#undef HAVE_SYS_DIR_H
222#undef HAVE_SYS_IOCTL_H
223#undef HAVE_SYS_NDIR_H
224#undef HAVE_SYS_PARAM_H
225#undef HAVE_SYS_POLL_H
226#undef HAVE_SYS_PTEM_H
227#undef HAVE_SYS_RESOURCE_H
228#undef HAVE_SYS_SELECT_H
229#undef HAVE_SYS_STATFS_H
230#undef HAVE_SYS_STREAM_H
231#undef HAVE_SYS_SYSCTL_H
232#undef HAVE_SYS_SYSINFO_H
233#undef HAVE_SYS_SYSTEMINFO_H
234#undef HAVE_SYS_TIME_H
235#undef HAVE_SYS_UTSNAME_H
236#undef HAVE_WCHAR_H
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000237#undef HAVE_WCTYPE_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238#undef HAVE_TERMCAP_H
239#undef HAVE_TERMIOS_H
240#undef HAVE_TERMIO_H
241#undef HAVE_UNISTD_H
242#undef HAVE_UTIL_DEBUG_H
243#undef HAVE_UTIL_MSGI18N_H
244#undef HAVE_UTIME_H
245#undef HAVE_X11_SUNKEYSYM_H
246#undef HAVE_XM_XM_H
247#undef HAVE_XM_XPMP_H
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000248#undef HAVE_XM_TRAITP_H
249#undef HAVE_XM_MANAGER_H
250#undef HAVE_XM_UNHIGHLIGHTT_H
251#undef HAVE_XM_JOINSIDET_H
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000252#undef HAVE_XM_NOTEBOOK_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253#undef HAVE_X11_XPM_H
254#undef HAVE_X11_XMU_EDITRES_H
255#undef HAVE_X11_SM_SMLIB_H
256
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000257/* Define to the type of the XpmAttributes type. */
258#undef XPMATTRIBUTES_TYPE
259
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
261#undef HAVE_SYS_WAIT_H
262
263/* Define if you have a <sys/wait.h> that is not POSIX.1 compatible. */
264#undef HAVE_UNION_WAIT
265
266/* This is currently unused in vim: */
267/* Define if you have the ANSI C header files. */
268/* #undef STDC_HEADERS */
269
270/* instead, we check a few STDC things ourselves */
271#undef HAVE_STDARG_H
272#undef HAVE_STDLIB_H
273#undef HAVE_STRING_H
274
275/* Define if strings.h cannot be included when strings.h already is */
276#undef NO_STRINGS_WITH_STRING_H
277
278/* Define if you want tiny features. */
279#undef FEAT_TINY
280
281/* Define if you want small features. */
282#undef FEAT_SMALL
283
284/* Define if you want normal features. */
285#undef FEAT_NORMAL
286
287/* Define if you want big features. */
288#undef FEAT_BIG
289
290/* Define if you want huge features. */
291#undef FEAT_HUGE
292
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000293/* Define if you want to include the MzScheme interpreter. */
294#undef FEAT_MZSCHEME
295
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296/* Define if you want to include the Perl interpreter. */
297#undef FEAT_PERL
298
299/* Define if you want to include the Python interpreter. */
300#undef FEAT_PYTHON
301
302/* Define if you want to include the Ruby interpreter. */
303#undef FEAT_RUBY
304
305/* Define if you want to include the Tcl interpreter. */
306#undef FEAT_TCL
307
308/* Define if you want to include the Sniff interface. */
309#undef FEAT_SNIFF
310
311/* Define if you want to add support for ACL */
312#undef HAVE_POSIX_ACL
313#undef HAVE_SOLARIS_ACL
314#undef HAVE_AIX_ACL
315
316/* Define if you want to add support of GPM (Linux console mouse daemon) */
317#undef HAVE_GPM
318
Bram Moolenaar446cb832008-06-24 21:56:24 +0000319/* Define if you want to add support of sysmouse (*BSD console mouse) */
320#undef HAVE_SYSMOUSE
321
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322/* Define if you want to include the Cscope interface. */
323#undef FEAT_CSCOPE
324
325/* Define if you want to include multibyte support. */
326#undef FEAT_MBYTE
327
328/* Define if you want to include fontset support. */
329#undef FEAT_XFONTSET
330
331/* Define if you want to include XIM support. */
332#undef FEAT_XIM
333
334/* Define if you want to include Hangul input support. */
335#undef FEAT_HANGULIN
336
337/* Define if you use GTK and want GNOME support. */
338#undef FEAT_GUI_GNOME
339
Bram Moolenaar843ee412004-06-30 16:16:41 +0000340/* Define if you use KDE and want KDE Toolbar support. */
341#undef FEAT_KDETOOLBAR
342
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343/* Define if GTK+ 2 is available. */
344#undef HAVE_GTK2
345
346/* Define if GTK+ multihead support is available (requires GTK+ >= 2.1.1). */
347#undef HAVE_GTK_MULTIHEAD
348
349/* Define if your X has own locale library */
350#undef X_LOCALE
351
352/* Define if we have dlfcn.h. */
353#undef HAVE_DLFCN_H
354
355/* Define if there is a working gettext(). */
356#undef HAVE_GETTEXT
357
358/* Define if _nl_msg_cat_cntr is present. */
359#undef HAVE_NL_MSG_CAT_CNTR
360
361/* Define if we have dlopen() */
362#undef HAVE_DLOPEN
363
364/* Define if we have dlsym() */
365#undef HAVE_DLSYM
366
367/* Define if we have dl.h. */
368#undef HAVE_DL_H
369
370/* Define if we have shl_load() */
371#undef HAVE_SHL_LOAD
372
373/* Define if you want to include Sun Visual Workshop support. */
374#undef FEAT_SUN_WORKSHOP
375
376/* Define if you want to include NetBeans integration. */
377#undef FEAT_NETBEANS_INTG
378
379/* Define default global runtime path */
380#undef RUNTIME_GLOBAL
381
382/* Define name of who modified a released Vim */
383#undef MODIFIED_BY
384
385/* Define if you want XSMP interaction as well as vanilla swapfile safety */
386#undef USE_XSMP_INTERACT