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