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