]> git.ipfire.org Git - thirdparty/bash.git/blob - config.h.in
Bash-4.4 patch 11
[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 /* System paths */
246
247 #define DEFAULT_MAIL_DIRECTORY "/usr/spool/mail"
248
249 /* Characteristics of the system's header files and libraries that affect
250 the compilation environment. */
251
252 /* Define if the system does not provide POSIX.1 features except
253 with this defined. */
254 #undef _POSIX_1_SOURCE
255
256 /* Define if you need to in order for stat and other things to work. */
257 #undef _POSIX_SOURCE
258
259 /* Define to use GNU libc extensions */
260 #undef _GNU_SOURCE
261
262 /* Define if you have the ANSI C header files. */
263 #undef STDC_HEADERS
264
265 /* Memory management functions. */
266
267 /* Define if using the bash version of malloc in lib/malloc/malloc.c */
268 #undef USING_BASH_MALLOC
269
270 #undef DISABLE_MALLOC_WRAPPERS
271
272 /* Define if using alloca.c. */
273 #undef C_ALLOCA
274
275 /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
276 This function is required for alloca.c support on those systems. */
277 #undef CRAY_STACKSEG_END
278
279 /* Define if you have alloca, as a function or macro. */
280 #undef HAVE_ALLOCA
281
282 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
283 #undef HAVE_ALLOCA_H
284
285
286 /* SYSTEM TYPES */
287
288 /* Define to `long' if <sys/types.h> doesn't define. */
289 #undef off_t
290
291 /* Define to `int' if <sys/types.h> doesn't define. */
292 #undef mode_t
293
294 /* Define to `int' if <signal.h> doesn't define. */
295 #undef sigset_t
296
297 /* Define to `int' if <sys/types.h> doesn't define. */
298 #undef pid_t
299
300 /* Define to `short' if <sys/types.h> doesn't define. */
301 #undef bits16_t
302
303 /* Define to `unsigned short' if <sys/types.h> doesn't define. */
304 #undef u_bits16_t
305
306 /* Define to `int' if <sys/types.h> doesn't define. */
307 #undef bits32_t
308
309 /* Define to `unsigned int' if <sys/types.h> doesn't define. */
310 #undef u_bits32_t
311
312 /* Define to `double' if <sys/types.h> doesn't define. */
313 #undef bits64_t
314
315 /* Define to `unsigned int' if <sys/types.h> doesn't define. */
316 #undef u_int
317
318 /* Define to `unsigned long' if <sys/types.h> doesn't define. */
319 #undef u_long
320
321 /* Define to `int' if <sys/types.h> doesn't define. */
322 #undef ptrdiff_t
323
324 /* Define to `unsigned' if <sys/types.h> doesn't define. */
325 #undef size_t
326
327 /* Define to `int' if <sys/types.h> doesn't define. */
328 #undef ssize_t
329
330 /* Define to `long' if <stdint.h> doesn't define. */
331 #undef intmax_t
332
333 /* Define to `unsigned long' if <stdint.h> doesn't define. */
334 #undef uintmax_t
335
336 /* Define to integer type wide enough to hold a pointer if <stdint.h> doesn't define. */
337 #undef uintptr_t
338
339 /* Define to `int' if <sys/types.h> doesn't define. */
340 #undef uid_t
341
342 /* Define to `long' if <sys/types.h> doesn't define. */
343 #undef clock_t
344
345 /* Define to `long' if <sys/types.h> doesn't define. */
346 #undef time_t
347
348 /* Define to `int' if <sys/types.h> doesn't define. */
349 #undef gid_t
350
351 /* Define to `unsigned int' if <sys/socket.h> doesn't define. */
352 #undef socklen_t
353
354 /* Define to `int' if <signal.h> doesn't define. */
355 #undef sig_atomic_t
356
357 #undef HAVE_MBSTATE_T
358
359 /* Define if you have quad_t in <sys/types.h>. */
360 #undef HAVE_QUAD_T
361
362 /* Define if you have wchar_t in <wctype.h>. */
363 #undef HAVE_WCHAR_T
364
365 /* Define if you have wctype_t in <wctype.h>. */
366 #undef HAVE_WCTYPE_T
367
368 /* Define if you have wint_t in <wctype.h>. */
369 #undef HAVE_WINT_T
370
371 #undef RLIMTYPE
372
373 /* Define to the type of elements in the array set by `getgroups'.
374 Usually this is either `int' or `gid_t'. */
375 #undef GETGROUPS_T
376
377 /* Characteristics of the machine archictecture. */
378
379 /* If using the C implementation of alloca, define if you know the
380 direction of stack growth for your system; otherwise it will be
381 automatically deduced at run-time.
382 STACK_DIRECTION > 0 => grows toward higher addresses
383 STACK_DIRECTION < 0 => grows toward lower addresses
384 STACK_DIRECTION = 0 => direction of growth unknown
385 */
386 #undef STACK_DIRECTION
387
388 /* Define if the machine architecture is big-endian. */
389 #undef WORDS_BIGENDIAN
390
391 /* Check for the presence of certain non-function symbols in the system
392 libraries. */
393
394 /* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
395 #undef HAVE_DECL_SYS_SIGLIST
396 #undef SYS_SIGLIST_DECLARED
397
398 /* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>. */
399 #undef UNDER_SYS_SIGLIST_DECLARED
400
401 #undef HAVE_SYS_SIGLIST
402
403 #undef HAVE_UNDER_SYS_SIGLIST
404
405 #undef HAVE_SYS_ERRLIST
406
407 #undef HAVE_TZNAME
408 #undef HAVE_DECL_TZNAME
409
410 /* Characteristics of some of the system structures. */
411
412 #undef HAVE_STRUCT_DIRENT_D_INO
413
414 #undef HAVE_STRUCT_DIRENT_D_FILENO
415
416 #undef HAVE_STRUCT_DIRENT_D_NAMLEN
417
418 #undef TIOCSTAT_IN_SYS_IOCTL
419
420 #undef FIONREAD_IN_SYS_IOCTL
421
422 #undef GWINSZ_IN_SYS_IOCTL
423
424 #undef STRUCT_WINSIZE_IN_SYS_IOCTL
425
426 #undef TM_IN_SYS_TIME
427
428 #undef STRUCT_WINSIZE_IN_TERMIOS
429
430 #undef SPEED_T_IN_SYS_TYPES
431
432 #undef TERMIOS_LDISC
433
434 #undef TERMIO_LDISC
435
436 #undef HAVE_STRUCT_STAT_ST_BLOCKS
437
438 #undef HAVE_STRUCT_TM_TM_ZONE
439 #undef HAVE_TM_ZONE
440
441 #undef HAVE_TIMEVAL
442
443 #undef HAVE_STRUCT_TIMEZONE
444
445 #undef WEXITSTATUS_OFFSET
446
447 #undef HAVE_STRUCT_TIMESPEC
448 #undef TIME_H_DEFINES_STRUCT_TIMESPEC
449 #undef SYS_TIME_H_DEFINES_STRUCT_TIMESPEC
450 #undef PTHREAD_H_DEFINES_STRUCT_TIMESPEC
451
452 #undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
453 #undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC
454 #undef HAVE_STRUCT_STAT_ST_ATIMENSEC
455 #undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC
456
457 /* Characteristics of definitions in the system header files. */
458
459 #undef HAVE_GETPW_DECLS
460
461 #undef HAVE_RESOURCE
462
463 #undef HAVE_LIBC_FNM_EXTMATCH
464
465 /* Define if you have <linux/audit.h> and it defines AUDIT_USER_TTY */
466 #undef HAVE_DECL_AUDIT_USER_TTY
467
468 #undef HAVE_DECL_CONFSTR
469
470 #undef HAVE_DECL_PRINTF
471
472 #undef HAVE_DECL_SBRK
473
474 #undef HAVE_DECL_STRCPY
475
476 #undef HAVE_DECL_STRSIGNAL
477
478 #undef HAVE_DECL_STRTOLD
479
480 #undef PRI_MACROS_BROKEN
481
482 #undef STRTOLD_BROKEN
483
484 /* Define if WCONTINUED is defined in system headers, but rejected by waitpid */
485 #undef WCONTINUED_BROKEN
486
487 /* These are checked with BASH_CHECK_DECL */
488
489 #undef HAVE_DECL_STRTOIMAX
490 #undef HAVE_DECL_STRTOL
491 #undef HAVE_DECL_STRTOLL
492 #undef HAVE_DECL_STRTOUL
493 #undef HAVE_DECL_STRTOULL
494 #undef HAVE_DECL_STRTOUMAX
495
496 /* Characteristics of system calls and C library functions. */
497
498 /* Define if the `getpgrp' function takes no argument. */
499 #undef GETPGRP_VOID
500
501 #undef NAMED_PIPES_MISSING
502
503 #undef OPENDIR_NOT_ROBUST
504
505 #undef PGRP_PIPE
506
507 /* Define if the setvbuf function takes the buffering type as its second
508 argument and the buffer pointer as the third, as on System V
509 before release 3. */
510 #undef SETVBUF_REVERSED
511
512 #undef STAT_MACROS_BROKEN
513
514 #undef ULIMIT_MAXFDS
515
516 #undef CAN_REDEFINE_GETENV
517
518 #undef HAVE_STD_PUTENV
519
520 #undef HAVE_STD_UNSETENV
521
522 #undef HAVE_PRINTF_A_FORMAT
523
524 #undef CTYPE_NON_ASCII
525
526 /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
527 #undef HAVE_LANGINFO_CODESET
528
529 /* Characteristics of properties exported by the kernel. */
530
531 /* Define if the kernel can exec files beginning with #! */
532 #undef HAVE_HASH_BANG_EXEC
533
534 /* Define if you have the /dev/fd devices to map open files into the file system. */
535 #undef HAVE_DEV_FD
536
537 /* Defined to /dev/fd or /proc/self/fd (linux). */
538 #undef DEV_FD_PREFIX
539
540 /* Define if you have the /dev/stdin device. */
541 #undef HAVE_DEV_STDIN
542
543 /* The type of iconv's `inbuf' argument */
544 #undef ICONV_CONST
545
546 /* Type and behavior of signal handling functions. */
547
548 /* Define as the return type of signal handlers (int or void). */
549 #undef RETSIGTYPE
550
551 /* Define if return type of signal handlers is void */
552 #undef VOID_SIGHANDLER
553
554 #undef MUST_REINSTALL_SIGHANDLERS
555
556 #undef HAVE_BSD_SIGNALS
557
558 #undef HAVE_POSIX_SIGNALS
559
560 #undef HAVE_USG_SIGHOLD
561
562 #undef UNUSABLE_RT_SIGNALS
563
564 /* Presence of system and C library functions. */
565
566 /* Define if you have the asprintf function. */
567 #undef HAVE_ASPRINTF
568
569 /* Define if you have the bcopy function. */
570 #undef HAVE_BCOPY
571
572 /* Define if you have the bzero function. */
573 #undef HAVE_BZERO
574
575 /* Define if you have the chown function. */
576 #undef HAVE_CHOWN
577
578 /* Define if you have the confstr function. */
579 #undef HAVE_CONFSTR
580
581 /* Define if you have the dlclose function. */
582 #undef HAVE_DLCLOSE
583
584 /* Define if you have the dlopen function. */
585 #undef HAVE_DLOPEN
586
587 /* Define if you have the dlsym function. */
588 #undef HAVE_DLSYM
589
590 /* Define if you don't have vprintf but do have _doprnt. */
591 #undef HAVE_DOPRNT
592
593 /* Define if you have the dprintf function. */
594 #undef HAVE_DPRINTF
595
596 /* Define if you have the dup2 function. */
597 #undef HAVE_DUP2
598
599 /* Define if you have the eaccess function. */
600 #undef HAVE_EACCESS
601
602 /* Define if you have the faccessat function. */
603 #undef HAVE_FACCESSAT
604
605 /* Define if you have the fcntl function. */
606 #undef HAVE_FCNTL
607
608 /* Define if you have the fpurge/__fpurge function. */
609 #undef HAVE_FPURGE
610 #undef HAVE___FPURGE
611 #undef HAVE_DECL_FPURGE
612
613 /* Define if you have the getaddrinfo function. */
614 #undef HAVE_GETADDRINFO
615
616 /* Define if you have the getcwd function. */
617 #undef HAVE_GETCWD
618
619 /* Define if you have the getdtablesize function. */
620 #undef HAVE_GETDTABLESIZE
621
622 /* Define if you have the getgroups function. */
623 #undef HAVE_GETGROUPS
624
625 /* Define if you have the gethostbyname function. */
626 #undef HAVE_GETHOSTBYNAME
627
628 /* Define if you have the gethostname function. */
629 #undef HAVE_GETHOSTNAME
630
631 /* Define if you have the getpagesize function. */
632 #undef HAVE_GETPAGESIZE
633
634 /* Define if you have the getpeername function. */
635 #undef HAVE_GETPEERNAME
636
637 /* Define if you have the getpwent function. */
638 #undef HAVE_GETPWENT
639
640 /* Define if you have the getpwnam function. */
641 #undef HAVE_GETPWNAM
642
643 /* Define if you have the getpwuid function. */
644 #undef HAVE_GETPWUID
645
646 /* Define if you have the getrlimit function. */
647 #undef HAVE_GETRLIMIT
648
649 /* Define if you have the getrusage function. */
650 #undef HAVE_GETRUSAGE
651
652 /* Define if you have the getservbyname function. */
653 #undef HAVE_GETSERVBYNAME
654
655 /* Define if you have the getservent function. */
656 #undef HAVE_GETSERVENT
657
658 /* Define if you have the gettimeofday function. */
659 #undef HAVE_GETTIMEOFDAY
660
661 /* Define if you have the getwd function. */
662 #undef HAVE_GETWD
663
664 /* Define if you have the iconv function. */
665 #undef HAVE_ICONV
666
667 /* Define if you have the imaxdiv function. */
668 #undef HAVE_IMAXDIV
669
670 /* Define if you have the inet_aton function. */
671 #undef HAVE_INET_ATON
672
673 /* Define if you have the isascii function. */
674 #undef HAVE_ISASCII
675
676 /* Define if you have the isblank function. */
677 #undef HAVE_ISBLANK
678
679 /* Define if you have the isgraph function. */
680 #undef HAVE_ISGRAPH
681
682 /* Define if you have the isprint function. */
683 #undef HAVE_ISPRINT
684
685 /* Define if you have the isspace function. */
686 #undef HAVE_ISSPACE
687
688 /* Define if you have the iswctype function. */
689 #undef HAVE_ISWCTYPE
690
691 /* Define if you have the iswlower function. */
692 #undef HAVE_ISWLOWER
693
694 /* Define if you have the iswupper function. */
695 #undef HAVE_ISWUPPER
696
697 /* Define if you have the isxdigit function. */
698 #undef HAVE_ISXDIGIT
699
700 /* Define if you have the kill function. */
701 #undef HAVE_KILL
702
703 /* Define if you have the killpg function. */
704 #undef HAVE_KILLPG
705
706 /* Define if you have the lstat function. */
707 #undef HAVE_LSTAT
708
709 /* Define if you have the locale_charset function. */
710 #undef HAVE_LOCALE_CHARSET
711
712 /* Define if you have the mbrlen function. */
713 #undef HAVE_MBRLEN
714
715 /* Define if you have the mbrtowc function. */
716 #undef HAVE_MBRTOWC
717
718 /* Define if you have the mbscasecmp function. */
719 #undef HAVE_MBSCASECMP
720
721 /* Define if you have the mbschr function. */
722 #undef HAVE_MBSCHR
723
724 /* Define if you have the mbscmp function. */
725 #undef HAVE_MBSCMP
726
727 /* Define if you have the mbsnrtowcs function. */
728 #undef HAVE_MBSNRTOWCS
729
730 /* Define if you have the mbsrtowcs function. */
731 #undef HAVE_MBSRTOWCS
732
733 /* Define if you have the memmove function. */
734 #undef HAVE_MEMMOVE
735
736 /* Define if you have the memset function. */
737 #undef HAVE_MEMSET
738
739 /* Define if you have the mkfifo function. */
740 #undef HAVE_MKFIFO
741
742 /* Define if you have the mkstemp function. */
743 #undef HAVE_MKSTEMP
744
745 /* Define if you have the pathconf function. */
746 #undef HAVE_PATHCONF
747
748 /* Define if you have the pselect function. */
749 #undef HAVE_PSELECT
750
751 /* Define if you have the putenv function. */
752 #undef HAVE_PUTENV
753
754 /* Define if you have the raise function. */
755 #undef HAVE_RAISE
756
757 /* Define if you have the random function. */
758 #undef HAVE_RANDOM
759
760 /* Define if you have the readlink function. */
761 #undef HAVE_READLINK
762
763 /* Define if you have the regcomp function. */
764 #undef HAVE_REGCOMP
765
766 /* Define if you have the regexec function. */
767 #undef HAVE_REGEXEC
768
769 /* Define if you have the rename function. */
770 #undef HAVE_RENAME
771
772 /* Define if you have the sbrk function. */
773 #undef HAVE_SBRK
774
775 /* Define if you have the select function. */
776 #undef HAVE_SELECT
777
778 /* Define if you have the setdtablesize function. */
779 #undef HAVE_SETDTABLESIZE
780
781 /* Define if you have the setenv function. */
782 #undef HAVE_SETENV
783
784 /* Define if you have the setitimer function. */
785 #undef HAVE_SETITIMER
786
787 /* Define if you have the setlinebuf function. */
788 #undef HAVE_SETLINEBUF
789
790 /* Define if you have the setlocale function. */
791 #undef HAVE_SETLOCALE
792
793 /* Define if you have the setostype function. */
794 #undef HAVE_SETOSTYPE
795
796 /* Define if you have the setregid function. */
797 #undef HAVE_SETREGID
798 #undef HAVE_DECL_SETREGID
799
800 /* Define if you have the setvbuf function. */
801 #undef HAVE_SETVBUF
802
803 /* Define if you have the siginterrupt function. */
804 #undef HAVE_SIGINTERRUPT
805
806 /* Define if you have the POSIX.1-style sigsetjmp function. */
807 #undef HAVE_POSIX_SIGSETJMP
808
809 /* Define if you have the snprintf function. */
810 #undef HAVE_SNPRINTF
811
812 /* Define if you have the strcasecmp function. */
813 #undef HAVE_STRCASECMP
814
815 /* Define if you have the strcasestr function. */
816 #undef HAVE_STRCASESTR
817
818 /* Define if you have the strchr function. */
819 #undef HAVE_STRCHR
820
821 /* Define if you have the strchrnul function. */
822 #undef HAVE_STRCHRNUL
823
824 /* Define if you have the strcoll function. */
825 #undef HAVE_STRCOLL
826
827 /* Define if you have the strerror function. */
828 #undef HAVE_STRERROR
829
830 /* Define if you have the strftime function. */
831 #undef HAVE_STRFTIME
832
833 /* Define if you have the strnlen function. */
834 #undef HAVE_STRNLEN
835
836 /* Define if you have the strpbrk function. */
837 #undef HAVE_STRPBRK
838
839 /* Define if you have the strstr function. */
840 #undef HAVE_STRSTR
841
842 /* Define if you have the strtod function. */
843 #undef HAVE_STRTOD
844
845 /* Define if you have the strtoimax function. */
846 #undef HAVE_STRTOIMAX
847
848 /* Define if you have the strtol function. */
849 #undef HAVE_STRTOL
850
851 /* Define if you have the strtoll function. */
852 #undef HAVE_STRTOLL
853
854 /* Define if you have the strtoul function. */
855 #undef HAVE_STRTOUL
856
857 /* Define if you have the strtoull function. */
858 #undef HAVE_STRTOULL
859
860 /* Define if you have the strtoumax function. */
861 #undef HAVE_STRTOUMAX
862
863 /* Define if you have the strsignal function or macro. */
864 #undef HAVE_STRSIGNAL
865
866 /* Define if you have the sysconf function. */
867 #undef HAVE_SYSCONF
868
869 /* Define if you have the syslog function. */
870 #undef HAVE_SYSLOG
871
872 /* Define if you have the tcgetattr function. */
873 #undef HAVE_TCGETATTR
874
875 /* Define if you have the tcgetpgrp function. */
876 #undef HAVE_TCGETPGRP
877
878 /* Define if you have the times function. */
879 #undef HAVE_TIMES
880
881 /* Define if you have the towlower function. */
882 #undef HAVE_TOWLOWER
883
884 /* Define if you have the towupper function. */
885 #undef HAVE_TOWUPPER
886
887 /* Define if you have the ttyname function. */
888 #undef HAVE_TTYNAME
889
890 /* Define if you have the tzset function. */
891 #undef HAVE_TZSET
892
893 /* Define if you have the ulimit function. */
894 #undef HAVE_ULIMIT
895
896 /* Define if you have the uname function. */
897 #undef HAVE_UNAME
898
899 /* Define if you have the unsetenv function. */
900 #undef HAVE_UNSETENV
901
902 /* Define if you have the vasprintf function. */
903 #undef HAVE_VASPRINTF
904
905 /* Define if you have the vprintf function. */
906 #undef HAVE_VPRINTF
907
908 /* Define if you have the vsnprintf function. */
909 #undef HAVE_VSNPRINTF
910
911 /* Define if you have the waitpid function. */
912 #undef HAVE_WAITPID
913
914 /* Define if you have the wait3 function. */
915 #undef HAVE_WAIT3
916
917 /* Define if you have the wcrtomb function. */
918 #undef HAVE_WCRTOMB
919
920 /* Define if you have the wcscoll function. */
921 #undef HAVE_WCSCOLL
922
923 /* Define if you have the wcsdup function. */
924 #undef HAVE_WCSDUP
925
926 /* Define if you have the wctype function. */
927 #undef HAVE_WCTYPE
928
929 /* Define if you have the wcswidth function. */
930 #undef HAVE_WCSWIDTH
931
932 /* Define if you have the wcwidth function. */
933 #undef HAVE_WCWIDTH
934
935 /* and if it works */
936 #undef WCWIDTH_BROKEN
937
938 /* Presence of certain system include files. */
939
940 /* Define if you have the <arpa/inet.h> header file. */
941 #undef HAVE_ARPA_INET_H
942
943 /* Define if you have the <dirent.h> header file. */
944 #undef HAVE_DIRENT_H
945
946 /* Define if you have the <dlfcn.h> header file. */
947 #undef HAVE_DLFCN_H
948
949 /* Define if you have the <grp.h> header file. */
950 #undef HAVE_GRP_H
951
952 /* Define if you have the <inttypes.h> header file. */
953 #undef HAVE_INTTYPES_H
954
955 /* Define if you have the <langinfo.h> header file. */
956 #undef HAVE_LANGINFO_H
957
958 /* Define if you have the <libaudit.h> header file. */
959 #undef HAVE_LIBAUDIT_H
960
961 /* Define if you have the <libintl.h> header file. */
962 #undef HAVE_LIBINTL_H
963
964 /* Define if you have the <limits.h> header file. */
965 #undef HAVE_LIMITS_H
966
967 /* Define if you have the <locale.h> header file. */
968 #undef HAVE_LOCALE_H
969
970 /* Define if you have the <mbstr.h> header file. */
971 #undef HAVE_MBSTR_H
972
973 /* Define if you have the <ndir.h> header file. */
974 #undef HAVE_NDIR_H
975
976 /* Define if you have the <netdh.h> header file. */
977 #undef HAVE_NETDB_H
978
979 /* Define if you have the <netinet/in.h> header file. */
980 #undef HAVE_NETINET_IN_H
981
982 /* Define if you have the <pwd.h> header file. */
983 #undef HAVE_PWD_H
984
985 /* Define if you have the <regex.h> header file. */
986 #undef HAVE_REGEX_H
987
988 /* Define if you have the <stdlib.h> header file. */
989 #undef HAVE_STDLIB_H
990
991 /* Define if you have the <stdarg.h> header file. */
992 #undef HAVE_STDARG_H
993
994 /* Define if you have the <string.h> header file. */
995 #undef HAVE_STRING_H
996
997 /* Define if you have the <strings.h> header file. */
998 #undef HAVE_STRINGS_H
999
1000 /* Define if you have the <memory.h> header file. */
1001 #undef HAVE_MEMORY_H
1002
1003 /* Define if you have the <stdbool.h> header file. */
1004 #undef HAVE_STDBOOL_H
1005
1006 /* Define if you have the <stddef.h> header file. */
1007 #undef HAVE_STDDEF_H
1008
1009 /* Define if you have the <stdint.h> header file. */
1010 #undef HAVE_STDINT_H
1011
1012 /* Define if you have the <syslog.h> header file. */
1013 #undef HAVE_SYSLOG_H
1014
1015 /* Define if you have the <sys/dir.h> header file. */
1016 #undef HAVE_SYS_DIR_H
1017
1018 /* Define if you have the <sys/file.h> header file. */
1019 #undef HAVE_SYS_FILE_H
1020
1021 /* Define if you have the <sys/ioctl.h> header file. */
1022 #undef HAVE_SYS_IOCTL_H
1023
1024 /* Define if you have the <sys/ndir.h> header file. */
1025 #undef HAVE_SYS_NDIR_H
1026
1027 /* Define if you have the <sys/param.h> header file. */
1028 #undef HAVE_SYS_PARAM_H
1029
1030 /* Define if you have the <sys/pte.h> header file. */
1031 #undef HAVE_SYS_PTE_H
1032
1033 /* Define if you have the <sys/ptem.h> header file. */
1034 #undef HAVE_SYS_PTEM_H
1035
1036 /* Define if you have the <sys/resource.h> header file. */
1037 #undef HAVE_SYS_RESOURCE_H
1038
1039 /* Define if you have the <sys/select.h> header file. */
1040 #undef HAVE_SYS_SELECT_H
1041
1042 /* Define if you have the <sys/socket.h> header file. */
1043 #undef HAVE_SYS_SOCKET_H
1044
1045 /* Define if you have the <sys/stat.h> header file. */
1046 #undef HAVE_SYS_STAT_H
1047
1048 /* Define if you have the <sys/stream.h> header file. */
1049 #undef HAVE_SYS_STREAM_H
1050
1051 /* Define if you have <sys/time.h> */
1052 #undef HAVE_SYS_TIME_H
1053
1054 #undef TIME_WITH_SYS_TIME
1055
1056 /* Define if you have <sys/times.h> */
1057 #undef HAVE_SYS_TIMES_H
1058
1059 /* Define if you have the <sys/types.h> header file. */
1060 #undef HAVE_SYS_TYPES_H
1061
1062 /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
1063 #undef HAVE_SYS_WAIT_H
1064
1065 /* Define if you have the <termcap.h> header file. */
1066 #undef HAVE_TERMCAP_H
1067
1068 /* Define if you have the <termio.h> header file. */
1069 #undef HAVE_TERMIO_H
1070
1071 /* Define if you have the <termios.h> header file. */
1072 #undef HAVE_TERMIOS_H
1073
1074 /* Define if you have the <ulimit.h> header file. */
1075 #undef HAVE_ULIMIT_H
1076
1077 /* Define if you have the <unistd.h> header file. */
1078 #undef HAVE_UNISTD_H
1079
1080 /* Define if you have the <varargs.h> header file. */
1081 #undef HAVE_VARARGS_H
1082
1083 /* Define if you have the <wchar.h> header file. */
1084 #undef HAVE_WCHAR_H
1085
1086 /* Define if you have the <varargs.h> header file. */
1087 #undef HAVE_WCTYPE_H
1088
1089 /* Presence of certain system libraries. */
1090
1091 #undef HAVE_LIBDL
1092
1093 #undef HAVE_LIBSUN
1094
1095 #undef HAVE_LIBSOCKET
1096
1097 /* Are we running the GNU C library, version 2.1 or later? */
1098 #undef GLIBC21
1099
1100 /* Are we running SVR5 (UnixWare 7)? */
1101 #undef SVR5
1102
1103 /* Are we running SVR4.2? */
1104 #undef SVR4_2
1105
1106 /* Are we running some version of SVR4? */
1107 #undef SVR4
1108
1109 /* Define if job control is unusable or unsupported. */
1110 #undef JOB_CONTROL_MISSING
1111
1112 /* Do we need to define _KERNEL to get the RLIMIT_* defines from
1113 <sys/resource.h>? */
1114 #undef RLIMIT_NEEDS_KERNEL
1115
1116 /* Number of bits in a file offset, on hosts where this is settable. */
1117 #undef _FILE_OFFSET_BITS
1118
1119 /* Define for large files on AIX-style hosts. */
1120 #undef _LARGE_FILES
1121
1122 /* Do strcoll(3) and strcmp(3) give different results in the default locale? */
1123 #undef STRCOLL_BROKEN
1124
1125 #undef DUP2_BROKEN
1126
1127 #undef GETCWD_BROKEN
1128
1129 /* Additional defines for configuring lib/intl, maintained by autoscan/autoheader */
1130
1131 /* Define if you have the <argz.h> header file. */
1132 #undef HAVE_ARGZ_H
1133
1134 /* Define if you have the <errno.h> header file. */
1135 #undef HAVE_ERRNO_H
1136
1137 /* Define if you have the <fcntl.h> header file. */
1138 #undef HAVE_FCNTL_H
1139
1140 /* Define if you have the <malloc.h> header file. */
1141 #undef HAVE_MALLOC_H
1142
1143 /* Define if you have the <stdio_ext.h> header file. */
1144 #undef HAVE_STDIO_EXT_H
1145
1146 /* Define if you have the `dcgettext' function. */
1147 #undef HAVE_DCGETTEXT
1148
1149 /* Define if you have the `localeconv' function. */
1150 #undef HAVE_LOCALECONV
1151
1152 /* Define if your system has a working `malloc' function. */
1153 /* #undef HAVE_MALLOC */
1154
1155 /* Define if you have the `mempcpy' function. */
1156 #undef HAVE_MEMPCPY
1157
1158 /* Define if you have a working `mmap' system call. */
1159 #undef HAVE_MMAP
1160
1161 /* Define if you have the `munmap' function. */
1162 #undef HAVE_MUNMAP
1163
1164 /* Define if you have the `nl_langinfo' function. */
1165 #undef HAVE_NL_LANGINFO
1166
1167 /* Define if you have the `stpcpy' function. */
1168 #undef HAVE_STPCPY
1169
1170 /* Define if you have the `strcspn' function. */
1171 #undef HAVE_STRCSPN
1172
1173 /* Define if you have the `strdup' function. */
1174 #undef HAVE_STRDUP
1175
1176 /* Define if you have the `__argz_count' function. */
1177 #undef HAVE___ARGZ_COUNT
1178
1179 /* Define if you have the `__argz_next' function. */
1180 #undef HAVE___ARGZ_NEXT
1181
1182 /* Define if you have the `__argz_stringify' function. */
1183 #undef HAVE___ARGZ_STRINGIFY
1184
1185 /* End additions for lib/intl */
1186
1187 #include "config-bot.h"
1188
1189 #endif /* _CONFIG_H_ */