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