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