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