1 /* config.h -- Configuration file for bash. */
3 /* Copyright (C) 1987-2009 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
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.
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.
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/>.
24 /* Configuration feature settings controllable by autoconf. */
26 /* Define JOB_CONTROL if your operating system supports
27 BSD-like job control. */
30 /* Define ALIAS if you want the alias features. */
33 /* Define PUSHD_AND_POPD if you want those commands to be compiled in.
34 (Also the `dirs' commands.) */
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
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. */
48 /* Define BANG_HISTORY if you want to have Csh style "!" history expansion.
49 This is unrelated to READLINE. */
52 /* Define HISTORY if you want to have access to previously typed commands.
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.
58 If only HISTORY is defined, the `fc' and `history' builtins are
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 */
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
74 /* Define HELP_BUILTIN if you want the `help' shell builtin and the long
75 documentation strings compiled into the shell. */
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
82 #undef RESTRICTED_SHELL
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
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
94 /* Define PROMPT_STRING_DECODE if you want the backslash-escaped special
95 characters in PS1 and PS2 expanded. Variable expansion will still be
97 #undef PROMPT_STRING_DECODE
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
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
107 /* Define ARRAY_VARS if you want ksh-style one-dimensional array variables. */
110 /* Define DPAREN_ARITHMETIC if you want the ksh-style ((...)) arithmetic
111 evaluation command. */
112 #undef DPAREN_ARITHMETIC
114 /* Define EXTENDED_GLOB if you want the ksh-style [*+@?!](patlist) extended
118 /* Define EXTGLOB_DEFAULT to the value you'd like the extglob shell option
119 to have by default */
120 #undef EXTGLOB_DEFAULT
122 /* Define COND_COMMAND if you want the ksh-style [[...]] conditional
126 /* Define COND_REGEXP if you want extended regular expression matching and the
127 =~ binary operator in the [[...]] conditional command. */
130 /* Define COPROCESS_SUPPORT if you want support for ksh-like coprocesses and
131 the `coproc' reserved word */
132 #define COPROCESS_SUPPORT
134 /* Define ARITH_FOR_COMMAND if you want the ksh93-style
135 for (( init; test; step )) do list; done
136 arithmetic for command. */
137 #undef ARITH_FOR_COMMAND
139 /* Define NETWORK_REDIRECTIONS if you want /dev/(tcp|udp)/host/port to open
140 socket connections when used in redirections */
141 #undef NETWORK_REDIRECTIONS
143 /* Define PROGRAMMABLE_COMPLETION for the programmable completion features
144 and the complete builtin. */
145 #undef PROGRAMMABLE_COMPLETION
147 /* Define NO_MULTIBYTE_SUPPORT to not compile in support for multibyte
148 characters, even if the OS supports them. */
149 #undef NO_MULTIBYTE_SUPPORT
151 /* Define DEBUGGER if you want to compile in some features used only by the
155 /* Define STRICT_POSIX if you want bash to be strictly posix.2 conformant by
156 default (except for echo; that is controlled separately). */
159 /* Define MEMSCRAMBLE if you want the bash malloc and free to scramble
160 memory contents on malloc() and free(). */
163 /* Define AFS if you are using Transarc's AFS. */
166 /* Define for case-modifying variable attributes; variables modified on
170 /* Define for case-modifying word expansions */
171 #undef CASEMOD_EXPANSIONS
175 /* End of configuration settings controllable by autoconf. */
176 /* Other settable options appear in config-top.h. */
178 #include "config-top.h"
180 /* Beginning of autoconf additions. */
182 /* Characteristics of the C compiler */
191 /* Define if cpp supports the ANSI-C stringizing `#' operator */
192 #undef HAVE_STRINGIZE
194 /* Define if the compiler supports `long double' variables. */
195 #undef HAVE_LONG_DOUBLE
199 #undef __CHAR_UNSIGNED__
201 /* Define if the compiler supports `long long' variables. */
202 #undef HAVE_LONG_LONG
204 #undef HAVE_UNSIGNED_LONG_LONG
206 /* The number of bytes in a int. */
209 /* The number of bytes in a long. */
212 /* The number of bytes in a pointer to char. */
215 /* The number of bytes in a double (hopefully 8). */
218 /* The number of bytes in a `long long', if we have one. */
219 #undef SIZEOF_LONG_LONG
223 #define DEFAULT_MAIL_DIRECTORY "/usr/spool/mail"
225 /* Characteristics of the system's header files and libraries that affect
226 the compilation environment. */
228 /* Define if the system does not provide POSIX.1 features except
229 with this defined. */
230 #undef _POSIX_1_SOURCE
232 /* Define if you need to in order for stat and other things to work. */
235 /* Define to use GNU libc extensions */
238 /* Define if you have the ANSI C header files. */
241 /* Memory management functions. */
243 /* Define if using the bash version of malloc in lib/malloc/malloc.c */
244 #undef USING_BASH_MALLOC
246 #undef DISABLE_MALLOC_WRAPPERS
248 /* Define if using alloca.c. */
251 /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
252 This function is required for alloca.c support on those systems. */
253 #undef CRAY_STACKSEG_END
255 /* Define if you have alloca, as a function or macro. */
258 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
264 /* Define to `long' if <sys/types.h> doesn't define. */
267 /* Define to `int' if <sys/types.h> doesn't define. */
270 /* Define to `int' if <signal.h> doesn't define. */
273 /* Define to `int' if <sys/types.h> doesn't define. */
276 /* Define to `short' if <sys/types.h> doesn't define. */
279 /* Define to `unsigned short' if <sys/types.h> doesn't define. */
282 /* Define to `int' if <sys/types.h> doesn't define. */
285 /* Define to `unsigned int' if <sys/types.h> doesn't define. */
288 /* Define to `double' if <sys/types.h> doesn't define. */
291 /* Define to `unsigned int' if <sys/types.h> doesn't define. */
294 /* Define to `unsigned long' if <sys/types.h> doesn't define. */
297 /* Define to `int' if <sys/types.h> doesn't define. */
300 /* Define to `unsigned' if <sys/types.h> doesn't define. */
303 /* Define to `int' if <sys/types.h> doesn't define. */
306 /* Define to `long' if <stdint.h> doesn't define. */
309 /* Define to `unsigned long' if <stdint.h> doesn't define. */
312 /* Define to `int' if <sys/types.h> doesn't define. */
315 /* Define to `long' if <sys/types.h> doesn't define. */
318 /* Define to `long' if <sys/types.h> doesn't define. */
321 /* Define to `int' if <sys/types.h> doesn't define. */
324 /* Define to `unsigned int' if <sys/socket.h> doesn't define. */
327 /* Define to `int' if <signal.h> doesn't define. */
330 #undef HAVE_MBSTATE_T
332 /* Define if you have quad_t in <sys/types.h>. */
335 /* Define if you have wchar_t in <wctype.h>. */
338 /* Define if you have wctype_t in <wctype.h>. */
341 /* Define if you have wint_t in <wctype.h>. */
346 /* Define to the type of elements in the array set by `getgroups'.
347 Usually this is either `int' or `gid_t'. */
350 /* Characteristics of the machine archictecture. */
352 /* If using the C implementation of alloca, define if you know the
353 direction of stack growth for your system; otherwise it will be
354 automatically deduced at run-time.
355 STACK_DIRECTION > 0 => grows toward higher addresses
356 STACK_DIRECTION < 0 => grows toward lower addresses
357 STACK_DIRECTION = 0 => direction of growth unknown
359 #undef STACK_DIRECTION
361 /* Define if the machine architecture is big-endian. */
362 #undef WORDS_BIGENDIAN
364 /* Check for the presence of certain non-function symbols in the system
367 /* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
368 #undef HAVE_DECL_SYS_SIGLIST
369 #undef SYS_SIGLIST_DECLARED
371 /* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>. */
372 #undef UNDER_SYS_SIGLIST_DECLARED
374 #undef HAVE_SYS_SIGLIST
376 #undef HAVE_UNDER_SYS_SIGLIST
378 #undef HAVE_SYS_ERRLIST
381 #undef HAVE_DECL_TZNAME
383 /* Characteristics of some of the system structures. */
385 #undef HAVE_STRUCT_DIRENT_D_INO
387 #undef HAVE_STRUCT_DIRENT_D_FILENO
389 #undef HAVE_STRUCT_DIRENT_D_NAMLEN
391 #undef TIOCSTAT_IN_SYS_IOCTL
393 #undef FIONREAD_IN_SYS_IOCTL
395 #undef GWINSZ_IN_SYS_IOCTL
397 #undef STRUCT_WINSIZE_IN_SYS_IOCTL
399 #undef TM_IN_SYS_TIME
401 #undef STRUCT_WINSIZE_IN_TERMIOS
403 #undef SPEED_T_IN_SYS_TYPES
409 #undef HAVE_STRUCT_STAT_ST_BLOCKS
411 #undef HAVE_STRUCT_TM_TM_ZONE
416 #undef HAVE_STRUCT_TIMEZONE
418 /* Characteristics of definitions in the system header files. */
420 #undef HAVE_GETPW_DECLS
424 #undef HAVE_LIBC_FNM_EXTMATCH
426 #undef HAVE_DECL_CONFSTR
428 #undef HAVE_DECL_PRINTF
430 #undef HAVE_DECL_SBRK
432 #undef HAVE_DECL_STRCPY
434 #undef HAVE_DECL_STRSIGNAL
436 #undef HAVE_DECL_STRTOLD
438 #undef PRI_MACROS_BROKEN
440 #undef STRTOLD_BROKEN
442 /* Define if WCONTINUED is defined in system headers, but rejected by waitpid */
443 #undef WCONTINUED_BROKEN
445 /* These are checked with BASH_CHECK_DECL */
447 #undef HAVE_DECL_STRTOIMAX
448 #undef HAVE_DECL_STRTOL
449 #undef HAVE_DECL_STRTOLL
450 #undef HAVE_DECL_STRTOUL
451 #undef HAVE_DECL_STRTOULL
452 #undef HAVE_DECL_STRTOUMAX
454 /* Characteristics of system calls and C library functions. */
456 /* Define if the `getpgrp' function takes no argument. */
459 #undef NAMED_PIPES_MISSING
461 #undef OPENDIR_NOT_ROBUST
465 /* Define if the setvbuf function takes the buffering type as its second
466 argument and the buffer pointer as the third, as on System V
468 #undef SETVBUF_REVERSED
470 #undef STAT_MACROS_BROKEN
474 #undef CAN_REDEFINE_GETENV
476 #undef HAVE_STD_PUTENV
478 #undef HAVE_STD_UNSETENV
480 #undef HAVE_PRINTF_A_FORMAT
482 #undef CTYPE_NON_ASCII
484 /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
485 #undef HAVE_LANGINFO_CODESET
487 /* Characteristics of properties exported by the kernel. */
489 /* Define if the kernel can exec files beginning with #! */
490 #undef HAVE_HASH_BANG_EXEC
492 /* Define if you have the /dev/fd devices to map open files into the file system. */
495 /* Defined to /dev/fd or /proc/self/fd (linux). */
498 /* Define if you have the /dev/stdin device. */
499 #undef HAVE_DEV_STDIN
501 /* The type of iconv's `inbuf' argument */
504 /* Type and behavior of signal handling functions. */
506 /* Define as the return type of signal handlers (int or void). */
509 /* Define if return type of signal handlers is void */
510 #undef VOID_SIGHANDLER
512 #undef MUST_REINSTALL_SIGHANDLERS
514 #undef HAVE_BSD_SIGNALS
516 #undef HAVE_POSIX_SIGNALS
518 #undef HAVE_USG_SIGHOLD
520 #undef UNUSABLE_RT_SIGNALS
523 /* Presence of system and C library functions. */
525 /* Define if you have the asprintf function. */
528 /* Define if you have the bcopy function. */
531 /* Define if you have the bzero function. */
534 /* Define if you have the confstr function. */
537 /* Define if you have the dlclose function. */
540 /* Define if you have the dlopen function. */
543 /* Define if you have the dlsym function. */
546 /* Define if you don't have vprintf but do have _doprnt. */
549 /* Define if you have the dup2 function. */
552 /* Define if you have the eaccess function. */
555 /* Define if you have the fcntl function. */
558 /* Define if you have the fdprintf function. */
561 /* Define if you have the fpurge/__fpurge function. */
564 #undef HAVE_DECL_FPURGE
566 /* Define if you have the getaddrinfo function. */
567 #undef HAVE_GETADDRINFO
569 /* Define if you have the getcwd function. */
572 /* Define if you have the getdtablesize function. */
573 #undef HAVE_GETDTABLESIZE
575 /* Define if you have the getgroups function. */
576 #undef HAVE_GETGROUPS
578 /* Define if you have the gethostbyname function. */
579 #undef HAVE_GETHOSTBYNAME
581 /* Define if you have the gethostname function. */
582 #undef HAVE_GETHOSTNAME
584 /* Define if you have the getpagesize function. */
585 #undef HAVE_GETPAGESIZE
587 /* Define if you have the getpeername function. */
588 #undef HAVE_GETPEERNAME
590 /* Define if you have the getpwent function. */
593 /* Define if you have the getpwnam function. */
596 /* Define if you have the getpwuid function. */
599 /* Define if you have the getrlimit function. */
600 #undef HAVE_GETRLIMIT
602 /* Define if you have the getrusage function. */
603 #undef HAVE_GETRUSAGE
605 /* Define if you have the getservbyname function. */
606 #undef HAVE_GETSERVBYNAME
608 /* Define if you have the getservent function. */
609 #undef HAVE_GETSERVENT
611 /* Define if you have the gettimeofday function. */
612 #undef HAVE_GETTIMEOFDAY
614 /* Define if you have the getwd function. */
617 /* Define if you have the iconv function. */
620 /* Define if you have the inet_aton function. */
621 #undef HAVE_INET_ATON
623 /* Define if you have the isascii function. */
626 /* Define if you have the isblank function. */
629 /* Define if you have the isgraph function. */
632 /* Define if you have the isinf function in libc */
633 #undef HAVE_ISINF_IN_LIBC
635 /* Define if you have the isnan function in libc */
636 #undef HAVE_ISNAN_IN_LIBC
638 /* Define if you have the isprint function. */
641 /* Define if you have the isspace function. */
644 /* Define if you have the iswctype function. */
647 /* Define if you have the iswlower function. */
650 /* Define if you have the iswupper function. */
653 /* Define if you have the isxdigit function. */
656 /* Define if you have the kill function. */
659 /* Define if you have the killpg function. */
662 /* Define if you have the lstat function. */
665 /* Define if you have the locale_charset function. */
666 #undef HAVE_LOCALE_CHARSET
668 /* Define if you have the mbrlen function. */
671 /* Define if you have the mbrtowc function. */
674 /* Define if you have the mbscasecmp function. */
675 #undef HAVE_MBSCASECMP
677 /* Define if you have the mbschr function. */
680 /* Define if you have the mbscmp function. */
683 /* Define if you have the mbsrtowcs function. */
684 #undef HAVE_MBSRTOWCS
686 /* Define if you have the memmove function. */
689 /* Define if you have the memset function. */
692 /* Define if you have the mkfifo function. */
695 /* Define if you have the pathconf function. */
698 /* Define if you have the putenv function. */
701 /* Define if you have the raise function. */
704 /* Define if you have the readlink function. */
707 /* Define if you have the regcomp function. */
710 /* Define if you have the regexec function. */
713 /* Define if you have the rename function. */
716 /* Define if you have the sbrk function. */
719 /* Define if you have the select function. */
722 /* Define if you have the setdtablesize function. */
723 #undef HAVE_SETDTABLESIZE
725 /* Define if you have the setenv function. */
728 /* Define if you have the setitimer function. */
729 #undef HAVE_SETITIMER
731 /* Define if you have the setlinebuf function. */
732 #undef HAVE_SETLINEBUF
734 /* Define if you have the setlocale function. */
735 #undef HAVE_SETLOCALE
737 /* Define if you have the setostype function. */
738 #undef HAVE_SETOSTYPE
740 /* Define if you have the setregid function. */
742 #undef HAVE_DECL_SETREGID
744 /* Define if you have the setvbuf function. */
747 /* Define if you have the siginterrupt function. */
748 #undef HAVE_SIGINTERRUPT
750 /* Define if you have the POSIX.1-style sigsetjmp function. */
751 #undef HAVE_POSIX_SIGSETJMP
753 /* Define if you have the snprintf function. */
756 /* Define if you have the strcasecmp function. */
757 #undef HAVE_STRCASECMP
759 /* Define if you have the strcasestr function. */
760 #undef HAVE_STRCASESTR
762 /* Define if you have the strchr function. */
765 /* Define if you have the strcoll function. */
768 /* Define if you have the strerror function. */
771 /* Define if you have the strftime function. */
774 /* Define if you have the strnlen function. */
777 /* Define if you have the strpbrk function. */
780 /* Define if you have the strstr function. */
783 /* Define if you have the strtod function. */
786 /* Define if you have the strtoimax function. */
787 #undef HAVE_STRTOIMAX
789 /* Define if you have the strtol function. */
792 /* Define if you have the strtoll function. */
795 /* Define if you have the strtoul function. */
798 /* Define if you have the strtoull function. */
801 /* Define if you have the strtoumax function. */
802 #undef HAVE_STRTOUMAX
804 /* Define if you have the strsignal function or macro. */
805 #undef HAVE_STRSIGNAL
807 /* Define if you have the sysconf function. */
810 /* Define if you have the syslog function. */
813 /* Define if you have the tcgetattr function. */
814 #undef HAVE_TCGETATTR
816 /* Define if you have the tcgetpgrp function. */
817 #undef HAVE_TCGETPGRP
819 /* Define if you have the times function. */
822 /* Define if you have the towlower function. */
825 /* Define if you have the towupper function. */
828 /* Define if you have the ttyname function. */
831 /* Define if you have the tzset function. */
834 /* Define if you have the ulimit function. */
837 /* Define if you have the uname function. */
840 /* Define if you have the unsetenv function. */
843 /* Define if you have the vasprintf function. */
844 #undef HAVE_VASPRINTF
846 /* Define if you have the vprintf function. */
849 /* Define if you have the vsnprintf function. */
850 #undef HAVE_VSNPRINTF
852 /* Define if you have the waitpid function. */
855 /* Define if you have the wait3 function. */
858 /* Define if you have the wcrtomb function. */
861 /* Define if you have the wcscoll function. */
864 /* Define if you have the wcsdup function. */
867 /* Define if you have the wctype function. */
870 /* Define if you have the wcwidth function. */
873 /* Presence of certain system include files. */
875 /* Define if you have the <arpa/inet.h> header file. */
876 #undef HAVE_ARPA_INET_H
878 /* Define if you have the <dirent.h> header file. */
881 /* Define if you have the <dlfcn.h> header file. */
884 /* Define if you have the <grp.h> header file. */
887 /* Define if you have the <inttypes.h> header file. */
888 #undef HAVE_INTTYPES_H
890 /* Define if you have the <langinfo.h> header file. */
891 #undef HAVE_LANGINFO_H
893 /* Define if you have the <libintl.h> header file. */
894 #undef HAVE_LIBINTL_H
896 /* Define if you have the <limits.h> header file. */
899 /* Define if you have the <locale.h> header file. */
902 /* Define if you have the <ndir.h> header file. */
905 /* Define if you have the <netdh.h> header file. */
908 /* Define if you have the <netinet/in.h> header file. */
909 #undef HAVE_NETINET_IN_H
911 /* Define if you have the <pwd.h> header file. */
914 /* Define if you have the <regex.h> header file. */
917 /* Define if you have the <stdlib.h> header file. */
920 /* Define if you have the <stdarg.h> header file. */
923 /* Define if you have the <string.h> header file. */
926 /* Define if you have the <strings.h> header file. */
927 #undef HAVE_STRINGS_H
929 /* Define if you have the <memory.h> header file. */
932 /* Define if you have the <stddef.h> header file. */
935 /* Define if you have the <stdint.h> header file. */
938 /* Define if you have the <syslog.h> header file. */
941 /* Define if you have the <sys/dir.h> header file. */
942 #undef HAVE_SYS_DIR_H
944 /* Define if you have the <sys/file.h> header file. */
945 #undef HAVE_SYS_FILE_H
947 /* Define if you have the <sys/ndir.h> header file. */
948 #undef HAVE_SYS_NDIR_H
950 /* Define if you have the <sys/param.h> header file. */
951 #undef HAVE_SYS_PARAM_H
953 /* Define if you have the <sys/pte.h> header file. */
954 #undef HAVE_SYS_PTE_H
956 /* Define if you have the <sys/ptem.h> header file. */
957 #undef HAVE_SYS_PTEM_H
959 /* Define if you have the <sys/resource.h> header file. */
960 #undef HAVE_SYS_RESOURCE_H
962 /* Define if you have the <sys/select.h> header file. */
963 #undef HAVE_SYS_SELECT_H
965 /* Define if you have the <sys/socket.h> header file. */
966 #undef HAVE_SYS_SOCKET_H
968 /* Define if you have the <sys/stat.h> header file. */
969 #undef HAVE_SYS_STAT_H
971 /* Define if you have the <sys/stream.h> header file. */
972 #undef HAVE_SYS_STREAM_H
974 /* Define if you have <sys/time.h> */
975 #undef HAVE_SYS_TIME_H
977 #undef TIME_WITH_SYS_TIME
979 /* Define if you have <sys/times.h> */
980 #undef HAVE_SYS_TIMES_H
982 /* Define if you have the <sys/types.h> header file. */
983 #undef HAVE_SYS_TYPES_H
985 /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
986 #undef HAVE_SYS_WAIT_H
988 /* Define if you have the <termcap.h> header file. */
989 #undef HAVE_TERMCAP_H
991 /* Define if you have the <termio.h> header file. */
994 /* Define if you have the <termios.h> header file. */
995 #undef HAVE_TERMIOS_H
997 /* Define if you have the <unistd.h> header file. */
1000 /* Define if you have the <varargs.h> header file. */
1001 #undef HAVE_VARARGS_H
1003 /* Define if you have the <wchar.h> header file. */
1006 /* Define if you have the <varargs.h> header file. */
1007 #undef HAVE_WCTYPE_H
1009 /* Presence of certain system libraries. */
1015 #undef HAVE_LIBSOCKET
1018 /* Define if on MINIX. */
1021 /* Are we running SVR5 (UnixWare 7)? */
1024 /* Are we running SVR4.2? */
1027 /* Are we running some version of SVR4? */
1030 /* Define if job control is unusable or unsupported. */
1031 #undef JOB_CONTROL_MISSING
1033 /* Do we need to define _KERNEL to get the RLIMIT_* defines from
1034 <sys/resource.h>? */
1035 #undef RLIMIT_NEEDS_KERNEL
1037 /* Number of bits in a file offset, on hosts where this is settable. */
1038 #undef _FILE_OFFSET_BITS
1040 /* Define for large files on AIX-style hosts. */
1043 /* Do strcoll(3) and strcmp(3) give different results in the default locale? */
1044 #undef STRCOLL_BROKEN
1048 #undef GETCWD_BROKEN
1050 /* Additional defines for configuring lib/intl, maintained by autoscan/autoheader */
1052 /* Define if you have the <argz.h> header file. */
1055 /* Define if you have the <errno.h> header file. */
1058 /* Define if you have the <fcntl.h> header file. */
1061 /* Define if you have the <malloc.h> header file. */
1062 #undef HAVE_MALLOC_H
1064 /* Define if you have the <stdio_ext.h> header file. */
1065 #undef HAVE_STDIO_EXT_H
1067 /* Define if you have the `dcgettext' function. */
1068 #undef HAVE_DCGETTEXT
1070 /* Define if you have the `localeconv' function. */
1071 #undef HAVE_LOCALECONV
1073 /* Define if your system has a working `malloc' function. */
1074 /* #undef HAVE_MALLOC */
1076 /* Define if you have the `mempcpy' function. */
1079 /* Define if you have a working `mmap' system call. */
1082 /* Define if you have the `munmap' function. */
1085 /* Define if you have the `nl_langinfo' function. */
1086 #undef HAVE_NL_LANGINFO
1088 /* Define if you have the `stpcpy' function. */
1091 /* Define if you have the `strcspn' function. */
1094 /* Define if you have the `strdup' function. */
1097 /* Define if you have the `__argz_count' function. */
1098 #undef HAVE___ARGZ_COUNT
1100 /* Define if you have the `__argz_next' function. */
1101 #undef HAVE___ARGZ_NEXT
1103 /* Define if you have the `__argz_stringify' function. */
1104 #undef HAVE___ARGZ_STRINGIFY
1106 /* End additions for lib/intl */
1108 #include "config-bot.h"
1110 #endif /* _CONFIG_H_ */