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