]> git.ipfire.org Git - thirdparty/bash.git/blob - config.h.in
bash-5.2 distribution sources and documentation
[thirdparty/bash.git] / config.h.in
1 /* config.h -- Configuration file for bash. */
2
3 /* Copyright (C) 1987-2009,2011-2012,2013-2019 Free Software Foundation, Inc.
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
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.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef _CONFIG_H_
22 #define _CONFIG_H_
23
24 /* Template settings for autoconf */
25
26 /* Configuration feature settings controllable by autoconf. */
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
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.
73 This requires that V9_ECHO be defined. */
74 #undef DEFAULT_ECHO_TO_XPG
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
116 /* Define EXTENDED_GLOB if you want the ksh-style [*+@?!](patlist) extended
117 pattern matching. */
118 #undef EXTENDED_GLOB
119
120 /* Define EXTGLOB_DEFAULT to the value you'd like the extglob shell option
121 to have by default */
122 #undef EXTGLOB_DEFAULT
123
124 /* Define COND_COMMAND if you want the ksh-style [[...]] conditional
125 command. */
126 #undef COND_COMMAND
127
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
132 /* Define COPROCESS_SUPPORT if you want support for ksh-like coprocesses and
133 the `coproc' reserved word */
134 #define COPROCESS_SUPPORT
135
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
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
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
161 /* Define MEMSCRAMBLE if you want the bash malloc and free to scramble
162 memory contents on malloc() and free(). */
163 #undef MEMSCRAMBLE
164
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
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
178 /* Define to allow functions to be imported from the environment. */
179 #undef FUNCTION_IMPORT
180
181 /* Define AFS if you are using Transarc's AFS. */
182 #undef AFS
183
184 #undef ENABLE_NLS
185
186 /* End of configuration settings controllable by autoconf. */
187 /* Other settable options appear in config-top.h. */
188
189 #include "config-top.h"
190
191 /* Beginning of autoconf additions. */
192
193 /* Characteristics of the C compiler */
194 #undef const
195
196 #undef inline
197
198 #undef restrict
199
200 #undef volatile
201
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
209 #undef __PROTOTYPES
210
211 #undef __CHAR_UNSIGNED__
212
213 /* Define if the compiler supports `long long int' variables. */
214 #undef HAVE_LONG_LONG_INT
215
216 #undef HAVE_UNSIGNED_LONG_LONG_INT
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
227 /* The number of bytes in a size_t. */
228 #undef SIZEOF_SIZE_T
229
230 /* The number of bytes in a double (hopefully 8). */
231 #undef SIZEOF_DOUBLE
232
233 /* The number of bytes in an `intmax_t'. */
234 #undef SIZEOF_INTMAX_T
235
236 /* The number of bytes in a `long long', if we have one. */
237 #undef SIZEOF_LONG_LONG
238
239 /* The number of bytes in a `wchar_t', if supported */
240 #undef SIZEOF_WCHAR_T
241
242 /* System paths */
243
244 #define DEFAULT_MAIL_DIRECTORY "/usr/spool/mail"
245
246 /* Characteristics of the system's header files and libraries that affect
247 the compilation environment. */
248
249 /* These are set by AC_USE_SYSTEM_EXTENSIONS */
250
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
258 /* Define to use GNU libc extensions. */
259 #undef _GNU_SOURCE
260
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
270
271 /* Memory management functions. */
272
273 /* Define if using the bash version of malloc in lib/malloc/malloc.c */
274 #undef USING_BASH_MALLOC
275
276 #undef DISABLE_MALLOC_WRAPPERS
277
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
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
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
296
297 /* SYSTEM TYPES */
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
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
317 /* Define to `int' if <sys/types.h> doesn't define. */
318 #undef bits32_t
319
320 /* Define to `unsigned int' if <sys/types.h> doesn't define. */
321 #undef u_bits32_t
322
323 /* Define to `double' if <sys/types.h> doesn't define. */
324 #undef bits64_t
325
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
331
332 /* Define to `int' if <sys/types.h> doesn't define. */
333 #undef ptrdiff_t
334
335 /* Define to `unsigned' if <sys/types.h> doesn't define. */
336 #undef size_t
337
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
346
347 /* Define to integer type wide enough to hold a pointer if <stdint.h> doesn't define. */
348 #undef uintptr_t
349
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
359 /* Define to `int' if <sys/types.h> doesn't define. */
360 #undef gid_t
361
362 /* Define to `unsigned int' if <sys/socket.h> doesn't define. */
363 #undef socklen_t
364
365 /* Define to `int' if <signal.h> doesn't define. */
366 #undef sig_atomic_t
367
368 #undef HAVE_MBSTATE_T
369
370 /* Define if you have quad_t in <sys/types.h>. */
371 #undef HAVE_QUAD_T
372
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
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
388 /* Characteristics of the machine archictecture. */
389
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
399 /* Define if the machine architecture is big-endian. */
400 #undef WORDS_BIGENDIAN
401
402 /* Check for the presence of certain non-function symbols in the system
403 libraries. */
404
405 /* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
406 #undef HAVE_DECL_SYS_SIGLIST
407 #undef SYS_SIGLIST_DECLARED
408
409 /* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>. */
410 #undef UNDER_SYS_SIGLIST_DECLARED
411
412 #undef HAVE_SYS_SIGLIST
413
414 #undef HAVE_UNDER_SYS_SIGLIST
415
416 #undef HAVE_SYS_ERRLIST
417
418 #undef HAVE_TZNAME
419 #undef HAVE_DECL_TZNAME
420
421 /* Characteristics of some of the system structures. */
422
423 #undef HAVE_STRUCT_DIRENT_D_INO
424
425 #undef HAVE_STRUCT_DIRENT_D_FILENO
426
427 #undef HAVE_STRUCT_DIRENT_D_NAMLEN
428
429 #undef TIOCSTAT_IN_SYS_IOCTL
430
431 #undef FIONREAD_IN_SYS_IOCTL
432
433 #undef GWINSZ_IN_SYS_IOCTL
434
435 #undef STRUCT_WINSIZE_IN_SYS_IOCTL
436
437 #undef TM_IN_SYS_TIME
438
439 #undef STRUCT_WINSIZE_IN_TERMIOS
440
441 #undef SPEED_T_IN_SYS_TYPES
442
443 #undef TERMIOS_LDISC
444
445 #undef TERMIO_LDISC
446
447 #undef HAVE_STRUCT_STAT_ST_BLOCKS
448
449 #undef HAVE_STRUCT_TM_TM_ZONE
450 #undef HAVE_TM_ZONE
451
452 #undef HAVE_TIMEVAL
453
454 #undef HAVE_STRUCT_TIMEZONE
455
456 #undef WEXITSTATUS_OFFSET
457
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
463 #undef HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC
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
469 /* Characteristics of definitions in the system header files. */
470
471 #undef HAVE_GETPW_DECLS
472
473 #undef HAVE_RESOURCE
474
475 #undef HAVE_LIBC_FNM_EXTMATCH
476
477 /* Define if you have <linux/audit.h> and it defines AUDIT_USER_TTY */
478 #undef HAVE_DECL_AUDIT_USER_TTY
479
480 #undef HAVE_DECL_CONFSTR
481
482 #undef HAVE_DECL_PRINTF
483
484 #undef HAVE_DECL_SBRK
485
486 #undef HAVE_DECL_STRCPY
487
488 #undef HAVE_DECL_STRSIGNAL
489
490 #undef HAVE_DECL_STRTOLD
491
492 #undef PRI_MACROS_BROKEN
493
494 #undef STRTOLD_BROKEN
495
496 /* Define if WCONTINUED is defined in system headers, but rejected by waitpid */
497 #undef WCONTINUED_BROKEN
498
499 /* These are checked with BASH_CHECK_DECL */
500
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
507
508 /* Characteristics of system calls and C library functions. */
509
510 /* Define if the `getpgrp' function takes no argument. */
511 #undef GETPGRP_VOID
512
513 #undef NAMED_PIPES_MISSING
514
515 #undef OPENDIR_NOT_ROBUST
516
517 #undef PGRP_PIPE
518
519 #undef STAT_MACROS_BROKEN
520
521 #undef ULIMIT_MAXFDS
522
523 #undef CAN_REDEFINE_GETENV
524
525 #undef HAVE_STD_PUTENV
526
527 #undef HAVE_STD_UNSETENV
528
529 #undef HAVE_PRINTF_A_FORMAT
530
531 /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
532 #undef HAVE_LANGINFO_CODESET
533
534 /* Characteristics of properties exported by the kernel. */
535
536 /* Define if the kernel can exec files beginning with #! */
537 #undef HAVE_HASH_BANG_EXEC
538
539 /* Define if you have the /dev/fd devices to map open files into the file system. */
540 #undef HAVE_DEV_FD
541
542 /* Defined to /dev/fd or /proc/self/fd (linux). */
543 #undef DEV_FD_PREFIX
544
545 /* Define if you have the /dev/stdin device. */
546 #undef HAVE_DEV_STDIN
547
548 /* The type of iconv's `inbuf' argument */
549 #undef ICONV_CONST
550
551 /* Type and behavior of signal handling functions. */
552
553 #undef MUST_REINSTALL_SIGHANDLERS
554
555 #undef HAVE_BSD_SIGNALS
556
557 #undef HAVE_POSIX_SIGNALS
558
559 #undef HAVE_USG_SIGHOLD
560
561 #undef UNUSABLE_RT_SIGNALS
562
563 /* Presence of system and C library functions. */
564
565 /* Define if you have the arc4random function. */
566 #undef HAVE_ARC4RANDOM
567
568 /* Define if you have the asprintf function. */
569 #undef HAVE_ASPRINTF
570
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
577 /* Define if you have the chown function. */
578 #undef HAVE_CHOWN
579
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
592 /* Define if you don't have vprintf but do have _doprnt. */
593 #undef HAVE_DOPRNT
594
595 /* Define if you have the dprintf function. */
596 #undef HAVE_DPRINTF
597
598 /* Define if you have the dup2 function. */
599 #undef HAVE_DUP2
600
601 /* Define if you have the eaccess function. */
602 #undef HAVE_EACCESS
603
604 /* Define if you have the faccessat function. */
605 #undef HAVE_FACCESSAT
606
607 /* Define if you have the fcntl function. */
608 #undef HAVE_FCNTL
609
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
616 /* Define if you have the fpurge/__fpurge function. */
617 #undef HAVE_FPURGE
618 #undef HAVE___FPURGE
619 #undef HAVE_DECL_FPURGE
620
621 /* Define if you have the getaddrinfo function. */
622 #undef HAVE_GETADDRINFO
623
624 /* Define if you have the getcwd function. */
625 #undef HAVE_GETCWD
626
627 /* Define if you have the getentropy function. */
628 #undef HAVE_GETENTROPY
629
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
636 /* Define if you have the gethostbyname function. */
637 #undef HAVE_GETHOSTBYNAME
638
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
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
657 /* Define if you have the getrandom function. */
658 #undef HAVE_GETRANDOM
659
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
669 /* Define if you have the getservent function. */
670 #undef HAVE_GETSERVENT
671
672 /* Define if you have the gettimeofday function. */
673 #undef HAVE_GETTIMEOFDAY
674
675 /* Define if you have the getwd function. */
676 #undef HAVE_GETWD
677
678 /* Define if you have the iconv function. */
679 #undef HAVE_ICONV
680
681 /* Define if you have the imaxdiv function. */
682 #undef HAVE_IMAXDIV
683
684 /* Define if you have the inet_aton function. */
685 #undef HAVE_INET_ATON
686
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
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
711 /* Define if you have the isxdigit function. */
712 #undef HAVE_ISXDIGIT
713
714 /* Define if you have the kill function. */
715 #undef HAVE_KILL
716
717 /* Define if you have the killpg function. */
718 #undef HAVE_KILLPG
719
720 /* Define if you have the lstat function. */
721 #undef HAVE_LSTAT
722
723 /* Define if you have the locale_charset function. */
724 #undef HAVE_LOCALE_CHARSET
725
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
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
738 /* Define if you have the mbscmp function. */
739 #undef HAVE_MBSCMP
740
741 /* Define if you have the mbsnrtowcs function. */
742 #undef HAVE_MBSNRTOWCS
743
744 /* Define if you have the mbsrtowcs function. */
745 #undef HAVE_MBSRTOWCS
746
747 /* Define if you have the memmove function. */
748 #undef HAVE_MEMMOVE
749
750 /* Define if you have the memset function. */
751 #undef HAVE_MEMSET
752
753 /* Define if you have the mkdtemp function. */
754 #undef HAVE_MKDTEMP
755
756 /* Define if you have the mkfifo function. */
757 #undef HAVE_MKFIFO
758
759 /* Define if you have the mkstemp function. */
760 #undef HAVE_MKSTEMP
761
762 /* Define if you have the pathconf function. */
763 #undef HAVE_PATHCONF
764
765 /* Define if you have the pselect function. */
766 #undef HAVE_PSELECT
767
768 /* Define if you have the putenv function. */
769 #undef HAVE_PUTENV
770
771 /* Define if you have the raise function. */
772 #undef HAVE_RAISE
773
774 /* Define if you have the random function. */
775 #undef HAVE_RANDOM
776
777 /* Define if you have the readlink function. */
778 #undef HAVE_READLINK
779
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
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
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
801 /* Define if you have the setitimer function. */
802 #undef HAVE_SETITIMER
803
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
810 /* Define if you have the setostype function. */
811 #undef HAVE_SETOSTYPE
812
813 /* Define if you have the setregid function. */
814 #undef HAVE_SETREGID
815 #undef HAVE_DECL_SETREGID
816
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
825 /* Define if you have the setvbuf function. */
826 #undef HAVE_SETVBUF
827
828 /* Define if you have the siginterrupt function. */
829 #undef HAVE_SIGINTERRUPT
830
831 /* Define if you have the POSIX.1-style sigsetjmp function. */
832 #undef HAVE_POSIX_SIGSETJMP
833
834 /* Define if you have the snprintf function. */
835 #undef HAVE_SNPRINTF
836
837 /* Define if you have the strcasecmp function. */
838 #undef HAVE_STRCASECMP
839
840 /* Define if you have the strcasestr function. */
841 #undef HAVE_STRCASESTR
842
843 /* Define if you have the strchr function. */
844 #undef HAVE_STRCHR
845
846 /* Define if you have the strchrnul function. */
847 #undef HAVE_STRCHRNUL
848
849 /* Define if you have the strcoll function. */
850 #undef HAVE_STRCOLL
851
852 /* Define if you have the strerror function. */
853 #undef HAVE_STRERROR
854
855 /* Define if you have the strftime function. */
856 #undef HAVE_STRFTIME
857
858 /* Define if you have the strnlen function. */
859 #undef HAVE_STRNLEN
860
861 /* Define if you have the strpbrk function. */
862 #undef HAVE_STRPBRK
863
864 /* Define if you have the strstr function. */
865 #undef HAVE_STRSTR
866
867 /* Define if you have the strtod function. */
868 #undef HAVE_STRTOD
869
870 /* Define if you have the strtoimax function. */
871 #undef HAVE_STRTOIMAX
872
873 /* Define if you have the strtol function. */
874 #undef HAVE_STRTOL
875
876 /* Define if you have the strtoll function. */
877 #undef HAVE_STRTOLL
878
879 /* Define if you have the strtoul function. */
880 #undef HAVE_STRTOUL
881
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
888 /* Define if you have the strsignal function or macro. */
889 #undef HAVE_STRSIGNAL
890
891 /* Define if you have the sysconf function. */
892 #undef HAVE_SYSCONF
893
894 /* Define if you have the syslog function. */
895 #undef HAVE_SYSLOG
896
897 /* Define if you have the tcgetattr function. */
898 #undef HAVE_TCGETATTR
899
900 /* Define if you have the tcgetpgrp function. */
901 #undef HAVE_TCGETPGRP
902
903 /* Define if you have the times function. */
904 #undef HAVE_TIMES
905
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
912 /* Define if you have the ttyname function. */
913 #undef HAVE_TTYNAME
914
915 /* Define if you have the tzset function. */
916 #undef HAVE_TZSET
917
918 /* Define if you have the ulimit function. */
919 #undef HAVE_ULIMIT
920
921 /* Define if you have the uname function. */
922 #undef HAVE_UNAME
923
924 /* Define if you have the unsetenv function. */
925 #undef HAVE_UNSETENV
926
927 /* Define if you have the vasprintf function. */
928 #undef HAVE_VASPRINTF
929
930 /* Define if you have the vprintf function. */
931 #undef HAVE_VPRINTF
932
933 /* Define if you have the vsnprintf function. */
934 #undef HAVE_VSNPRINTF
935
936 /* Define if you have the waitpid function. */
937 #undef HAVE_WAITPID
938
939 /* Define if you have the wait3 function. */
940 #undef HAVE_WAIT3
941
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
948 /* Define if you have the wcsdup function. */
949 #undef HAVE_WCSDUP
950
951 /* Define if you have the wctype function. */
952 #undef HAVE_WCTYPE
953
954 /* Define if you have the wcswidth function. */
955 #undef HAVE_WCSWIDTH
956
957 /* Define if you have the wcwidth function. */
958 #undef HAVE_WCWIDTH
959
960 /* and if it works */
961 #undef WCWIDTH_BROKEN
962
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
967
968 /* Define if you have the <dirent.h> header file. */
969 #undef HAVE_DIRENT_H
970
971 /* Define if you have the <dlfcn.h> header file. */
972 #undef HAVE_DLFCN_H
973
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
980 /* Define if you have the <langinfo.h> header file. */
981 #undef HAVE_LANGINFO_H
982
983 /* Define if you have the <libaudit.h> header file. */
984 #undef HAVE_LIBAUDIT_H
985
986 /* Define if you have the <libintl.h> header file. */
987 #undef HAVE_LIBINTL_H
988
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
995 /* Define if you have the <mbstr.h> header file. */
996 #undef HAVE_MBSTR_H
997
998 /* Define if you have the <ndir.h> header file. */
999 #undef HAVE_NDIR_H
1000
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
1007 /* Define if you have the <pwd.h> header file. */
1008 #undef HAVE_PWD_H
1009
1010 /* Define if you have the <regex.h> header file. */
1011 #undef HAVE_REGEX_H
1012
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
1022 /* Define if you have the <strings.h> header file. */
1023 #undef HAVE_STRINGS_H
1024
1025 /* Define if you have the <memory.h> header file. */
1026 #undef HAVE_MEMORY_H
1027
1028 /* Define if you have the <stdbool.h> header file. */
1029 #undef HAVE_STDBOOL_H
1030
1031 /* Define if you have the <stddef.h> header file. */
1032 #undef HAVE_STDDEF_H
1033
1034 /* Define if you have the <stdint.h> header file. */
1035 #undef HAVE_STDINT_H
1036
1037 /* Define if you have the <syslog.h> header file. */
1038 #undef HAVE_SYSLOG_H
1039
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
1046 /* Define if you have the <sys/ioctl.h> header file. */
1047 #undef HAVE_SYS_IOCTL_H
1048
1049 /* Define if you have the <sys/mman.h> header file. */
1050 #undef HAVE_SYS_MMAN_H
1051
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
1064 /* Define if you have the <sys/random.h> header file. */
1065 #undef HAVE_SYS_RANDOM_H
1066
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
1076 /* Define if you have the <sys/stat.h> header file. */
1077 #undef HAVE_SYS_STAT_H
1078
1079 /* Define if you have the <sys/stream.h> header file. */
1080 #undef HAVE_SYS_STREAM_H
1081
1082 /* Define if you have <sys/time.h> */
1083 #undef HAVE_SYS_TIME_H
1084
1085 /* Define if you have <sys/times.h> */
1086 #undef HAVE_SYS_TIMES_H
1087
1088 /* Define if you have the <sys/types.h> header file. */
1089 #undef HAVE_SYS_TYPES_H
1090
1091 /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
1092 #undef HAVE_SYS_WAIT_H
1093
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
1103 /* Define if you have the <ulimit.h> header file. */
1104 #undef HAVE_ULIMIT_H
1105
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
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
1118 /* Presence of certain system libraries. */
1119
1120 #undef HAVE_LIBDL
1121
1122 #undef HAVE_LIBSUN
1123
1124 #undef HAVE_LIBSOCKET
1125
1126 /* Are we running the GNU C library, version 2.1 or later? */
1127 #undef GLIBC21
1128
1129 /* Are we running SVR5 (UnixWare 7)? */
1130 #undef SVR5
1131
1132 /* Are we running SVR4.2? */
1133 #undef SVR4_2
1134
1135 /* Are we running some version of SVR4? */
1136 #undef SVR4
1137
1138 /* Define if job control is unusable or unsupported. */
1139 #undef JOB_CONTROL_MISSING
1140
1141 /* Do we need to define _KERNEL to get the RLIMIT_* defines from
1142 <sys/resource.h>? */
1143 #undef RLIMIT_NEEDS_KERNEL
1144
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
1151 /* Do strcoll(3) and strcmp(3) give different results in the default locale? */
1152 #undef STRCOLL_BROKEN
1153
1154 #undef DUP2_BROKEN
1155
1156 #undef GETCWD_BROKEN
1157
1158 #undef DEV_FD_STAT_BROKEN
1159
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
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
1187 /* Define if you have the `localeconv' function. */
1188 #undef HAVE_LOCALECONV
1189
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
1199 /* Define if you have the `mremap' function. */
1200 #undef HAVE_MREMAP
1201
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
1228 #include "config-bot.h"
1229
1230 #endif /* _CONFIG_H_ */