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