]> git.ipfire.org Git - thirdparty/bash.git/blame - config.h.in
Imported from ../bash-3.2.tar.gz.
[thirdparty/bash.git] / config.h.in
CommitLineData
ccc6cda3
JA
1/* config.h -- Configuration file for bash. */
2
0628567a 3/* Copyright (C) 1987-2006 Free Software Foundation, Inc.
ccc6cda3
JA
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
7 Bash is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
bb70624e 9 the Free Software Foundation; either version 2, or (at your option)
ccc6cda3
JA
10 any later version.
11
12 Bash is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Bash; see the file COPYING. If not, write to the Free
bb70624e 19 Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
ccc6cda3
JA
20
21#ifndef _CONFIG_H_
22#define _CONFIG_H_
23
f73dda09 24/* Configuration feature settings controllable by autoconf. */
ccc6cda3
JA
25
26/* Define JOB_CONTROL if your operating system supports
27 BSD-like job control. */
28#undef JOB_CONTROL
29
30/* Define ALIAS if you want the alias features. */
31#undef ALIAS
32
33/* Define PUSHD_AND_POPD if you want those commands to be compiled in.
34 (Also the `dirs' commands.) */
35#undef PUSHD_AND_POPD
36
37/* Define BRACE_EXPANSION if you want curly brace expansion a la Csh:
38 foo{a,b} -> fooa foob. Even if this is compiled in (the default) you
39 can turn it off at shell startup with `-nobraceexpansion', or during
40 shell execution with `set +o braceexpand'. */
41#undef BRACE_EXPANSION
42
43/* Define READLINE to get the nifty/glitzy editing features.
44 This is on by default. You can turn it off interactively
45 with the -nolineediting flag. */
46#undef READLINE
47
48/* Define BANG_HISTORY if you want to have Csh style "!" history expansion.
49 This is unrelated to READLINE. */
50#undef BANG_HISTORY
51
52/* Define HISTORY if you want to have access to previously typed commands.
53
54 If both HISTORY and READLINE are defined, you can get at the commands
55 with line editing commands, and you can directly manipulate the history
56 from the command line.
57
58 If only HISTORY is defined, the `fc' and `history' builtins are
59 available. */
60#undef HISTORY
61
62/* Define this if you want completion that puts all alternatives into
63 a brace expansion shell expression. */
64#if defined (BRACE_EXPANSION) && defined (READLINE)
65# define BRACE_COMPLETION
66#endif /* BRACE_EXPANSION */
67
bb70624e
JA
68/* Define DEFAULT_ECHO_TO_XPG if you want the echo builtin to interpret
69 the backslash-escape characters by default, like the XPG Single Unix
70 Specification V2 for echo.
ccc6cda3 71 This requires that V9_ECHO be defined. */
bb70624e 72#undef DEFAULT_ECHO_TO_XPG
ccc6cda3
JA
73
74/* Define HELP_BUILTIN if you want the `help' shell builtin and the long
75 documentation strings compiled into the shell. */
76#undef HELP_BUILTIN
77
78/* Define RESTRICTED_SHELL if you want the generated shell to have the
79 ability to be a restricted one. The shell thus generated can become
80 restricted by being run with the name "rbash", or by setting the -r
81 flag. */
82#undef RESTRICTED_SHELL
83
84/* Define DISABLED_BUILTINS if you want "builtin foo" to always run the
85 shell builtin "foo", even if it has been disabled with "enable -n foo". */
86#undef DISABLED_BUILTINS
87
88/* Define PROCESS_SUBSTITUTION if you want the K*rn shell-like process
89 substitution features "<(file)". */
90/* Right now, you cannot do this on machines without fully operational
91 FIFO support. This currently include NeXT and Alliant. */
92#undef PROCESS_SUBSTITUTION
93
94/* Define PROMPT_STRING_DECODE if you want the backslash-escaped special
95 characters in PS1 and PS2 expanded. Variable expansion will still be
96 performed. */
97#undef PROMPT_STRING_DECODE
98
99/* Define SELECT_COMMAND if you want the Korn-shell style `select' command:
100 select word in word_list; do command_list; done */
101#undef SELECT_COMMAND
102
103/* Define COMMAND_TIMING of you want the ksh-style `time' reserved word and
104 the ability to time pipelines, functions, and builtins. */
105#undef COMMAND_TIMING
106
107/* Define ARRAY_VARS if you want ksh-style one-dimensional array variables. */
108#undef ARRAY_VARS
109
110/* Define DPAREN_ARITHMETIC if you want the ksh-style ((...)) arithmetic
111 evaluation command. */
112#undef DPAREN_ARITHMETIC
113
cce855bc
JA
114/* Define EXTENDED_GLOB if you want the ksh-style [*+@?!](patlist) extended
115 pattern matching. */
116#undef EXTENDED_GLOB
117
118/* Define COND_COMMAND if you want the ksh-style [[...]] conditional
119 command. */
120#undef COND_COMMAND
121
b80f6443
JA
122/* Define COND_REGEXP if you want extended regular expression matching and the
123 =~ binary operator in the [[...]] conditional command. */
124#define COND_REGEXP
125
bb70624e
JA
126/* Define ARITH_FOR_COMMAND if you want the ksh93-style
127 for (( init; test; step )) do list; done
128 arithmetic for command. */
129#undef ARITH_FOR_COMMAND
130
131/* Define NETWORK_REDIRECTIONS if you want /dev/(tcp|udp)/host/port to open
132 socket connections when used in redirections */
133#undef NETWORK_REDIRECTIONS
134
135/* Define PROGRAMMABLE_COMPLETION for the programmable completion features
136 and the complete builtin. */
137#undef PROGRAMMABLE_COMPLETION
138
b80f6443
JA
139/* Define NO_MULTIBYTE_SUPPORT to not compile in support for multibyte
140 characters, even if the OS supports them. */
141#undef NO_MULTIBYTE_SUPPORT
142
143/* Define DEBUGGER if you want to compile in some features used only by the
144 bash debugger. */
145#undef DEBUGGER
146
95732b49
JA
147/* Define STRICT_POSIX if you want bash to be strictly posix.2 conformant by
148 default (except for echo; that is controlled separately). */
149#undef STRICT_POSIX
150
7117c2d2
JA
151/* Define MEMSCRAMBLE if you want the bash malloc and free to scramble
152 memory contents on malloc() and free(). */
153#undef MEMSCRAMBLE
154
ccc6cda3
JA
155/* Define AFS if you are using Transarc's AFS. */
156#undef AFS
157
b80f6443
JA
158#undef ENABLE_NLS
159
ccc6cda3 160/* End of configuration settings controllable by autoconf. */
b72432fd 161/* Other settable options appear in config-top.h. */
ccc6cda3 162
b72432fd 163#include "config-top.h"
ccc6cda3
JA
164
165/* Beginning of autoconf additions. */
166
f73dda09
JA
167/* Characteristics of the C compiler */
168#undef const
169
170#undef inline
171
172/* Define if cpp supports the ANSI-C stringizing `#' operator */
173#undef HAVE_STRINGIZE
174
175/* Define if the compiler supports `long double' variables. */
176#undef HAVE_LONG_DOUBLE
177
178#undef PROTOTYPES
179
180#undef __CHAR_UNSIGNED__
181
182/* Define if the compiler supports `long long' variables. */
183#undef HAVE_LONG_LONG
184
185#undef HAVE_UNSIGNED_LONG_LONG
186
187/* The number of bytes in a int. */
188#undef SIZEOF_INT
189
190/* The number of bytes in a long. */
191#undef SIZEOF_LONG
192
193/* The number of bytes in a pointer to char. */
194#undef SIZEOF_CHAR_P
195
196/* The number of bytes in a double (hopefully 8). */
197#undef SIZEOF_DOUBLE
198
199/* The number of bytes in a `long long', if we have one. */
200#undef SIZEOF_LONG_LONG
201
202/* System paths */
203
28ef6c31
JA
204#define DEFAULT_MAIL_DIRECTORY "/usr/spool/mail"
205
f73dda09
JA
206/* Characteristics of the system's header files and libraries that affect
207 the compilation environment. */
208
209/* Define if the system does not provide POSIX.1 features except
210 with this defined. */
211#undef _POSIX_1_SOURCE
212
213/* Define if you need to in order for stat and other things to work. */
214#undef _POSIX_SOURCE
215
216/* Define to use GNU libc extensions */
217#undef _GNU_SOURCE
218
219/* Define if you have the ANSI C header files. */
220#undef STDC_HEADERS
221
28ef6c31
JA
222/* Memory management functions. */
223
bb70624e
JA
224/* Define if using the bash version of malloc in lib/malloc/malloc.c */
225#undef USING_BASH_MALLOC
226
7117c2d2
JA
227#undef DISABLE_MALLOC_WRAPPERS
228
ccc6cda3
JA
229/* Define if using alloca.c. */
230#undef C_ALLOCA
231
232/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
233 This function is required for alloca.c support on those systems. */
234#undef CRAY_STACKSEG_END
235
ccc6cda3
JA
236/* Define if you have alloca, as a function or macro. */
237#undef HAVE_ALLOCA
238
239/* Define if you have <alloca.h> and it should be used (not on Ultrix). */
240#undef HAVE_ALLOCA_H
241
ccc6cda3 242
28ef6c31 243/* SYSTEM TYPES */
ccc6cda3
JA
244
245/* Define to `long' if <sys/types.h> doesn't define. */
246#undef off_t
247
248/* Define to `int' if <sys/types.h> doesn't define. */
249#undef mode_t
250
251/* Define to `int' if <signal.h> doesn't define. */
252#undef sigset_t
253
254/* Define to `int' if <sys/types.h> doesn't define. */
255#undef pid_t
256
bb70624e
JA
257/* Define to `short' if <sys/types.h> doesn't define. */
258#undef bits16_t
259
260/* Define to `unsigned short' if <sys/types.h> doesn't define. */
261#undef u_bits16_t
262
cce855bc 263/* Define to `int' if <sys/types.h> doesn't define. */
bb70624e 264#undef bits32_t
cce855bc
JA
265
266/* Define to `unsigned int' if <sys/types.h> doesn't define. */
bb70624e
JA
267#undef u_bits32_t
268
269/* Define to `double' if <sys/types.h> doesn't define. */
270#undef bits64_t
cce855bc 271
bb70624e
JA
272/* Define to `unsigned int' if <sys/types.h> doesn't define. */
273#undef u_int
274
275/* Define to `unsigned long' if <sys/types.h> doesn't define. */
276#undef u_long
b72432fd 277
f73dda09
JA
278/* Define to `int' if <sys/types.h> doesn't define. */
279#undef ptrdiff_t
280
cce855bc
JA
281/* Define to `unsigned' if <sys/types.h> doesn't define. */
282#undef size_t
283
f73dda09
JA
284/* Define to `int' if <sys/types.h> doesn't define. */
285#undef ssize_t
286
287/* Define to `long' if <stdint.h> doesn't define. */
288#undef intmax_t
289
290/* Define to `unsigned long' if <stdint.h> doesn't define. */
291#undef uintmax_t
292
cce855bc
JA
293/* Define to `int' if <sys/types.h> doesn't define. */
294#undef uid_t
295
296/* Define to `long' if <sys/types.h> doesn't define. */
297#undef clock_t
298
299/* Define to `long' if <sys/types.h> doesn't define. */
300#undef time_t
301
28ef6c31
JA
302/* Define to `int' if <sys/types.h> doesn't define. */
303#undef gid_t
304
f73dda09
JA
305/* Define to `unsigned int' if <sys/socket.h> doesn't define. */
306#undef socklen_t
307
0628567a
JA
308#undef HAVE_MBSTATE_T
309
28ef6c31
JA
310/* Define if you have quad_t in <sys/types.h>. */
311#undef HAVE_QUAD_T
312
0628567a
JA
313/* Define if you have wchar_t in <wctype.h>. */
314#undef HAVE_WCHAR_T
315
316/* Define if you have wctype_t in <wctype.h>. */
317#undef HAVE_WCTYPE_T
318
319/* Define if you have wint_t in <wctype.h>. */
320#undef HAVE_WINT_T
321
28ef6c31
JA
322#undef RLIMTYPE
323
324/* Define to the type of elements in the array set by `getgroups'.
325 Usually this is either `int' or `gid_t'. */
326#undef GETGROUPS_T
327
28ef6c31 328/* Characteristics of the machine archictecture. */
ccc6cda3 329
ccc6cda3
JA
330/* If using the C implementation of alloca, define if you know the
331 direction of stack growth for your system; otherwise it will be
332 automatically deduced at run-time.
333 STACK_DIRECTION > 0 => grows toward higher addresses
334 STACK_DIRECTION < 0 => grows toward lower addresses
335 STACK_DIRECTION = 0 => direction of growth unknown
336 */
337#undef STACK_DIRECTION
338
28ef6c31
JA
339/* Define if the machine architecture is big-endian. */
340#undef WORDS_BIGENDIAN
341
28ef6c31
JA
342/* Check for the presence of certain non-function symbols in the system
343 libraries. */
344
cce855bc 345/* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
b80f6443 346#undef HAVE_DECL_SYS_SIGLIST
ccc6cda3
JA
347#undef SYS_SIGLIST_DECLARED
348
e8ce775d
JA
349/* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>. */
350#undef UNDER_SYS_SIGLIST_DECLARED
351
28ef6c31 352#undef HAVE_SYS_SIGLIST
ccc6cda3 353
28ef6c31 354#undef HAVE_UNDER_SYS_SIGLIST
bb70624e 355
28ef6c31 356#undef HAVE_SYS_ERRLIST
bb70624e 357
7117c2d2
JA
358#undef HAVE_TZNAME
359
ccc6cda3 360
28ef6c31 361/* Characteristics of some of the system structures. */
ccc6cda3 362
b80f6443 363#undef HAVE_STRUCT_DIRENT_D_INO
28ef6c31 364
b80f6443
JA
365#undef HAVE_STRUCT_DIRENT_D_FILENO
366
367#undef HAVE_STRUCT_DIRENT_D_NAMLEN
ccc6cda3
JA
368
369#undef TIOCSTAT_IN_SYS_IOCTL
370
371#undef FIONREAD_IN_SYS_IOCTL
372
28ef6c31 373#undef GWINSZ_IN_SYS_IOCTL
ccc6cda3 374
28ef6c31 375#undef STRUCT_WINSIZE_IN_SYS_IOCTL
ccc6cda3 376
7117c2d2
JA
377#undef TM_IN_SYS_TIME
378
28ef6c31 379#undef STRUCT_WINSIZE_IN_TERMIOS
ccc6cda3 380
28ef6c31 381#undef SPEED_T_IN_SYS_TYPES
ccc6cda3 382
28ef6c31 383#undef TERMIOS_LDISC
ccc6cda3 384
28ef6c31 385#undef TERMIO_LDISC
ccc6cda3 386
f73dda09 387#undef HAVE_STRUCT_STAT_ST_BLOCKS
ccc6cda3 388
7117c2d2
JA
389#undef HAVE_STRUCT_TM_TM_ZONE
390#undef HAVE_TM_ZONE
391
b80f6443
JA
392#undef HAVE_TIMEVAL
393
394#undef HAVE_STRUCT_TIMEZONE
395
28ef6c31 396/* Characteristics of definitions in the system header files. */
bb70624e 397
ccc6cda3
JA
398#undef HAVE_GETPW_DECLS
399
ccc6cda3
JA
400#undef HAVE_RESOURCE
401
f73dda09
JA
402#undef HAVE_LIBC_FNM_EXTMATCH
403
404#undef HAVE_DECL_CONFSTR
405
7117c2d2 406#undef HAVE_DECL_PRINTF
f73dda09
JA
407
408#undef HAVE_DECL_SBRK
409
7117c2d2 410#undef HAVE_DECL_STRCPY
f73dda09
JA
411
412#undef HAVE_DECL_STRSIGNAL
413
7117c2d2
JA
414#undef HAVE_DECL_STRTOLD
415
b80f6443 416#undef STRTOLD_BROKEN
7117c2d2 417
95732b49
JA
418/* Define if WCONTINUED is defined in system headers, but rejected by waitpid */
419#undef WCONTINUED_BROKEN
420
f73dda09 421/* These are checked with BASH_CHECK_DECL */
ccc6cda3 422
f73dda09
JA
423#undef HAVE_DECL_STRTOIMAX
424#undef HAVE_DECL_STRTOL
425#undef HAVE_DECL_STRTOLL
426#undef HAVE_DECL_STRTOUL
427#undef HAVE_DECL_STRTOULL
428#undef HAVE_DECL_STRTOUMAX
ccc6cda3 429
28ef6c31 430/* Characteristics of system calls and C library functions. */
ccc6cda3 431
28ef6c31
JA
432/* Define if the `getpgrp' function takes no argument. */
433#undef GETPGRP_VOID
ccc6cda3
JA
434
435#undef NAMED_PIPES_MISSING
436
437#undef OPENDIR_NOT_ROBUST
438
439#undef PGRP_PIPE
440
28ef6c31
JA
441/* Define if the setvbuf function takes the buffering type as its second
442 argument and the buffer pointer as the third, as on System V
443 before release 3. */
444#undef SETVBUF_REVERSED
ccc6cda3 445
28ef6c31 446#undef STAT_MACROS_BROKEN
ccc6cda3 447
28ef6c31 448#undef ULIMIT_MAXFDS
ccc6cda3 449
28ef6c31 450#undef CAN_REDEFINE_GETENV
ccc6cda3 451
7117c2d2
JA
452#undef HAVE_STD_PUTENV
453
454#undef HAVE_STD_UNSETENV
455
f73dda09 456#undef HAVE_PRINTF_A_FORMAT
ccc6cda3 457
b80f6443
JA
458#undef CTYPE_NON_ASCII
459
7117c2d2
JA
460/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
461#undef HAVE_LANGINFO_CODESET
462
28ef6c31 463/* Characteristics of properties exported by the kernel. */
ccc6cda3 464
28ef6c31
JA
465/* Define if the kernel can exec files beginning with #! */
466#undef HAVE_HASH_BANG_EXEC
ccc6cda3 467
28ef6c31
JA
468/* Define if you have the /dev/fd devices to map open files into the file system. */
469#undef HAVE_DEV_FD
ccc6cda3 470
28ef6c31
JA
471/* Defined to /dev/fd or /proc/self/fd (linux). */
472#undef DEV_FD_PREFIX
ccc6cda3 473
28ef6c31
JA
474/* Define if you have the /dev/stdin device. */
475#undef HAVE_DEV_STDIN
ccc6cda3 476
ccc6cda3 477
28ef6c31 478/* Type and behavior of signal handling functions. */
ccc6cda3 479
28ef6c31
JA
480/* Define as the return type of signal handlers (int or void). */
481#undef RETSIGTYPE
d166f048 482
28ef6c31
JA
483/* Define if return type of signal handlers is void */
484#undef VOID_SIGHANDLER
d166f048 485
28ef6c31 486#undef MUST_REINSTALL_SIGHANDLERS
cce855bc 487
28ef6c31 488#undef HAVE_BSD_SIGNALS
ccc6cda3 489
28ef6c31 490#undef HAVE_POSIX_SIGNALS
ccc6cda3 491
28ef6c31 492#undef HAVE_USG_SIGHOLD
ccc6cda3 493
28ef6c31 494#undef UNUSABLE_RT_SIGNALS
ccc6cda3 495
28ef6c31
JA
496
497/* Presence of system and C library functions. */
ccc6cda3 498
f73dda09
JA
499/* Define if you have the asprintf function. */
500#undef HAVE_ASPRINTF
501
ccc6cda3
JA
502/* Define if you have the bcopy function. */
503#undef HAVE_BCOPY
504
505/* Define if you have the bzero function. */
506#undef HAVE_BZERO
507
508/* Define if you have the confstr function. */
509#undef HAVE_CONFSTR
510
511/* Define if you have the dlclose function. */
512#undef HAVE_DLCLOSE
513
514/* Define if you have the dlopen function. */
515#undef HAVE_DLOPEN
516
517/* Define if you have the dlsym function. */
518#undef HAVE_DLSYM
519
28ef6c31
JA
520/* Define if you don't have vprintf but do have _doprnt. */
521#undef HAVE_DOPRNT
522
ccc6cda3
JA
523/* Define if you have the dup2 function. */
524#undef HAVE_DUP2
525
0628567a
JA
526/* Define if you have the eaccess function. */
527#undef HAVE_EACCESS
528
95732b49
JA
529/* Define if you have the fcntl function. */
530#undef HAVE_FCNTL
531
f73dda09
JA
532/* Define if you have the getaddrinfo function. */
533#undef HAVE_GETADDRINFO
534
ccc6cda3
JA
535/* Define if you have the getcwd function. */
536#undef HAVE_GETCWD
537
538/* Define if you have the getdtablesize function. */
539#undef HAVE_GETDTABLESIZE
540
541/* Define if you have the getgroups function. */
542#undef HAVE_GETGROUPS
543
28ef6c31
JA
544/* Define if you have the gethostbyname function. */
545#undef HAVE_GETHOSTBYNAME
546
ccc6cda3
JA
547/* Define if you have the gethostname function. */
548#undef HAVE_GETHOSTNAME
549
550/* Define if you have the getpagesize function. */
551#undef HAVE_GETPAGESIZE
552
553/* Define if you have the getpeername function. */
554#undef HAVE_GETPEERNAME
555
95732b49
JA
556/* Define if you have the getpwent function. */
557#undef HAVE_GETPWENT
558
559/* Define if you have the getpwnam function. */
560#undef HAVE_GETPWNAM
561
562/* Define if you have the getpwuid function. */
563#undef HAVE_GETPWUID
564
28ef6c31
JA
565/* Define if you have the getrlimit function. */
566#undef HAVE_GETRLIMIT
567
568/* Define if you have the getrusage function. */
569#undef HAVE_GETRUSAGE
570
571/* Define if you have the getservbyname function. */
572#undef HAVE_GETSERVBYNAME
573
7117c2d2
JA
574/* Define if you have the getservent function. */
575#undef HAVE_GETSERVENT
576
28ef6c31
JA
577/* Define if you have the gettimeofday function. */
578#undef HAVE_GETTIMEOFDAY
579
ccc6cda3
JA
580/* Define if you have the getwd function. */
581#undef HAVE_GETWD
582
28ef6c31
JA
583/* Define if you have the inet_aton function. */
584#undef HAVE_INET_ATON
585
f73dda09
JA
586/* Define if you have the isascii function. */
587#undef HAVE_ISASCII
588
589/* Define if you have the isblank function. */
590#undef HAVE_ISBLANK
591
592/* Define if you have the isgraph function. */
593#undef HAVE_ISGRAPH
594
0628567a 595/* Define if you have the isinf function in libc */
7117c2d2
JA
596#undef HAVE_ISINF_IN_LIBC
597
0628567a
JA
598/* Define if you have the isnan function in libc */
599#undef HAVE_ISNAN_IN_LIBC
600
f73dda09
JA
601/* Define if you have the isprint function. */
602#undef HAVE_ISPRINT
603
604/* Define if you have the isspace function. */
605#undef HAVE_ISSPACE
606
0628567a
JA
607/* Define if you have the iswctype function. */
608#undef HAVE_ISWCTYPE
609
610/* Define if you have the iswlower function. */
611#undef HAVE_ISWLOWER
612
613/* Define if you have the iswupper function. */
614#undef HAVE_ISWUPPER
615
f73dda09
JA
616/* Define if you have the isxdigit function. */
617#undef HAVE_ISXDIGIT
618
95732b49
JA
619/* Define if you have the kill function. */
620#undef HAVE_KILL
621
ccc6cda3
JA
622/* Define if you have the killpg function. */
623#undef HAVE_KILLPG
624
b72432fd 625/* Define if you have the lstat function. */
ccc6cda3
JA
626#undef HAVE_LSTAT
627
b80f6443
JA
628/* Define if you have the mbrlen function. */
629#undef HAVE_MBRLEN
630
631/* Define if you have the mbrtowc function. */
632#undef HAVE_MBRTOWC
633
7117c2d2
JA
634/* Define if you have the mbsrtowcs function. */
635#undef HAVE_MBSRTOWCS
636
28ef6c31
JA
637/* Define if you have the memmove function. */
638#undef HAVE_MEMMOVE
639
7117c2d2
JA
640/* Define if you have the memset function. */
641#undef HAVE_MEMSET
642
28ef6c31
JA
643/* Define if you have the mkfifo function. */
644#undef HAVE_MKFIFO
645
646/* Define if you have the pathconf function. */
647#undef HAVE_PATHCONF
648
ccc6cda3
JA
649/* Define if you have the putenv function. */
650#undef HAVE_PUTENV
651
95732b49
JA
652/* Define if you have the raise function. */
653#undef HAVE_RAISE
654
28ef6c31
JA
655/* Define if you have the readlink function. */
656#undef HAVE_READLINK
657
b80f6443
JA
658/* Define if you have the regcomp function. */
659#undef HAVE_REGCOMP
660
661/* Define if you have the regexec function. */
662#undef HAVE_REGEXEC
663
b72432fd
JA
664/* Define if you have the rename function. */
665#undef HAVE_RENAME
666
667/* Define if you have the sbrk function. */
668#undef HAVE_SBRK
669
ccc6cda3
JA
670/* Define if you have the select function. */
671#undef HAVE_SELECT
672
673/* Define if you have the setdtablesize function. */
674#undef HAVE_SETDTABLESIZE
675
676/* Define if you have the setenv function. */
677#undef HAVE_SETENV
678
679/* Define if you have the setlinebuf function. */
680#undef HAVE_SETLINEBUF
681
682/* Define if you have the setlocale function. */
683#undef HAVE_SETLOCALE
684
28ef6c31
JA
685/* Define if you have the setostype function. */
686#undef HAVE_SETOSTYPE
687
0628567a
JA
688/* Define if you have the setregid function. */
689#undef HAVE_SETREGID
690#undef HAVE_DECL_SETREGID
691
bb70624e
JA
692/* Define if you have the setvbuf function. */
693#undef HAVE_SETVBUF
694
695/* Define if you have the siginterrupt function. */
ccc6cda3
JA
696#undef HAVE_SIGINTERRUPT
697
28ef6c31
JA
698/* Define if you have the POSIX.1-style sigsetjmp function. */
699#undef HAVE_POSIX_SIGSETJMP
700
f73dda09
JA
701/* Define if you have the snprintf function. */
702#undef HAVE_SNPRINTF
703
ccc6cda3
JA
704/* Define if you have the strcasecmp function. */
705#undef HAVE_STRCASECMP
706
707/* Define if you have the strchr function. */
708#undef HAVE_STRCHR
709
28ef6c31
JA
710/* Define if you have the strcoll function. */
711#undef HAVE_STRCOLL
712
ccc6cda3
JA
713/* Define if you have the strerror function. */
714#undef HAVE_STRERROR
715
7117c2d2
JA
716/* Define if you have the strftime function. */
717#undef HAVE_STRFTIME
718
95732b49
JA
719/* Define if you have the strnlen function. */
720#undef HAVE_STRNLEN
721
bb70624e
JA
722/* Define if you have the strpbrk function. */
723#undef HAVE_STRPBRK
724
b80f6443
JA
725/* Define if you have the strstr function. */
726#undef HAVE_STRSTR
727
cce855bc
JA
728/* Define if you have the strtod function. */
729#undef HAVE_STRTOD
730
f73dda09
JA
731/* Define if you have the strtoimax function. */
732#undef HAVE_STRTOIMAX
733
cce855bc
JA
734/* Define if you have the strtol function. */
735#undef HAVE_STRTOL
736
f73dda09
JA
737/* Define if you have the strtoll function. */
738#undef HAVE_STRTOLL
739
cce855bc
JA
740/* Define if you have the strtoul function. */
741#undef HAVE_STRTOUL
742
f73dda09
JA
743/* Define if you have the strtoull function. */
744#undef HAVE_STRTOULL
745
746/* Define if you have the strtoumax function. */
747#undef HAVE_STRTOUMAX
748
28ef6c31
JA
749/* Define if you have the strsignal function or macro. */
750#undef HAVE_STRSIGNAL
ccc6cda3
JA
751
752/* Define if you have the sysconf function. */
753#undef HAVE_SYSCONF
754
28ef6c31
JA
755/* Define if you have the tcgetattr function. */
756#undef HAVE_TCGETATTR
ccc6cda3 757
28ef6c31
JA
758/* Define if you have the tcgetpgrp function. */
759#undef HAVE_TCGETPGRP
760
28ef6c31
JA
761/* Define if you have the times function. */
762#undef HAVE_TIMES
ccc6cda3 763
0628567a
JA
764/* Define if you have the towlower function. */
765#undef HAVE_TOWLOWER
766
767/* Define if you have the towupper function. */
768#undef HAVE_TOWUPPER
769
28ef6c31 770/* Define if you have the ttyname function. */
bb70624e
JA
771#undef HAVE_TTYNAME
772
28ef6c31
JA
773/* Define if you have the tzset function. */
774#undef HAVE_TZSET
ccc6cda3 775
28ef6c31
JA
776/* Define if you have the ulimit function. */
777#undef HAVE_ULIMIT
ccc6cda3 778
28ef6c31
JA
779/* Define if you have the uname function. */
780#undef HAVE_UNAME
ccc6cda3 781
7117c2d2
JA
782/* Define if you have the unsetenv function. */
783#undef HAVE_UNSETENV
784
f73dda09
JA
785/* Define if you have the vasprintf function. */
786#undef HAVE_VASPRINTF
787
28ef6c31
JA
788/* Define if you have the vprintf function. */
789#undef HAVE_VPRINTF
ccc6cda3 790
f73dda09
JA
791/* Define if you have the vsnprintf function. */
792#undef HAVE_VSNPRINTF
793
28ef6c31
JA
794/* Define if you have the waitpid function. */
795#undef HAVE_WAITPID
ccc6cda3 796
28ef6c31
JA
797/* Define if you have the wait3 function. */
798#undef HAVE_WAIT3
ccc6cda3 799
0628567a
JA
800/* Define if you have the wcrtomb function. */
801#undef HAVE_WCRTOMB
802
803/* Define if you have the wcscoll function. */
804#undef HAVE_WCSCOLL
805
b80f6443
JA
806/* Define if you have the wcsdup function. */
807#undef HAVE_WCSDUP
808
0628567a
JA
809/* Define if you have the wctype function. */
810#undef HAVE_WCTYPE
b80f6443 811
7117c2d2
JA
812/* Define if you have the wcwidth function. */
813#undef HAVE_WCWIDTH
814
28ef6c31
JA
815/* Presence of certain system include files. */
816
817/* Define if you have the <arpa/inet.h> header file. */
818#undef HAVE_ARPA_INET_H
ccc6cda3
JA
819
820/* Define if you have the <dirent.h> header file. */
821#undef HAVE_DIRENT_H
822
d166f048
JA
823/* Define if you have the <dlfcn.h> header file. */
824#undef HAVE_DLFCN_H
825
f73dda09
JA
826/* Define if you have the <grp.h> header file. */
827#undef HAVE_GRP_H
828
829/* Define if you have the <inttypes.h> header file. */
830#undef HAVE_INTTYPES_H
831
7117c2d2
JA
832/* Define if you have the <langinfo.h> header file. */
833#undef HAVE_LANGINFO_H
834
28ef6c31
JA
835/* Define if you have the <libintl.h> header file. */
836#undef HAVE_LIBINTL_H
837
ccc6cda3
JA
838/* Define if you have the <limits.h> header file. */
839#undef HAVE_LIMITS_H
840
841/* Define if you have the <locale.h> header file. */
842#undef HAVE_LOCALE_H
843
844/* Define if you have the <ndir.h> header file. */
845#undef HAVE_NDIR_H
846
28ef6c31
JA
847/* Define if you have the <netdh.h> header file. */
848#undef HAVE_NETDB_H
849
850/* Define if you have the <netinet/in.h> header file. */
851#undef HAVE_NETINET_IN_H
852
95732b49
JA
853/* Define if you have the <pwd.h> header file. */
854#undef HAVE_PWD_H
855
b80f6443
JA
856/* Define if you have the <regex.h> header file. */
857#undef HAVE_REGEX_H
858
ccc6cda3
JA
859/* Define if you have the <stdlib.h> header file. */
860#undef HAVE_STDLIB_H
861
862/* Define if you have the <stdarg.h> header file. */
863#undef HAVE_STDARG_H
864
865/* Define if you have the <string.h> header file. */
866#undef HAVE_STRING_H
867
f73dda09
JA
868/* Define if you have the <strings.h> header file. */
869#undef HAVE_STRINGS_H
870
ccc6cda3
JA
871/* Define if you have the <memory.h> header file. */
872#undef HAVE_MEMORY_H
873
28ef6c31
JA
874/* Define if you have the <stddef.h> header file. */
875#undef HAVE_STDDEF_H
876
f73dda09
JA
877/* Define if you have the <stdint.h> header file. */
878#undef HAVE_STDINT_H
879
ccc6cda3
JA
880/* Define if you have the <sys/dir.h> header file. */
881#undef HAVE_SYS_DIR_H
882
883/* Define if you have the <sys/file.h> header file. */
884#undef HAVE_SYS_FILE_H
885
886/* Define if you have the <sys/ndir.h> header file. */
887#undef HAVE_SYS_NDIR_H
888
889/* Define if you have the <sys/param.h> header file. */
890#undef HAVE_SYS_PARAM_H
891
892/* Define if you have the <sys/pte.h> header file. */
893#undef HAVE_SYS_PTE_H
894
895/* Define if you have the <sys/ptem.h> header file. */
896#undef HAVE_SYS_PTEM_H
897
898/* Define if you have the <sys/resource.h> header file. */
899#undef HAVE_SYS_RESOURCE_H
900
901/* Define if you have the <sys/select.h> header file. */
902#undef HAVE_SYS_SELECT_H
903
904/* Define if you have the <sys/socket.h> header file. */
905#undef HAVE_SYS_SOCKET_H
906
b80f6443
JA
907/* Define if you have the <sys/stat.h> header file. */
908#undef HAVE_SYS_STAT_H
909
ccc6cda3
JA
910/* Define if you have the <sys/stream.h> header file. */
911#undef HAVE_SYS_STREAM_H
912
28ef6c31
JA
913/* Define if you have <sys/time.h> */
914#undef HAVE_SYS_TIME_H
915
916#undef TIME_WITH_SYS_TIME
917
918/* Define if you have <sys/times.h> */
919#undef HAVE_SYS_TIMES_H
920
b80f6443
JA
921/* Define if you have the <sys/types.h> header file. */
922#undef HAVE_SYS_TYPES_H
923
28ef6c31
JA
924/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
925#undef HAVE_SYS_WAIT_H
926
ccc6cda3
JA
927/* Define if you have the <termcap.h> header file. */
928#undef HAVE_TERMCAP_H
929
930/* Define if you have the <termio.h> header file. */
931#undef HAVE_TERMIO_H
932
933/* Define if you have the <termios.h> header file. */
934#undef HAVE_TERMIOS_H
935
936/* Define if you have the <unistd.h> header file. */
937#undef HAVE_UNISTD_H
938
939/* Define if you have the <varargs.h> header file. */
940#undef HAVE_VARARGS_H
941
7117c2d2
JA
942/* Define if you have the <wchar.h> header file. */
943#undef HAVE_WCHAR_H
944
945/* Define if you have the <varargs.h> header file. */
946#undef HAVE_WCTYPE_H
947
28ef6c31 948/* Presence of certain system libraries. */
bb70624e 949
ccc6cda3
JA
950#undef HAVE_LIBDL
951
952#undef HAVE_LIBSUN
953
954#undef HAVE_LIBSOCKET
955
28ef6c31
JA
956
957/* Define if on MINIX. */
958#undef _MINIX
959
b72432fd
JA
960/* Are we running SVR5 (UnixWare 7)? */
961#undef SVR5
962
ccc6cda3
JA
963/* Are we running SVR4.2? */
964#undef SVR4_2
965
966/* Are we running some version of SVR4? */
967#undef SVR4
968
28ef6c31
JA
969/* Define if job control is unusable or unsupported. */
970#undef JOB_CONTROL_MISSING
971
ccc6cda3
JA
972/* Do we need to define _KERNEL to get the RLIMIT_* defines from
973 <sys/resource.h>? */
974#undef RLIMIT_NEEDS_KERNEL
975
f73dda09
JA
976/* Number of bits in a file offset, on hosts where this is settable. */
977#undef _FILE_OFFSET_BITS
978
979/* Define for large files on AIX-style hosts. */
980#undef _LARGE_FILES
981
d166f048
JA
982/* Do strcoll(3) and strcmp(3) give different results in the default locale? */
983#undef STRCOLL_BROKEN
984
28ef6c31
JA
985#undef DUP2_BROKEN
986
987#undef GETCWD_BROKEN
988
b80f6443
JA
989/* Additional defines for configuring lib/intl, maintained by autoscan/autoheader */
990
991/* Define if you have the <argz.h> header file. */
992#undef HAVE_ARGZ_H
993
994/* Define if you have the <errno.h> header file. */
995#undef HAVE_ERRNO_H
996
997/* Define if you have the <fcntl.h> header file. */
998#undef HAVE_FCNTL_H
999
1000/* Define if you have the <malloc.h> header file. */
1001#undef HAVE_MALLOC_H
1002
1003/* Define if you have the <stdio_ext.h> header file. */
1004#undef HAVE_STDIO_EXT_H
1005
1006/* Define if you have the `dcgettext' function. */
1007#undef HAVE_DCGETTEXT
1008
1009/* Define if your system has a working `malloc' function. */
1010/* #undef HAVE_MALLOC */
1011
1012/* Define if you have the `mempcpy' function. */
1013#undef HAVE_MEMPCPY
1014
1015/* Define if you have a working `mmap' system call. */
1016#undef HAVE_MMAP
1017
1018/* Define if you have the `munmap' function. */
1019#undef HAVE_MUNMAP
1020
1021/* Define if you have the `nl_langinfo' function. */
1022#undef HAVE_NL_LANGINFO
1023
1024/* Define if you have the `stpcpy' function. */
1025#undef HAVE_STPCPY
1026
1027/* Define if you have the `strcspn' function. */
1028#undef HAVE_STRCSPN
1029
1030/* Define if you have the `strdup' function. */
1031#undef HAVE_STRDUP
1032
1033/* Define if you have the `__argz_count' function. */
1034#undef HAVE___ARGZ_COUNT
1035
1036/* Define if you have the `__argz_next' function. */
1037#undef HAVE___ARGZ_NEXT
1038
1039/* Define if you have the `__argz_stringify' function. */
1040#undef HAVE___ARGZ_STRINGIFY
1041
1042/* End additions for lib/intl */
1043
b72432fd 1044#include "config-bot.h"
ccc6cda3
JA
1045
1046#endif /* _CONFIG_H_ */