Imported from ../bash-2.05a.tar.gz.
[platform/upstream/bash.git] / config.h.in
1 /* config.h -- Configuration file for bash. */
2
3 /* Copyright (C) 1987-2001 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 it
8    under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    Bash is distributed in the hope that it will be useful, but WITHOUT
13    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15    License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with Bash; see the file COPYING.  If not, write to the Free
19    Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
20
21 #ifndef _CONFIG_H_
22 #define _CONFIG_H_
23
24 /* Configuration feature settings controllable by autoconf. */
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
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.
71    This requires that V9_ECHO be defined. */
72 #undef DEFAULT_ECHO_TO_XPG
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
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
122 /* Define ARITH_FOR_COMMAND if you want the ksh93-style
123         for (( init; test; step )) do list; done
124    arithmetic for command. */
125 #undef ARITH_FOR_COMMAND
126
127 /* Define NETWORK_REDIRECTIONS if you want /dev/(tcp|udp)/host/port to open
128    socket connections when used in redirections */
129 #undef NETWORK_REDIRECTIONS
130
131 /* Define PROGRAMMABLE_COMPLETION for the programmable completion features
132    and the complete builtin. */
133 #undef PROGRAMMABLE_COMPLETION
134
135 /* Define AFS if you are using Transarc's AFS. */
136 #undef AFS
137
138 /* End of configuration settings controllable by autoconf. */
139 /* Other settable options appear in config-top.h. */
140
141 #include "config-top.h"
142
143 /* Beginning of autoconf additions. */
144
145 /* Characteristics of the C compiler */
146 #undef const
147
148 #undef inline
149
150 /* Define if cpp supports the ANSI-C stringizing `#' operator */
151 #undef HAVE_STRINGIZE
152
153 /* Define if the compiler supports `long double' variables. */
154 #undef HAVE_LONG_DOUBLE
155
156 #undef PROTOTYPES
157
158 #undef __CHAR_UNSIGNED__
159
160 /* Define if the compiler supports `long long' variables. */
161 #undef HAVE_LONG_LONG
162
163 #undef HAVE_UNSIGNED_LONG_LONG
164
165 /* The number of bytes in a int.  */
166 #undef SIZEOF_INT
167
168 /* The number of bytes in a long.  */
169 #undef SIZEOF_LONG
170
171 /* The number of bytes in a pointer to char.  */
172 #undef SIZEOF_CHAR_P
173
174 /* The number of bytes in a double (hopefully 8). */
175 #undef SIZEOF_DOUBLE
176
177 /* The number of bytes in a `long long', if we have one. */
178 #undef SIZEOF_LONG_LONG
179
180 /* System paths */
181
182 #define DEFAULT_MAIL_DIRECTORY "/usr/spool/mail"
183
184 /* Characteristics of the system's header files and libraries that affect
185    the compilation environment. */
186
187 /* Define if the system does not provide POSIX.1 features except
188    with this defined.  */
189 #undef _POSIX_1_SOURCE
190
191 /* Define if you need to in order for stat and other things to work.  */
192 #undef _POSIX_SOURCE
193
194 /* Define to use GNU libc extensions */
195 #undef _GNU_SOURCE
196
197 /* Define if you have the ANSI C header files.  */
198 #undef STDC_HEADERS
199
200 /* Memory management functions. */
201
202 /* Define if using the bash version of malloc in lib/malloc/malloc.c */
203 #undef USING_BASH_MALLOC
204
205 /* Define if using alloca.c.  */
206 #undef C_ALLOCA
207
208 /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
209    This function is required for alloca.c support on those systems.  */
210 #undef CRAY_STACKSEG_END
211
212 /* Define if you have alloca, as a function or macro.  */
213 #undef HAVE_ALLOCA
214
215 /* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
216 #undef HAVE_ALLOCA_H
217
218
219 /* SYSTEM TYPES */
220
221 /* Define to `long' if <sys/types.h> doesn't define.  */
222 #undef off_t
223
224 /* Define to `int' if <sys/types.h> doesn't define. */
225 #undef mode_t
226
227 /* Define to `int' if <signal.h> doesn't define. */
228 #undef sigset_t
229
230 /* Define to `int' if <sys/types.h> doesn't define.  */
231 #undef pid_t
232
233 /* Define to `short' if <sys/types.h> doesn't define.  */
234 #undef bits16_t
235
236 /* Define to `unsigned short' if <sys/types.h> doesn't define.  */
237 #undef u_bits16_t
238
239 /* Define to `int' if <sys/types.h> doesn't define.  */
240 #undef bits32_t
241
242 /* Define to `unsigned int' if <sys/types.h> doesn't define.  */
243 #undef u_bits32_t
244
245 /* Define to `double' if <sys/types.h> doesn't define. */
246 #undef bits64_t
247
248 /* Define to `unsigned int' if <sys/types.h> doesn't define. */
249 #undef u_int
250
251 /* Define to `unsigned long' if <sys/types.h> doesn't define.  */
252 #undef u_long
253
254 /* Define to `int' if <sys/types.h> doesn't define. */
255 #undef ptrdiff_t
256
257 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
258 #undef size_t
259
260 /* Define to `int' if <sys/types.h> doesn't define. */
261 #undef ssize_t
262
263 /* Define to `long' if <stdint.h> doesn't define. */
264 #undef intmax_t
265
266 /* Define to `unsigned long' if <stdint.h> doesn't define. */
267 #undef uintmax_t
268  
269 /* Define to `int' if <sys/types.h> doesn't define.  */
270 #undef uid_t
271
272 /* Define to `long' if <sys/types.h> doesn't define.  */
273 #undef clock_t
274
275 /* Define to `long' if <sys/types.h> doesn't define.  */
276 #undef time_t
277
278 /* Define to `int' if <sys/types.h> doesn't define.  */
279 #undef gid_t
280
281 /* Define to `unsigned int' if <sys/socket.h> doesn't define. */
282 #undef socklen_t
283
284 /* Define if you have quad_t in <sys/types.h>. */
285 #undef HAVE_QUAD_T
286
287 #undef RLIMTYPE
288
289 /* Define to the type of elements in the array set by `getgroups'.
290    Usually this is either `int' or `gid_t'.  */
291 #undef GETGROUPS_T
292
293 /* Characteristics of the machine archictecture. */
294
295 /* If using the C implementation of alloca, define if you know the
296    direction of stack growth for your system; otherwise it will be
297    automatically deduced at run-time.
298         STACK_DIRECTION > 0 => grows toward higher addresses
299         STACK_DIRECTION < 0 => grows toward lower addresses
300         STACK_DIRECTION = 0 => direction of growth unknown
301  */
302 #undef STACK_DIRECTION
303
304 /* Define if the machine architecture is big-endian. */
305 #undef WORDS_BIGENDIAN
306
307 /* Check for the presence of certain non-function symbols in the system
308    libraries. */
309
310 /* Define if `sys_siglist' is declared by <signal.h> or <unistd.h>.  */
311 #undef SYS_SIGLIST_DECLARED
312
313 /* Define if `_sys_siglist' is declared by <signal.h> or <unistd.h>.  */
314 #undef UNDER_SYS_SIGLIST_DECLARED
315
316 #undef HAVE_SYS_SIGLIST
317
318 #undef HAVE_UNDER_SYS_SIGLIST
319
320 #undef HAVE_SYS_ERRLIST
321
322 #undef HAVE_TIMEVAL
323
324
325 /* Characteristics of some of the system structures. */
326
327 #undef STRUCT_DIRENT_HAS_D_INO
328
329 #undef STRUCT_DIRENT_HAS_D_FILENO
330
331 #undef TIOCSTAT_IN_SYS_IOCTL
332
333 #undef FIONREAD_IN_SYS_IOCTL
334
335 #undef GWINSZ_IN_SYS_IOCTL
336
337 #undef STRUCT_WINSIZE_IN_SYS_IOCTL
338
339 #undef STRUCT_WINSIZE_IN_TERMIOS
340
341 #undef SPEED_T_IN_SYS_TYPES
342
343 #undef TERMIOS_LDISC
344
345 #undef TERMIO_LDISC
346
347 #undef HAVE_STRUCT_STAT_ST_BLOCKS
348
349 /* Characteristics of definitions in the system header files. */
350
351 #undef HAVE_GETPW_DECLS
352
353 #undef HAVE_RESOURCE
354
355 #undef HAVE_LIBC_FNM_EXTMATCH
356
357 #undef HAVE_DECL_CONFSTR
358
359 #undef HAVE_DECL_STRTOLD
360
361 #undef HAVE_DECL_SBRK
362
363 #undef HAVE_DECL_PRINTF
364
365 #undef HAVE_DECL_STRSIGNAL
366
367 /* These are checked with BASH_CHECK_DECL */
368
369 #undef HAVE_DECL_STRTOIMAX
370 #undef HAVE_DECL_STRTOL
371 #undef HAVE_DECL_STRTOLL
372 #undef HAVE_DECL_STRTOUL
373 #undef HAVE_DECL_STRTOULL
374 #undef HAVE_DECL_STRTOUMAX
375
376 /* Characteristics of system calls and C library functions. */
377
378 /* Define if the `getpgrp' function takes no argument.  */
379 #undef GETPGRP_VOID
380
381 #undef NAMED_PIPES_MISSING
382
383 #undef OPENDIR_NOT_ROBUST
384
385 #undef PGRP_PIPE
386
387 /* Define if the setvbuf function takes the buffering type as its second
388    argument and the buffer pointer as the third, as on System V
389    before release 3.  */
390 #undef SETVBUF_REVERSED
391
392 #undef STAT_MACROS_BROKEN
393
394 #undef ULIMIT_MAXFDS
395
396 #undef CAN_REDEFINE_GETENV
397
398 #undef HAVE_PRINTF_A_FORMAT
399
400 /* Characteristics of properties exported by the kernel. */
401
402 /* Define if the kernel can exec files beginning with #! */
403 #undef HAVE_HASH_BANG_EXEC
404
405 /* Define if you have the /dev/fd devices to map open files into the file system. */
406 #undef HAVE_DEV_FD
407
408 /* Defined to /dev/fd or /proc/self/fd (linux). */
409 #undef DEV_FD_PREFIX
410
411 /* Define if you have the /dev/stdin device. */
412 #undef HAVE_DEV_STDIN
413
414
415 /* Type and behavior of signal handling functions. */
416
417 /* Define as the return type of signal handlers (int or void).  */
418 #undef RETSIGTYPE
419
420 /* Define if return type of signal handlers is void */
421 #undef VOID_SIGHANDLER
422
423 #undef MUST_REINSTALL_SIGHANDLERS
424
425 #undef HAVE_BSD_SIGNALS
426
427 #undef HAVE_POSIX_SIGNALS
428
429 #undef HAVE_USG_SIGHOLD
430
431 #undef UNUSABLE_RT_SIGNALS
432
433
434 /* Presence of system and C library functions. */
435
436 /* Define if you have the asprintf function.  */
437 #undef HAVE_ASPRINTF
438
439 /* Define if you have the bcopy function.  */
440 #undef HAVE_BCOPY
441
442 /* Define if you have the bindtextdomain function.  */
443 #undef HAVE_BINDTEXTDOMAIN
444
445 /* Define if you have the bzero function.  */
446 #undef HAVE_BZERO
447
448 /* Define if you have the confstr function.  */
449 #undef HAVE_CONFSTR
450
451 /* Define if you have the dlclose function.  */
452 #undef HAVE_DLCLOSE
453
454 /* Define if you have the dlopen function.  */
455 #undef HAVE_DLOPEN
456
457 /* Define if you have the dlsym function.  */
458 #undef HAVE_DLSYM
459
460 /* Define if you don't have vprintf but do have _doprnt.  */
461 #undef HAVE_DOPRNT
462
463 /* Define if you have the dup2 function.  */
464 #undef HAVE_DUP2
465
466 /* Define if you have the getaddrinfo function. */
467 #undef HAVE_GETADDRINFO
468
469 /* Define if you have the getcwd function.  */
470 #undef HAVE_GETCWD
471
472 /* Define if you have the getdtablesize function.  */
473 #undef HAVE_GETDTABLESIZE
474
475 /* Define if you have the getgroups function.  */
476 #undef HAVE_GETGROUPS
477
478 /* Define if you have the gethostbyname function.  */
479 #undef HAVE_GETHOSTBYNAME
480
481 /* Define if you have the gethostname function.  */
482 #undef HAVE_GETHOSTNAME
483
484 /* Define if you have the getpagesize function.  */
485 #undef HAVE_GETPAGESIZE
486
487 /* Define if you have the getpeername function.  */
488 #undef HAVE_GETPEERNAME
489
490 /* Define if you have the getrlimit function.  */
491 #undef HAVE_GETRLIMIT
492
493 /* Define if you have the getrusage function.  */
494 #undef HAVE_GETRUSAGE
495
496 /* Define if you have the getservbyname function.  */
497 #undef HAVE_GETSERVBYNAME
498
499 /* Define if you have the gettext function. */
500 #undef HAVE_GETTEXT
501
502 /* Define if you have the gettimeofday function.  */
503 #undef HAVE_GETTIMEOFDAY
504
505 /* Define if you have the getwd function.  */
506 #undef HAVE_GETWD
507
508 /* Define if you have the inet_aton function.  */
509 #undef HAVE_INET_ATON
510
511 /* Define if you have the isascii function. */
512 #undef HAVE_ISASCII
513
514 /* Define if you have the isblank function.  */
515 #undef HAVE_ISBLANK
516
517 /* Define if you have the isgraph function.  */
518 #undef HAVE_ISGRAPH
519
520 /* Define if you have the isprint function.  */
521 #undef HAVE_ISPRINT
522
523 /* Define if you have the isspace function.  */
524 #undef HAVE_ISSPACE
525
526 /* Define if you have the isxdigit function.  */
527 #undef HAVE_ISXDIGIT
528
529 /* Define if you have the killpg function.  */
530 #undef HAVE_KILLPG
531
532 /* Define if you have the lstat function. */
533 #undef HAVE_LSTAT
534
535 /* Define if you have the memmove function.  */
536 #undef HAVE_MEMMOVE
537
538 /* Define if you have the mkfifo function.  */
539 #undef HAVE_MKFIFO
540
541 /* Define if you have the pathconf function. */
542 #undef HAVE_PATHCONF
543
544 /* Define if you have the putenv function.  */
545 #undef HAVE_PUTENV
546
547 /* Define if you have the readlink function. */
548 #undef HAVE_READLINK
549
550 /* Define if you have the rename function. */
551 #undef HAVE_RENAME
552
553 /* Define if you have the sbrk function. */
554 #undef HAVE_SBRK
555
556 /* Define if you have the select function.  */
557 #undef HAVE_SELECT
558
559 /* Define if you have the setdtablesize function.  */
560 #undef HAVE_SETDTABLESIZE
561
562 /* Define if you have the setenv function.  */
563 #undef HAVE_SETENV
564
565 /* Define if you have the setlinebuf function.  */
566 #undef HAVE_SETLINEBUF
567
568 /* Define if you have the setlocale function.  */
569 #undef HAVE_SETLOCALE
570
571 /* Define if you have the setostype function.  */
572 #undef HAVE_SETOSTYPE
573
574 /* Define if you have the setvbuf function.  */
575 #undef HAVE_SETVBUF
576
577 /* Define if you have the siginterrupt function.  */
578 #undef HAVE_SIGINTERRUPT
579
580 /* Define if you have the POSIX.1-style sigsetjmp function.  */
581 #undef HAVE_POSIX_SIGSETJMP
582
583 /* Define if you have the snprintf function.  */
584 #undef HAVE_SNPRINTF
585
586 /* Define if you have the strcasecmp function.  */
587 #undef HAVE_STRCASECMP
588
589 /* Define if you have the strchr function.  */
590 #undef HAVE_STRCHR
591
592 /* Define if you have the strcoll function.  */
593 #undef HAVE_STRCOLL
594
595 /* Define if you have the strerror function.  */
596 #undef HAVE_STRERROR
597
598 /* Define if you have the strpbrk function. */
599 #undef HAVE_STRPBRK
600
601 /* Define if you have the strtod function. */
602 #undef HAVE_STRTOD
603
604 /* Define if you have the strtoimax function. */
605 #undef HAVE_STRTOIMAX
606
607 /* Define if you have the strtol function. */
608 #undef HAVE_STRTOL
609
610 /* Define if you have the strtoll function. */
611 #undef HAVE_STRTOLL
612
613 /* Define if you have the strtoul function. */
614 #undef HAVE_STRTOUL
615
616 /* Define if you have the strtoull function. */
617 #undef HAVE_STRTOULL
618
619 /* Define if you have the strtoumax function. */
620 #undef HAVE_STRTOUMAX
621
622 /* Define if you have the strsignal function or macro. */
623 #undef HAVE_STRSIGNAL
624
625 /* Define if you have the sysconf function. */
626 #undef HAVE_SYSCONF
627
628 /* Define if you have the tcgetattr function.  */
629 #undef HAVE_TCGETATTR
630
631 /* Define if you have the tcgetpgrp function.  */
632 #undef HAVE_TCGETPGRP
633
634 /* Define if you have the textdomain function.  */
635 #undef HAVE_TEXTDOMAIN
636
637 /* Define if you have the times function.  */
638 #undef HAVE_TIMES
639
640 /* Define if you have the ttyname function.  */
641 #undef HAVE_TTYNAME
642
643 /* Define if you have the tzset function. */
644 #undef HAVE_TZSET
645
646 /* Define if you have the ulimit function. */
647 #undef HAVE_ULIMIT
648
649 /* Define if you have the uname function. */
650 #undef HAVE_UNAME
651
652 /* Define if you have the vasprintf function.  */
653 #undef HAVE_VASPRINTF
654
655 /* Define if you have the vprintf function.  */
656 #undef HAVE_VPRINTF
657
658 /* Define if you have the vsnprintf function.  */
659 #undef HAVE_VSNPRINTF
660
661 /* Define if you have the waitpid function. */
662 #undef HAVE_WAITPID
663
664 /* Define if you have the wait3 function.  */
665 #undef HAVE_WAIT3
666
667 /* Presence of certain system include files. */
668
669 /* Define if you have the <arpa/inet.h> header file. */
670 #undef HAVE_ARPA_INET_H
671
672 /* Define if you have the <dirent.h> header file.  */
673 #undef HAVE_DIRENT_H
674
675 /* Define if you have the <dlfcn.h> header file.  */
676 #undef HAVE_DLFCN_H
677
678 /* Define if you have the <grp.h> header file.  */
679 #undef HAVE_GRP_H
680
681 /* Define if you have the <inttypes.h> header file. */
682 #undef HAVE_INTTYPES_H
683
684 /* Define if you have the <libintl.h> header file. */
685 #undef HAVE_LIBINTL_H
686
687 /* Define if you have the <limits.h> header file.  */
688 #undef HAVE_LIMITS_H
689
690 /* Define if you have the <locale.h> header file.  */
691 #undef HAVE_LOCALE_H
692
693 /* Define if you have the <ndir.h> header file.  */
694 #undef HAVE_NDIR_H
695
696 /* Define if you have the <netdh.h> header file. */
697 #undef HAVE_NETDB_H
698
699 /* Define if you have the <netinet/in.h> header file. */
700 #undef HAVE_NETINET_IN_H
701
702 /* Define if you have the <stdlib.h> header file.  */
703 #undef HAVE_STDLIB_H
704
705 /* Define if you have the <stdarg.h> header file.  */
706 #undef HAVE_STDARG_H
707
708 /* Define if you have the <string.h> header file.  */
709 #undef HAVE_STRING_H
710
711 /* Define if you have the <strings.h> header file.  */
712 #undef HAVE_STRINGS_H
713
714 /* Define if you have the <memory.h> header file.  */
715 #undef HAVE_MEMORY_H
716
717 /* Define if you have the <stddef.h> header file. */
718 #undef HAVE_STDDEF_H
719
720 /* Define if you have the <stdint.h> header file. */
721 #undef HAVE_STDINT_H
722
723 /* Define if you have the <sys/dir.h> header file.  */
724 #undef HAVE_SYS_DIR_H
725
726 /* Define if you have the <sys/file.h> header file.  */
727 #undef HAVE_SYS_FILE_H
728
729 /* Define if you have the <sys/ndir.h> header file.  */
730 #undef HAVE_SYS_NDIR_H
731
732 /* Define if you have the <sys/param.h> header file.  */
733 #undef HAVE_SYS_PARAM_H
734
735 /* Define if you have the <sys/pte.h> header file.  */
736 #undef HAVE_SYS_PTE_H
737
738 /* Define if you have the <sys/ptem.h> header file.  */
739 #undef HAVE_SYS_PTEM_H
740
741 /* Define if you have the <sys/resource.h> header file.  */
742 #undef HAVE_SYS_RESOURCE_H
743
744 /* Define if you have the <sys/select.h> header file.  */
745 #undef HAVE_SYS_SELECT_H
746
747 /* Define if you have the <sys/socket.h> header file.  */
748 #undef HAVE_SYS_SOCKET_H
749
750 /* Define if you have the <sys/stream.h> header file.  */
751 #undef HAVE_SYS_STREAM_H
752
753 /* Define if you have <sys/time.h> */
754 #undef HAVE_SYS_TIME_H
755
756 #undef TIME_WITH_SYS_TIME
757
758 /* Define if you have <sys/times.h> */
759 #undef HAVE_SYS_TIMES_H
760
761 /* Define if you have <sys/wait.h> that is POSIX.1 compatible.  */
762 #undef HAVE_SYS_WAIT_H
763
764 /* Define if you have the <termcap.h> header file.  */
765 #undef HAVE_TERMCAP_H
766
767 /* Define if you have the <termio.h> header file.  */
768 #undef HAVE_TERMIO_H
769
770 /* Define if you have the <termios.h> header file.  */
771 #undef HAVE_TERMIOS_H
772
773 /* Define if you have the <unistd.h> header file.  */
774 #undef HAVE_UNISTD_H
775
776 /* Define if you have the <varargs.h> header file.  */
777 #undef HAVE_VARARGS_H
778
779 /* Presence of certain system libraries. */
780
781 #undef HAVE_LIBDL
782
783 #undef HAVE_LIBSUN
784
785 #undef HAVE_LIBSOCKET
786
787
788 /* Define if on MINIX.  */
789 #undef _MINIX
790
791 /* Are we running SVR5 (UnixWare 7)? */
792 #undef SVR5
793
794 /* Are we running SVR4.2? */
795 #undef SVR4_2
796
797 /* Are we running some version of SVR4? */
798 #undef SVR4
799
800 /* Define if job control is unusable or unsupported. */
801 #undef JOB_CONTROL_MISSING
802
803 /* Do we need to define _KERNEL to get the RLIMIT_* defines from
804    <sys/resource.h>? */
805 #undef RLIMIT_NEEDS_KERNEL
806
807 /* Number of bits in a file offset, on hosts where this is settable. */
808 #undef _FILE_OFFSET_BITS
809
810 /* Define for large files on AIX-style hosts. */
811 #undef _LARGE_FILES
812
813 /* Do strcoll(3) and strcmp(3) give different results in the default locale? */
814 #undef STRCOLL_BROKEN
815
816 #undef DUP2_BROKEN
817
818 #undef GETCWD_BROKEN
819
820 #include "config-bot.h"
821
822 #endif /* _CONFIG_H_ */