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