]> git.ipfire.org Git - thirdparty/bash.git/blame - config.h.in
fix for SIGINT in sourced script
[thirdparty/bash.git] / config.h.in
CommitLineData
ccc6cda3
JA
1/* config.h -- Configuration file for bash. */
2
ac50fbac 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
3185942a
JA
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
3185942a
JA
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
3185942a
JA
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
a0c0a00f
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
0001803f
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
b80f6443
JA
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
3185942a
JA
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
b80f6443
JA
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
95732b49
JA
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
3185942a
JA
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
ac50fbac
CR
181/* Define to make the `direxpand' shopt option enabled by default. */
182#undef DIRCOMPLETE_EXPAND_DEFAULT
183
184/* Define to make the `globasciiranges' shopt option enabled by default. */
185#undef GLOBASCII_DEFAULT
186
a0c0a00f
CR
187/* Define to allow functions to be imported from the environment. */
188#undef FUNCTION_IMPORT
189
ac50fbac
CR
190/* Define AFS if you are using Transarc's AFS. */
191#undef AFS
192
b80f6443
JA
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
17345e5a
JA
207#undef restrict
208
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
a0c0a00f 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
495aee44
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
a0c0a00f
CR
335
336/* Define to integer type wide enough to hold a pointer if <stdint.h> doesn't define. */
337#undef uintptr_t
f73dda09 338
cce855bc
JA
339/* Define to `int' if <sys/types.h> doesn't define. */
340#undef uid_t
341
342/* Define to `long' if <sys/types.h> doesn't define. */
343#undef clock_t
344
345/* Define to `long' if <sys/types.h> doesn't define. */
346#undef time_t
347
28ef6c31
JA
348/* Define to `int' if <sys/types.h> doesn't define. */
349#undef gid_t
350
f73dda09
JA
351/* Define to `unsigned int' if <sys/socket.h> doesn't define. */
352#undef socklen_t
353
17345e5a
JA
354/* Define to `int' if <signal.h> doesn't define. */
355#undef sig_atomic_t
356
0628567a
JA
357#undef HAVE_MBSTATE_T
358
28ef6c31
JA
359/* Define if you have quad_t in <sys/types.h>. */
360#undef HAVE_QUAD_T
361
0628567a
JA
362/* Define if you have wchar_t in <wctype.h>. */
363#undef HAVE_WCHAR_T
364
365/* Define if you have wctype_t in <wctype.h>. */
366#undef HAVE_WCTYPE_T
367
368/* Define if you have wint_t in <wctype.h>. */
369#undef HAVE_WINT_T
370
28ef6c31
JA
371#undef RLIMTYPE
372
373/* Define to the type of elements in the array set by `getgroups'.
374 Usually this is either `int' or `gid_t'. */
375#undef GETGROUPS_T
376
28ef6c31 377/* Characteristics of the machine archictecture. */
ccc6cda3 378
ccc6cda3
JA
379/* If using the C implementation of alloca, define if you know the
380 direction of stack growth for your system; otherwise it will be
381 automatically deduced at run-time.
382 STACK_DIRECTION > 0 => grows toward higher addresses
383 STACK_DIRECTION < 0 => grows toward lower addresses
384 STACK_DIRECTION = 0 => direction of growth unknown
385 */
386#undef STACK_DIRECTION
387
28ef6c31
JA
388/* Define if the machine architecture is big-endian. */
389#undef WORDS_BIGENDIAN
390
28ef6c31
JA
391/* Check for the presence of certain non-function symbols in the system
392 libraries. */
393
cce855bc 394/* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
b80f6443 395#undef HAVE_DECL_SYS_SIGLIST
ccc6cda3
JA
396#undef SYS_SIGLIST_DECLARED
397
e8ce775d
JA
398/* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>. */
399#undef UNDER_SYS_SIGLIST_DECLARED
400
28ef6c31 401#undef HAVE_SYS_SIGLIST
ccc6cda3 402
28ef6c31 403#undef HAVE_UNDER_SYS_SIGLIST
bb70624e 404
28ef6c31 405#undef HAVE_SYS_ERRLIST
bb70624e 406
7117c2d2 407#undef HAVE_TZNAME
3185942a 408#undef HAVE_DECL_TZNAME
ccc6cda3 409
28ef6c31 410/* Characteristics of some of the system structures. */
ccc6cda3 411
b80f6443 412#undef HAVE_STRUCT_DIRENT_D_INO
28ef6c31 413
b80f6443
JA
414#undef HAVE_STRUCT_DIRENT_D_FILENO
415
416#undef HAVE_STRUCT_DIRENT_D_NAMLEN
ccc6cda3
JA
417
418#undef TIOCSTAT_IN_SYS_IOCTL
419
420#undef FIONREAD_IN_SYS_IOCTL
421
28ef6c31 422#undef GWINSZ_IN_SYS_IOCTL
ccc6cda3 423
28ef6c31 424#undef STRUCT_WINSIZE_IN_SYS_IOCTL
ccc6cda3 425
7117c2d2
JA
426#undef TM_IN_SYS_TIME
427
28ef6c31 428#undef STRUCT_WINSIZE_IN_TERMIOS
ccc6cda3 429
28ef6c31 430#undef SPEED_T_IN_SYS_TYPES
ccc6cda3 431
28ef6c31 432#undef TERMIOS_LDISC
ccc6cda3 433
28ef6c31 434#undef TERMIO_LDISC
ccc6cda3 435
f73dda09 436#undef HAVE_STRUCT_STAT_ST_BLOCKS
ccc6cda3 437
7117c2d2
JA
438#undef HAVE_STRUCT_TM_TM_ZONE
439#undef HAVE_TM_ZONE
440
b80f6443
JA
441#undef HAVE_TIMEVAL
442
443#undef HAVE_STRUCT_TIMEZONE
444
495aee44
CR
445#undef WEXITSTATUS_OFFSET
446
ac50fbac
CR
447#undef HAVE_STRUCT_TIMESPEC
448#undef TIME_H_DEFINES_STRUCT_TIMESPEC
449#undef SYS_TIME_H_DEFINES_STRUCT_TIMESPEC
450#undef PTHREAD_H_DEFINES_STRUCT_TIMESPEC
451
452#undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
453#undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC
454#undef HAVE_STRUCT_STAT_ST_ATIMENSEC
455#undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC
456
28ef6c31 457/* Characteristics of definitions in the system header files. */
bb70624e 458
ccc6cda3
JA
459#undef HAVE_GETPW_DECLS
460
ccc6cda3
JA
461#undef HAVE_RESOURCE
462
f73dda09
JA
463#undef HAVE_LIBC_FNM_EXTMATCH
464
ac50fbac
CR
465/* Define if you have <linux/audit.h> and it defines AUDIT_USER_TTY */
466#undef HAVE_DECL_AUDIT_USER_TTY
467
f73dda09
JA
468#undef HAVE_DECL_CONFSTR
469
7117c2d2 470#undef HAVE_DECL_PRINTF
f73dda09
JA
471
472#undef HAVE_DECL_SBRK
473
7117c2d2 474#undef HAVE_DECL_STRCPY
f73dda09
JA
475
476#undef HAVE_DECL_STRSIGNAL
477
7117c2d2
JA
478#undef HAVE_DECL_STRTOLD
479
f1be666c
JA
480#undef PRI_MACROS_BROKEN
481
b80f6443 482#undef STRTOLD_BROKEN
7117c2d2 483
95732b49
JA
484/* Define if WCONTINUED is defined in system headers, but rejected by waitpid */
485#undef WCONTINUED_BROKEN
486
f73dda09 487/* These are checked with BASH_CHECK_DECL */
ccc6cda3 488
f73dda09
JA
489#undef HAVE_DECL_STRTOIMAX
490#undef HAVE_DECL_STRTOL
491#undef HAVE_DECL_STRTOLL
492#undef HAVE_DECL_STRTOUL
493#undef HAVE_DECL_STRTOULL
494#undef HAVE_DECL_STRTOUMAX
ccc6cda3 495
28ef6c31 496/* Characteristics of system calls and C library functions. */
ccc6cda3 497
28ef6c31
JA
498/* Define if the `getpgrp' function takes no argument. */
499#undef GETPGRP_VOID
ccc6cda3
JA
500
501#undef NAMED_PIPES_MISSING
502
503#undef OPENDIR_NOT_ROBUST
504
505#undef PGRP_PIPE
506
28ef6c31
JA
507/* Define if the setvbuf function takes the buffering type as its second
508 argument and the buffer pointer as the third, as on System V
509 before release 3. */
510#undef SETVBUF_REVERSED
ccc6cda3 511
28ef6c31 512#undef STAT_MACROS_BROKEN
ccc6cda3 513
28ef6c31 514#undef ULIMIT_MAXFDS
ccc6cda3 515
28ef6c31 516#undef CAN_REDEFINE_GETENV
ccc6cda3 517
7117c2d2
JA
518#undef HAVE_STD_PUTENV
519
520#undef HAVE_STD_UNSETENV
521
f73dda09 522#undef HAVE_PRINTF_A_FORMAT
ccc6cda3 523
b80f6443
JA
524#undef CTYPE_NON_ASCII
525
7117c2d2
JA
526/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
527#undef HAVE_LANGINFO_CODESET
528
28ef6c31 529/* Characteristics of properties exported by the kernel. */
ccc6cda3 530
28ef6c31
JA
531/* Define if the kernel can exec files beginning with #! */
532#undef HAVE_HASH_BANG_EXEC
ccc6cda3 533
28ef6c31
JA
534/* Define if you have the /dev/fd devices to map open files into the file system. */
535#undef HAVE_DEV_FD
ccc6cda3 536
28ef6c31
JA
537/* Defined to /dev/fd or /proc/self/fd (linux). */
538#undef DEV_FD_PREFIX
ccc6cda3 539
28ef6c31
JA
540/* Define if you have the /dev/stdin device. */
541#undef HAVE_DEV_STDIN
ccc6cda3 542
0001803f
CR
543/* The type of iconv's `inbuf' argument */
544#undef ICONV_CONST
ccc6cda3 545
28ef6c31 546/* Type and behavior of signal handling functions. */
ccc6cda3 547
28ef6c31
JA
548/* Define as the return type of signal handlers (int or void). */
549#undef RETSIGTYPE
d166f048 550
28ef6c31
JA
551/* Define if return type of signal handlers is void */
552#undef VOID_SIGHANDLER
d166f048 553
28ef6c31 554#undef MUST_REINSTALL_SIGHANDLERS
cce855bc 555
28ef6c31 556#undef HAVE_BSD_SIGNALS
ccc6cda3 557
28ef6c31 558#undef HAVE_POSIX_SIGNALS
ccc6cda3 559
28ef6c31 560#undef HAVE_USG_SIGHOLD
ccc6cda3 561
28ef6c31 562#undef UNUSABLE_RT_SIGNALS
ccc6cda3 563
28ef6c31 564/* Presence of system and C library functions. */
ccc6cda3 565
f73dda09
JA
566/* Define if you have the asprintf function. */
567#undef HAVE_ASPRINTF
568
ccc6cda3
JA
569/* Define if you have the bcopy function. */
570#undef HAVE_BCOPY
571
572/* Define if you have the bzero function. */
573#undef HAVE_BZERO
574
a0c0a00f
CR
575/* Define if you have the chown function. */
576#undef HAVE_CHOWN
577
ccc6cda3
JA
578/* Define if you have the confstr function. */
579#undef HAVE_CONFSTR
580
581/* Define if you have the dlclose function. */
582#undef HAVE_DLCLOSE
583
584/* Define if you have the dlopen function. */
585#undef HAVE_DLOPEN
586
587/* Define if you have the dlsym function. */
588#undef HAVE_DLSYM
589
28ef6c31
JA
590/* Define if you don't have vprintf but do have _doprnt. */
591#undef HAVE_DOPRNT
592
495aee44
CR
593/* Define if you have the dprintf function. */
594#undef HAVE_DPRINTF
595
ccc6cda3
JA
596/* Define if you have the dup2 function. */
597#undef HAVE_DUP2
598
0628567a
JA
599/* Define if you have the eaccess function. */
600#undef HAVE_EACCESS
601
495aee44
CR
602/* Define if you have the faccessat function. */
603#undef HAVE_FACCESSAT
604
95732b49
JA
605/* Define if you have the fcntl function. */
606#undef HAVE_FCNTL
607
3185942a
JA
608/* Define if you have the fpurge/__fpurge function. */
609#undef HAVE_FPURGE
610#undef HAVE___FPURGE
611#undef HAVE_DECL_FPURGE
612
f73dda09
JA
613/* Define if you have the getaddrinfo function. */
614#undef HAVE_GETADDRINFO
615
ccc6cda3
JA
616/* Define if you have the getcwd function. */
617#undef HAVE_GETCWD
618
619/* Define if you have the getdtablesize function. */
620#undef HAVE_GETDTABLESIZE
621
622/* Define if you have the getgroups function. */
623#undef HAVE_GETGROUPS
624
28ef6c31
JA
625/* Define if you have the gethostbyname function. */
626#undef HAVE_GETHOSTBYNAME
627
ccc6cda3
JA
628/* Define if you have the gethostname function. */
629#undef HAVE_GETHOSTNAME
630
631/* Define if you have the getpagesize function. */
632#undef HAVE_GETPAGESIZE
633
634/* Define if you have the getpeername function. */
635#undef HAVE_GETPEERNAME
636
95732b49
JA
637/* Define if you have the getpwent function. */
638#undef HAVE_GETPWENT
639
640/* Define if you have the getpwnam function. */
641#undef HAVE_GETPWNAM
642
643/* Define if you have the getpwuid function. */
644#undef HAVE_GETPWUID
645
28ef6c31
JA
646/* Define if you have the getrlimit function. */
647#undef HAVE_GETRLIMIT
648
649/* Define if you have the getrusage function. */
650#undef HAVE_GETRUSAGE
651
652/* Define if you have the getservbyname function. */
653#undef HAVE_GETSERVBYNAME
654
7117c2d2
JA
655/* Define if you have the getservent function. */
656#undef HAVE_GETSERVENT
657
28ef6c31
JA
658/* Define if you have the gettimeofday function. */
659#undef HAVE_GETTIMEOFDAY
660
ccc6cda3
JA
661/* Define if you have the getwd function. */
662#undef HAVE_GETWD
663
0001803f
CR
664/* Define if you have the iconv function. */
665#undef HAVE_ICONV
666
ac50fbac
CR
667/* Define if you have the imaxdiv function. */
668#undef HAVE_IMAXDIV
669
28ef6c31
JA
670/* Define if you have the inet_aton function. */
671#undef HAVE_INET_ATON
672
f73dda09
JA
673/* Define if you have the isascii function. */
674#undef HAVE_ISASCII
675
676/* Define if you have the isblank function. */
677#undef HAVE_ISBLANK
678
679/* Define if you have the isgraph function. */
680#undef HAVE_ISGRAPH
681
682/* Define if you have the isprint function. */
683#undef HAVE_ISPRINT
684
685/* Define if you have the isspace function. */
686#undef HAVE_ISSPACE
687
0628567a
JA
688/* Define if you have the iswctype function. */
689#undef HAVE_ISWCTYPE
690
691/* Define if you have the iswlower function. */
692#undef HAVE_ISWLOWER
693
694/* Define if you have the iswupper function. */
695#undef HAVE_ISWUPPER
696
f73dda09
JA
697/* Define if you have the isxdigit function. */
698#undef HAVE_ISXDIGIT
699
95732b49
JA
700/* Define if you have the kill function. */
701#undef HAVE_KILL
702
ccc6cda3
JA
703/* Define if you have the killpg function. */
704#undef HAVE_KILLPG
705
b72432fd 706/* Define if you have the lstat function. */
ccc6cda3
JA
707#undef HAVE_LSTAT
708
0001803f
CR
709/* Define if you have the locale_charset function. */
710#undef HAVE_LOCALE_CHARSET
711
b80f6443
JA
712/* Define if you have the mbrlen function. */
713#undef HAVE_MBRLEN
714
715/* Define if you have the mbrtowc function. */
716#undef HAVE_MBRTOWC
717
0001803f
CR
718/* Define if you have the mbscasecmp function. */
719#undef HAVE_MBSCASECMP
720
721/* Define if you have the mbschr function. */
722#undef HAVE_MBSCHR
723
3185942a
JA
724/* Define if you have the mbscmp function. */
725#undef HAVE_MBSCMP
726
495aee44
CR
727/* Define if you have the mbsnrtowcs function. */
728#undef HAVE_MBSNRTOWCS
729
7117c2d2
JA
730/* Define if you have the mbsrtowcs function. */
731#undef HAVE_MBSRTOWCS
732
28ef6c31
JA
733/* Define if you have the memmove function. */
734#undef HAVE_MEMMOVE
735
7117c2d2
JA
736/* Define if you have the memset function. */
737#undef HAVE_MEMSET
738
28ef6c31
JA
739/* Define if you have the mkfifo function. */
740#undef HAVE_MKFIFO
741
a0c0a00f
CR
742/* Define if you have the mkstemp function. */
743#undef HAVE_MKSTEMP
744
28ef6c31
JA
745/* Define if you have the pathconf function. */
746#undef HAVE_PATHCONF
747
a0c0a00f
CR
748/* Define if you have the pselect function. */
749#undef HAVE_PSELECT
750
ccc6cda3
JA
751/* Define if you have the putenv function. */
752#undef HAVE_PUTENV
753
95732b49
JA
754/* Define if you have the raise function. */
755#undef HAVE_RAISE
756
a0c0a00f
CR
757/* Define if you have the random function. */
758#undef HAVE_RANDOM
759
28ef6c31
JA
760/* Define if you have the readlink function. */
761#undef HAVE_READLINK
762
b80f6443
JA
763/* Define if you have the regcomp function. */
764#undef HAVE_REGCOMP
765
766/* Define if you have the regexec function. */
767#undef HAVE_REGEXEC
768
b72432fd
JA
769/* Define if you have the rename function. */
770#undef HAVE_RENAME
771
772/* Define if you have the sbrk function. */
773#undef HAVE_SBRK
774
ccc6cda3
JA
775/* Define if you have the select function. */
776#undef HAVE_SELECT
777
778/* Define if you have the setdtablesize function. */
779#undef HAVE_SETDTABLESIZE
780
781/* Define if you have the setenv function. */
782#undef HAVE_SETENV
783
3185942a
JA
784/* Define if you have the setitimer function. */
785#undef HAVE_SETITIMER
786
ccc6cda3
JA
787/* Define if you have the setlinebuf function. */
788#undef HAVE_SETLINEBUF
789
790/* Define if you have the setlocale function. */
791#undef HAVE_SETLOCALE
792
28ef6c31
JA
793/* Define if you have the setostype function. */
794#undef HAVE_SETOSTYPE
795
0628567a
JA
796/* Define if you have the setregid function. */
797#undef HAVE_SETREGID
798#undef HAVE_DECL_SETREGID
799
bb70624e
JA
800/* Define if you have the setvbuf function. */
801#undef HAVE_SETVBUF
802
803/* Define if you have the siginterrupt function. */
ccc6cda3
JA
804#undef HAVE_SIGINTERRUPT
805
28ef6c31
JA
806/* Define if you have the POSIX.1-style sigsetjmp function. */
807#undef HAVE_POSIX_SIGSETJMP
808
f73dda09
JA
809/* Define if you have the snprintf function. */
810#undef HAVE_SNPRINTF
811
ccc6cda3
JA
812/* Define if you have the strcasecmp function. */
813#undef HAVE_STRCASECMP
814
0001803f
CR
815/* Define if you have the strcasestr function. */
816#undef HAVE_STRCASESTR
817
ccc6cda3
JA
818/* Define if you have the strchr function. */
819#undef HAVE_STRCHR
820
495aee44
CR
821/* Define if you have the strchrnul function. */
822#undef HAVE_STRCHRNUL
823
28ef6c31
JA
824/* Define if you have the strcoll function. */
825#undef HAVE_STRCOLL
826
ccc6cda3
JA
827/* Define if you have the strerror function. */
828#undef HAVE_STRERROR
829
7117c2d2
JA
830/* Define if you have the strftime function. */
831#undef HAVE_STRFTIME
832
95732b49
JA
833/* Define if you have the strnlen function. */
834#undef HAVE_STRNLEN
835
bb70624e
JA
836/* Define if you have the strpbrk function. */
837#undef HAVE_STRPBRK
838
b80f6443
JA
839/* Define if you have the strstr function. */
840#undef HAVE_STRSTR
841
cce855bc
JA
842/* Define if you have the strtod function. */
843#undef HAVE_STRTOD
844
f73dda09
JA
845/* Define if you have the strtoimax function. */
846#undef HAVE_STRTOIMAX
847
cce855bc
JA
848/* Define if you have the strtol function. */
849#undef HAVE_STRTOL
850
f73dda09
JA
851/* Define if you have the strtoll function. */
852#undef HAVE_STRTOLL
853
cce855bc
JA
854/* Define if you have the strtoul function. */
855#undef HAVE_STRTOUL
856
f73dda09
JA
857/* Define if you have the strtoull function. */
858#undef HAVE_STRTOULL
859
860/* Define if you have the strtoumax function. */
861#undef HAVE_STRTOUMAX
862
28ef6c31
JA
863/* Define if you have the strsignal function or macro. */
864#undef HAVE_STRSIGNAL
ccc6cda3
JA
865
866/* Define if you have the sysconf function. */
867#undef HAVE_SYSCONF
868
0001803f
CR
869/* Define if you have the syslog function. */
870#undef HAVE_SYSLOG
871
28ef6c31
JA
872/* Define if you have the tcgetattr function. */
873#undef HAVE_TCGETATTR
ccc6cda3 874
28ef6c31
JA
875/* Define if you have the tcgetpgrp function. */
876#undef HAVE_TCGETPGRP
877
28ef6c31
JA
878/* Define if you have the times function. */
879#undef HAVE_TIMES
ccc6cda3 880
0628567a
JA
881/* Define if you have the towlower function. */
882#undef HAVE_TOWLOWER
883
884/* Define if you have the towupper function. */
885#undef HAVE_TOWUPPER
886
28ef6c31 887/* Define if you have the ttyname function. */
bb70624e
JA
888#undef HAVE_TTYNAME
889
28ef6c31
JA
890/* Define if you have the tzset function. */
891#undef HAVE_TZSET
ccc6cda3 892
28ef6c31
JA
893/* Define if you have the ulimit function. */
894#undef HAVE_ULIMIT
ccc6cda3 895
28ef6c31
JA
896/* Define if you have the uname function. */
897#undef HAVE_UNAME
ccc6cda3 898
7117c2d2
JA
899/* Define if you have the unsetenv function. */
900#undef HAVE_UNSETENV
901
f73dda09
JA
902/* Define if you have the vasprintf function. */
903#undef HAVE_VASPRINTF
904
28ef6c31
JA
905/* Define if you have the vprintf function. */
906#undef HAVE_VPRINTF
ccc6cda3 907
f73dda09
JA
908/* Define if you have the vsnprintf function. */
909#undef HAVE_VSNPRINTF
910
28ef6c31
JA
911/* Define if you have the waitpid function. */
912#undef HAVE_WAITPID
ccc6cda3 913
28ef6c31
JA
914/* Define if you have the wait3 function. */
915#undef HAVE_WAIT3
ccc6cda3 916
0628567a
JA
917/* Define if you have the wcrtomb function. */
918#undef HAVE_WCRTOMB
919
920/* Define if you have the wcscoll function. */
921#undef HAVE_WCSCOLL
922
b80f6443
JA
923/* Define if you have the wcsdup function. */
924#undef HAVE_WCSDUP
925
0628567a
JA
926/* Define if you have the wctype function. */
927#undef HAVE_WCTYPE
b80f6443 928
495aee44
CR
929/* Define if you have the wcswidth function. */
930#undef HAVE_WCSWIDTH
931
7117c2d2
JA
932/* Define if you have the wcwidth function. */
933#undef HAVE_WCWIDTH
934
ac50fbac
CR
935/* and if it works */
936#undef WCWIDTH_BROKEN
937
28ef6c31
JA
938/* Presence of certain system include files. */
939
940/* Define if you have the <arpa/inet.h> header file. */
941#undef HAVE_ARPA_INET_H
ccc6cda3
JA
942
943/* Define if you have the <dirent.h> header file. */
944#undef HAVE_DIRENT_H
945
d166f048
JA
946/* Define if you have the <dlfcn.h> header file. */
947#undef HAVE_DLFCN_H
948
f73dda09
JA
949/* Define if you have the <grp.h> header file. */
950#undef HAVE_GRP_H
951
952/* Define if you have the <inttypes.h> header file. */
953#undef HAVE_INTTYPES_H
954
7117c2d2
JA
955/* Define if you have the <langinfo.h> header file. */
956#undef HAVE_LANGINFO_H
957
a0c0a00f
CR
958/* Define if you have the <libaudit.h> header file. */
959#undef HAVE_LIBAUDIT_H
960
28ef6c31
JA
961/* Define if you have the <libintl.h> header file. */
962#undef HAVE_LIBINTL_H
963
ccc6cda3
JA
964/* Define if you have the <limits.h> header file. */
965#undef HAVE_LIMITS_H
966
967/* Define if you have the <locale.h> header file. */
968#undef HAVE_LOCALE_H
969
a0c0a00f
CR
970/* Define if you have the <mbstr.h> header file. */
971#undef HAVE_MBSTR_H
972
ccc6cda3
JA
973/* Define if you have the <ndir.h> header file. */
974#undef HAVE_NDIR_H
975
28ef6c31
JA
976/* Define if you have the <netdh.h> header file. */
977#undef HAVE_NETDB_H
978
979/* Define if you have the <netinet/in.h> header file. */
980#undef HAVE_NETINET_IN_H
981
95732b49
JA
982/* Define if you have the <pwd.h> header file. */
983#undef HAVE_PWD_H
984
b80f6443
JA
985/* Define if you have the <regex.h> header file. */
986#undef HAVE_REGEX_H
987
ccc6cda3
JA
988/* Define if you have the <stdlib.h> header file. */
989#undef HAVE_STDLIB_H
990
991/* Define if you have the <stdarg.h> header file. */
992#undef HAVE_STDARG_H
993
994/* Define if you have the <string.h> header file. */
995#undef HAVE_STRING_H
996
f73dda09
JA
997/* Define if you have the <strings.h> header file. */
998#undef HAVE_STRINGS_H
999
ccc6cda3
JA
1000/* Define if you have the <memory.h> header file. */
1001#undef HAVE_MEMORY_H
1002
ac50fbac
CR
1003/* Define if you have the <stdbool.h> header file. */
1004#undef HAVE_STDBOOL_H
1005
28ef6c31
JA
1006/* Define if you have the <stddef.h> header file. */
1007#undef HAVE_STDDEF_H
1008
f73dda09
JA
1009/* Define if you have the <stdint.h> header file. */
1010#undef HAVE_STDINT_H
1011
0001803f
CR
1012/* Define if you have the <syslog.h> header file. */
1013#undef HAVE_SYSLOG_H
1014
ccc6cda3
JA
1015/* Define if you have the <sys/dir.h> header file. */
1016#undef HAVE_SYS_DIR_H
1017
1018/* Define if you have the <sys/file.h> header file. */
1019#undef HAVE_SYS_FILE_H
1020
a0c0a00f
CR
1021/* Define if you have the <sys/ioctl.h> header file. */
1022#undef HAVE_SYS_IOCTL_H
1023
ccc6cda3
JA
1024/* Define if you have the <sys/ndir.h> header file. */
1025#undef HAVE_SYS_NDIR_H
1026
1027/* Define if you have the <sys/param.h> header file. */
1028#undef HAVE_SYS_PARAM_H
1029
1030/* Define if you have the <sys/pte.h> header file. */
1031#undef HAVE_SYS_PTE_H
1032
1033/* Define if you have the <sys/ptem.h> header file. */
1034#undef HAVE_SYS_PTEM_H
1035
1036/* Define if you have the <sys/resource.h> header file. */
1037#undef HAVE_SYS_RESOURCE_H
1038
1039/* Define if you have the <sys/select.h> header file. */
1040#undef HAVE_SYS_SELECT_H
1041
1042/* Define if you have the <sys/socket.h> header file. */
1043#undef HAVE_SYS_SOCKET_H
1044
b80f6443
JA
1045/* Define if you have the <sys/stat.h> header file. */
1046#undef HAVE_SYS_STAT_H
1047
ccc6cda3
JA
1048/* Define if you have the <sys/stream.h> header file. */
1049#undef HAVE_SYS_STREAM_H
1050
28ef6c31
JA
1051/* Define if you have <sys/time.h> */
1052#undef HAVE_SYS_TIME_H
1053
1054#undef TIME_WITH_SYS_TIME
1055
1056/* Define if you have <sys/times.h> */
1057#undef HAVE_SYS_TIMES_H
1058
b80f6443
JA
1059/* Define if you have the <sys/types.h> header file. */
1060#undef HAVE_SYS_TYPES_H
1061
28ef6c31
JA
1062/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
1063#undef HAVE_SYS_WAIT_H
1064
ccc6cda3
JA
1065/* Define if you have the <termcap.h> header file. */
1066#undef HAVE_TERMCAP_H
1067
1068/* Define if you have the <termio.h> header file. */
1069#undef HAVE_TERMIO_H
1070
1071/* Define if you have the <termios.h> header file. */
1072#undef HAVE_TERMIOS_H
1073
495aee44
CR
1074/* Define if you have the <ulimit.h> header file. */
1075#undef HAVE_ULIMIT_H
1076
ccc6cda3
JA
1077/* Define if you have the <unistd.h> header file. */
1078#undef HAVE_UNISTD_H
1079
1080/* Define if you have the <varargs.h> header file. */
1081#undef HAVE_VARARGS_H
1082
7117c2d2
JA
1083/* Define if you have the <wchar.h> header file. */
1084#undef HAVE_WCHAR_H
1085
1086/* Define if you have the <varargs.h> header file. */
1087#undef HAVE_WCTYPE_H
1088
28ef6c31 1089/* Presence of certain system libraries. */
bb70624e 1090
ccc6cda3
JA
1091#undef HAVE_LIBDL
1092
1093#undef HAVE_LIBSUN
1094
1095#undef HAVE_LIBSOCKET
1096
ac50fbac
CR
1097/* Are we running the GNU C library, version 2.1 or later? */
1098#undef GLIBC21
28ef6c31 1099
b72432fd
JA
1100/* Are we running SVR5 (UnixWare 7)? */
1101#undef SVR5
1102
ccc6cda3
JA
1103/* Are we running SVR4.2? */
1104#undef SVR4_2
1105
1106/* Are we running some version of SVR4? */
1107#undef SVR4
1108
28ef6c31
JA
1109/* Define if job control is unusable or unsupported. */
1110#undef JOB_CONTROL_MISSING
1111
ccc6cda3
JA
1112/* Do we need to define _KERNEL to get the RLIMIT_* defines from
1113 <sys/resource.h>? */
1114#undef RLIMIT_NEEDS_KERNEL
1115
f73dda09
JA
1116/* Number of bits in a file offset, on hosts where this is settable. */
1117#undef _FILE_OFFSET_BITS
1118
1119/* Define for large files on AIX-style hosts. */
1120#undef _LARGE_FILES
1121
d166f048
JA
1122/* Do strcoll(3) and strcmp(3) give different results in the default locale? */
1123#undef STRCOLL_BROKEN
1124
28ef6c31
JA
1125#undef DUP2_BROKEN
1126
1127#undef GETCWD_BROKEN
1128
b80f6443
JA
1129/* Additional defines for configuring lib/intl, maintained by autoscan/autoheader */
1130
1131/* Define if you have the <argz.h> header file. */
1132#undef HAVE_ARGZ_H
1133
1134/* Define if you have the <errno.h> header file. */
1135#undef HAVE_ERRNO_H
1136
1137/* Define if you have the <fcntl.h> header file. */
1138#undef HAVE_FCNTL_H
1139
1140/* Define if you have the <malloc.h> header file. */
1141#undef HAVE_MALLOC_H
1142
1143/* Define if you have the <stdio_ext.h> header file. */
1144#undef HAVE_STDIO_EXT_H
1145
1146/* Define if you have the `dcgettext' function. */
1147#undef HAVE_DCGETTEXT
1148
f1be666c
JA
1149/* Define if you have the `localeconv' function. */
1150#undef HAVE_LOCALECONV
1151
b80f6443
JA
1152/* Define if your system has a working `malloc' function. */
1153/* #undef HAVE_MALLOC */
1154
1155/* Define if you have the `mempcpy' function. */
1156#undef HAVE_MEMPCPY
1157
1158/* Define if you have a working `mmap' system call. */
1159#undef HAVE_MMAP
1160
1161/* Define if you have the `munmap' function. */
1162#undef HAVE_MUNMAP
1163
1164/* Define if you have the `nl_langinfo' function. */
1165#undef HAVE_NL_LANGINFO
1166
1167/* Define if you have the `stpcpy' function. */
1168#undef HAVE_STPCPY
1169
1170/* Define if you have the `strcspn' function. */
1171#undef HAVE_STRCSPN
1172
1173/* Define if you have the `strdup' function. */
1174#undef HAVE_STRDUP
1175
1176/* Define if you have the `__argz_count' function. */
1177#undef HAVE___ARGZ_COUNT
1178
1179/* Define if you have the `__argz_next' function. */
1180#undef HAVE___ARGZ_NEXT
1181
1182/* Define if you have the `__argz_stringify' function. */
1183#undef HAVE___ARGZ_STRINGIFY
1184
1185/* End additions for lib/intl */
1186
b72432fd 1187#include "config-bot.h"
ccc6cda3
JA
1188
1189#endif /* _CONFIG_H_ */