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