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