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