1 1.1 elric /*********************************************************************** 2 1.1.1.2 christos * Copyright (c) 2009-2016, Secure Endpoints Inc. 3 1.1 elric * All rights reserved. 4 1.1 elric * 5 1.1 elric * Redistribution and use in source and binary forms, with or without 6 1.1 elric * modification, are permitted provided that the following conditions 7 1.1 elric * are met: 8 1.1 elric * 9 1.1 elric * - Redistributions of source code must retain the above copyright 10 1.1 elric * notice, this list of conditions and the following disclaimer. 11 1.1 elric * 12 1.1 elric * - Redistributions in binary form must reproduce the above copyright 13 1.1 elric * notice, this list of conditions and the following disclaimer in 14 1.1 elric * the documentation and/or other materials provided with the 15 1.1 elric * distribution. 16 1.1 elric * 17 1.1 elric * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 1.1 elric * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 1.1 elric * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 20 1.1 elric * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 21 1.1 elric * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 22 1.1 elric * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23 1.1 elric * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 24 1.1 elric * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 1.1 elric * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 26 1.1 elric * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 1.1 elric * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 28 1.1 elric * OF THE POSSIBILITY OF SUCH DAMAGE. 29 1.1 elric * 30 1.1 elric **********************************************************************/ 31 1.1 elric 32 1.1 elric #ifndef __CONFIG_H__ 33 1.1 elric #define __CONFIG_H__ 34 1.1 elric 35 1.1 elric #ifndef RCSID 36 1.1 elric #define RCSID(msg) \ 37 1.1 elric static const char *const rcsid[] = { (const char *)rcsid, "@(#)" msg } 38 1.1 elric #endif 39 1.1 elric 40 1.1 elric /* If this file is being included by a resource script, don't bother 41 1.1 elric with anything other than the version macros. */ 42 1.1 elric #ifndef RC_INVOKED 43 1.1 elric 44 1.1 elric #define MaxHostNameLen (64+4) 45 1.1 elric #define MaxPathLen MAX_PATH 46 1.1 elric 47 1.1 elric #ifndef MAXHOSTNAMELEN 48 1.1 elric #define MAXHOSTNAMELEN MaxHostNameLen 49 1.1 elric #endif 50 1.1 elric #ifndef MAXPATHLEN 51 1.1 elric #define MAXPATHLEN MaxPathLen 52 1.1 elric #endif 53 1.1 elric 54 1.1 elric #ifdef BUILD_KRB5_LIB 55 1.1 elric #ifndef KRB5_LIB 56 1.1 elric #ifdef _WIN32 57 1.1 elric #define KRB5_LIB_FUNCTION 58 1.1 elric #define KRB5_LIB_CALL __stdcall 59 1.1 elric #define KRB5_LIB_VARIABLE 60 1.1 elric #else 61 1.1 elric #define KRB5_LIB_FUNCTION 62 1.1 elric #define KRB5_LIB_CALL 63 1.1 elric #define KRB5_LIB_VARIABLE 64 1.1 elric #endif 65 1.1 elric #endif 66 1.1 elric #endif 67 1.1 elric 68 1.1 elric 69 1.1 elric #ifdef BUILD_ROKEN_LIB 70 1.1 elric #ifndef ROKEN_LIB 71 1.1 elric #ifdef _WIN32 72 1.1 elric #define ROKEN_LIB_FUNCTION 73 1.1 elric #define ROKEN_LIB_CALL __cdecl 74 1.1 elric #define ROKEN_LIB_VARIABLE 75 1.1 elric #else 76 1.1 elric #define ROKEN_LIB_FUNCTION 77 1.1 elric #define ROKEN_LIB_CALL 78 1.1 elric #define ROKEN_LIB_VARIABLE 79 1.1 elric #endif 80 1.1 elric #endif 81 1.1 elric #endif 82 1.1 elric 83 1.1 elric 84 1.1 elric #ifdef BUILD_GSSAPI_LIB 85 1.1 elric #ifndef GSSAPI_LIB 86 1.1 elric #ifdef _WIN32 87 1.1 elric #define GSSAPI_LIB_FUNCTION 88 1.1 elric #define GSSAPI_LIB_CALL __stdcall 89 1.1 elric #define GSSAPI_LIB_VARIABLE 90 1.1 elric #else 91 1.1 elric #define GSSAPI_LIB_FUNCTION 92 1.1 elric #define GSSAPI_LIB_CALL 93 1.1 elric #define GSSAPI_LIB_VARIABLE 94 1.1 elric #endif 95 1.1 elric #endif 96 1.1 elric #endif 97 1.1 elric 98 1.1 elric /* Feature macros */ 99 1.1 elric 100 1.1 elric @FEATURE_DEFS@ 101 1.1 elric 102 1.1 elric /* Define is backslashes act as path name delimiters */ 103 1.1 elric #define BACKSLASH_PATH_DELIM 1 104 1.1 elric 105 1.1 elric /* Path separator character */ 106 1.1 elric #define PATH_SEP ";" 107 1.1 elric 108 1.1 elric /* Define if you want to use DES encryption in telnet. */ 109 1.1 elric #define DES_ENCRYPTION 1 110 1.1 elric 111 1.1 elric /* Define this if you want support for broken ENV_{VAR,VAL} telnets. */ 112 1.1 elric /* #undef ENV_HACK */ 113 1.1 elric 114 1.1 elric /* define if prototype of gethostbyaddr is compatible with struct hostent 115 1.1 elric *gethostbyaddr(const void *, size_t, int) */ 116 1.1 elric /* #undef GETHOSTBYADDR_PROTO_COMPATIBLE */ 117 1.1 elric 118 1.1 elric /* define if prototype of gethostbyname is compatible with struct hostent 119 1.1 elric *gethostbyname(const char *) */ 120 1.1 elric #define GETHOSTBYNAME_PROTO_COMPATIBLE 1 121 1.1 elric 122 1.1 elric /* define if prototype of getservbyname is compatible with struct servent 123 1.1 elric *getservbyname(const char *, const char *) */ 124 1.1 elric #define GETSERVBYNAME_PROTO_COMPATIBLE 1 125 1.1 elric 126 1.1 elric /* define if prototype of getsockname is compatible with int getsockname(int, 127 1.1 elric struct sockaddr*, socklen_t*) */ 128 1.1 elric /* #undef GETSOCKNAME_PROTO_COMPATIBLE */ 129 1.1 elric 130 1.1 elric /* Define if you have the `altzone' variable. */ 131 1.1 elric /* #undef HAVE_ALTZONE */ 132 1.1 elric 133 1.1 elric /* Define to 1 if you have the `arc4random' function. */ 134 1.1 elric /* #undef HAVE_ARC4RANDOM */ 135 1.1 elric 136 1.1 elric /* Define to 1 if you have the <arpa/inet.h> header file. */ 137 1.1 elric /* #undef HAVE_ARPA_INET_H */ 138 1.1 elric 139 1.1 elric /* Define to 1 if you have the <arpa/nameser.h> header file. */ 140 1.1 elric /* #undef HAVE_ARPA_NAMESER_H */ 141 1.1 elric 142 1.1 elric /* Define to 1 if you have the <arpa/telnet.h> header file. */ 143 1.1 elric /* #undef HAVE_ARPA_TELNET_H */ 144 1.1 elric 145 1.1 elric /* Define to 1 if you have the <asl.h> header file. */ 146 1.1 elric /* #undef HAVE_ASL_H */ 147 1.1 elric 148 1.1 elric /* Define to 1 if you have the `asnprintf' function. */ 149 1.1 elric /* #undef HAVE_ASNPRINTF */ 150 1.1 elric 151 1.1 elric /* Define to 1 if you have the `asprintf' function. */ 152 1.1 elric /* #undef HAVE_ASPRINTF */ 153 1.1 elric 154 1.1 elric /* Define to 1 if you have the `atexit' function. */ 155 1.1 elric #define HAVE_ATEXIT 1 156 1.1 elric 157 1.1 elric /* Define to 1 if you have the <bind/bitypes.h> header file. */ 158 1.1 elric /* #undef HAVE_BIND_BITYPES_H */ 159 1.1 elric 160 1.1 elric /* Define to 1 if you have the <bsdsetjmp.h> header file. */ 161 1.1 elric /* #undef HAVE_BSDSETJMP_H */ 162 1.1 elric 163 1.1 elric /* Define to 1 if you have the `bswap16' function. */ 164 1.1 elric /* #undef HAVE_BSWAP16 */ 165 1.1 elric 166 1.1 elric /* Define to 1 if you have the `bswap32' function. */ 167 1.1 elric /* #undef HAVE_BSWAP32 */ 168 1.1 elric 169 1.1 elric /* Define to 1 if you have the <capability.h> header file. */ 170 1.1 elric /* #undef HAVE_CAPABILITY_H */ 171 1.1 elric 172 1.1 elric /* Define to 1 if you have the `cap_set_proc' function. */ 173 1.1 elric /* #undef HAVE_CAP_SET_PROC */ 174 1.1 elric 175 1.1 elric /* Define to 1 if you have the `cgetent' function. */ 176 1.1 elric /* #undef HAVE_CGETENT */ 177 1.1 elric 178 1.1 elric /* Define if the system defines 'CHAR' type */ 179 1.1 elric #define HAVE_CHAR 1 180 1.1 elric 181 1.1 elric /* Define if you have the function `chown'. */ 182 1.1 elric #define HAVE_CHOWN 1 183 1.1 elric 184 1.1 elric /* Define if you have the function `closefrom'. */ 185 1.1 elric /* #undef HAVE_CLOSEFROM */ 186 1.1 elric 187 1.1 elric /* Define to 1 if you have the <config.h> header file. */ 188 1.1 elric /* #undef HAVE_CONFIG_H */ 189 1.1 elric 190 1.1 elric /* Define if <conio.h> is present on the system is should be used for 191 1.1 elric handling low level console operations. */ 192 1.1 elric #define HAVE_CONIO_H 193 1.1 elric 194 1.1 elric /* Define if you have the function `copyhostent'. */ 195 1.1 elric /* #undef HAVE_COPYHOSTENT */ 196 1.1 elric 197 1.1 elric /* Define to 1 if you have the `crypt' function. */ 198 1.1 elric /* #undef HAVE_CRYPT */ 199 1.1 elric 200 1.1 elric /* Define to 1 if you have the <crypt.h> header file. */ 201 1.1 elric /* #ndef HAVE_CRYPT_H */ 202 1.1 elric 203 1.1 elric /* Define to 1 if you have the <curses.h> header file. */ 204 1.1 elric /* #undef HAVE_CURSES_H */ 205 1.1 elric 206 1.1 elric /* Define if you have the function `daemon'. */ 207 1.1 elric /* #define HAVE_DAEMON 1 */ 208 1.1 elric 209 1.1 elric /* define if you have a berkeley db1/2 library */ 210 1.1 elric /* #undef HAVE_DB1 */ 211 1.1 elric 212 1.1 elric /* define if you have a berkeley db3/4 library */ 213 1.1 elric /* #define HAVE_DB3 1 */ 214 1.1 elric 215 1.1 elric /* Define to 1 if you have the <db3/db.h> header file. */ 216 1.1 elric /* #undef HAVE_DB3_DB_H */ 217 1.1 elric 218 1.1 elric /* Define to 1 if you have the <db4/db.h> header file. */ 219 1.1 elric /* #define HAVE_DB4_DB_H 1 */ 220 1.1 elric 221 1.1 elric /* Define to 1 if you have the `dbm_firstkey' function. */ 222 1.1 elric /* #define HAVE_DBM_FIRSTKEY 1 */ 223 1.1 elric 224 1.1 elric /* Define to 1 if you have the <dbm.h> header file. */ 225 1.1 elric /* #undef HAVE_DBM_H */ 226 1.1 elric 227 1.1 elric /* Define to 1 if you have the `dbopen' function. */ 228 1.1 elric /* #undef HAVE_DBOPEN */ 229 1.1 elric 230 1.1 elric /* Define to 1 if you have the <db_185.h> header file. */ 231 1.1 elric /* #define HAVE_DB_185_H 1 */ 232 1.1 elric 233 1.1 elric /* Define to 1 if you have the `db_create' function. */ 234 1.1 elric /* #define HAVE_DB_CREATE 1 */ 235 1.1 elric 236 1.1 elric /* Define to 1 if you have the <db.h> header file. */ 237 1.1 elric /* #define HAVE_DB_H 1 */ 238 1.1 elric 239 1.1 elric /* define if you have ndbm compat in db */ 240 1.1 elric /* #define HAVE_DB_NDBM 1 */ 241 1.1 elric 242 1.1 elric /* Define to 1 if you have the declaration of `altzone', and to 0 if you 243 1.1 elric don't. */ 244 1.1 elric /* #undef HAVE_DECL_ALTZONE */ 245 1.1 elric 246 1.1 elric /* Define to 1 if you have the declaration of `environ', and to 0 if you 247 1.1 elric don't. */ 248 1.1 elric #define HAVE_DECL_ENVIRON 1 249 1.1 elric 250 1.1 elric /* Define to 1 if you have the declaration of `h_errlist', and to 0 if you 251 1.1 elric don't. */ 252 1.1 elric /* #undef HAVE_DECL_H_ERRLIST */ 253 1.1 elric 254 1.1 elric /* Define to 1 if you have the declaration of `h_errno', and to 0 if you 255 1.1 elric don't. */ 256 1.1 elric #define HAVE_DECL_H_ERRNO 1 257 1.1 elric 258 1.1 elric /* Define to 1 if you have the declaration of `h_nerr', and to 0 if you don't. 259 1.1 elric */ 260 1.1 elric /* #undef HAVE_DECL_H_NERR */ 261 1.1 elric 262 1.1 elric /* Define to 1 if you have the declaration of `optarg', and to 0 if you don't. 263 1.1 elric */ 264 1.1 elric /* #undef HAVE_DECL_OPTARG */ 265 1.1 elric 266 1.1 elric /* Define to 1 if you have the declaration of `opterr', and to 0 if you don't. 267 1.1 elric */ 268 1.1 elric /* #undef HAVE_DECL_OPTERR */ 269 1.1 elric 270 1.1 elric /* Define to 1 if you have the declaration of `optind', and to 0 if you don't. 271 1.1 elric */ 272 1.1 elric /* #undef HAVE_DECL_OPTIND */ 273 1.1 elric 274 1.1 elric /* Define to 1 if you have the declaration of `optopt', and to 0 if you don't. 275 1.1 elric */ 276 1.1 elric /* #undef HAVE_DECL_OPTOPT */ 277 1.1 elric 278 1.1 elric /* Define to 1 if you have the declaration of `timezone', and to 0 if you 279 1.1 elric don't. */ 280 1.1 elric #define HAVE_DECL_TIMEZONE 1 281 1.1 elric 282 1.1 elric /* Define to 1 if you have the declaration of `_res', and to 0 if you don't. 283 1.1 elric */ 284 1.1 elric /* #undef HAVE_DECL__RES */ 285 1.1 elric 286 1.1 elric /* Define to 1 if you have the declaration of `__progname', and to 0 if you 287 1.1 elric don't. */ 288 1.1 elric #define HAVE_DECL___PROGNAME 0 289 1.1 elric 290 1.1 elric /* Define to 1 if you have the <dirent.h> header file. */ 291 1.1 elric /* MSVC doesn't provide a <dirent.h>, but we implement it in 292 1.1 elric lib/roken. */ 293 1.1 elric #define HAVE_DIRENT_H 1 294 1.1 elric 295 1.1 elric /* Define to 1 if you have the <dlfcn.h> header file. */ 296 1.1 elric /* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */ 297 1.1 elric #define HAVE_DLFCN_H 1 298 1.1 elric 299 1.1 elric /* Define to 1 if you have the `dlopen' function. */ 300 1.1 elric /* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */ 301 1.1 elric #define HAVE_DLOPEN 1 302 1.1 elric 303 1.1.1.2 christos /* Define to 1 if you have the `dladdr' function. */ 304 1.1.1.2 christos /* MSVC doesn't provide a <dlfcn.h>, but we implement it in lib/roken. */ 305 1.1.1.2 christos #define HAVE_DLADDR 1 306 1.1.1.2 christos 307 1.1 elric /* Define to 1 if you have the `dn_expand' function. */ 308 1.1 elric /* #undef HAVE_DN_EXPAND */ 309 1.1 elric 310 1.1 elric /* Define to 1 if you have the `door_create' function. */ 311 1.1 elric /* #undef HAVE_DOOR_CREATE */ 312 1.1 elric 313 1.1 elric /* Define if you have the function `ecalloc'. */ 314 1.1 elric /* #undef HAVE_ECALLOC */ 315 1.1 elric 316 1.1 elric /* Define to 1 if you have the `el_init' function. */ 317 1.1 elric /* #undef HAVE_EL_INIT */ 318 1.1 elric 319 1.1 elric /* Define if you have the function `emalloc'. */ 320 1.1 elric /* #undef HAVE_EMALLOC */ 321 1.1 elric 322 1.1 elric /* Define if you have the function `erealloc'. */ 323 1.1 elric /* #undef HAVE_EREALLOC */ 324 1.1 elric 325 1.1 elric /* Define if you have the function `err'. */ 326 1.1 elric #define HAVE_ERR 1 327 1.1 elric 328 1.1 elric /* Define to 1 if you have the <errno.h> header file. */ 329 1.1 elric #define HAVE_ERRNO_H 1 330 1.1 elric 331 1.1 elric /* Define if you have the function `errx'. */ 332 1.1 elric #define HAVE_ERRX 1 333 1.1 elric 334 1.1 elric /* Define to 1 if you have the <err.h> header file. */ 335 1.1 elric #define HAVE_ERR_H 1 336 1.1 elric 337 1.1 elric /* Define if you have the function `estrdup'. */ 338 1.1 elric /* #undef HAVE_ESTRDUP */ 339 1.1 elric 340 1.1 elric /* Define if you have the function `fchown'. */ 341 1.1 elric /* #undef HAVE_FCHOWN */ 342 1.1 elric 343 1.1 elric /* Define to 1 if you have the `fcntl' function. */ 344 1.1 elric /* #undef HAVE_FCNTL */ 345 1.1 elric 346 1.1 elric /* Define to 1 if you have the <fcntl.h> header file. */ 347 1.1 elric #define HAVE_FCNTL_H 1 348 1.1 elric 349 1.1 elric /* Define if you have the function `flock'. */ 350 1.1 elric /* #undef HAVE_FLOCK */ 351 1.1 elric 352 1.1 elric /* Define if you have the function `fnmatch'. */ 353 1.1 elric /* #undef HAVE_FNMATCH */ 354 1.1 elric 355 1.1 elric /* Define to 1 if you have the <fnmatch.h> header file. */ 356 1.1 elric /* #undef HAVE_FNMATCH_H */ 357 1.1 elric 358 1.1 elric /* Define if el_init takes four arguments. */ 359 1.1 elric /* #undef HAVE_FOUR_VALUED_EL_INIT */ 360 1.1 elric 361 1.1 elric /* Have -framework Security */ 362 1.1 elric /* #undef HAVE_FRAMEWORK_SECURITY */ 363 1.1 elric 364 1.1 elric /* Define to 1 if you have the `freeaddrinfo' function. */ 365 1.1 elric #define HAVE_FREEADDRINFO 1 366 1.1 elric 367 1.1 elric /* Define if you have the function `freehostent'. */ 368 1.1 elric /* #undef HAVE_FREEHOSTENT */ 369 1.1 elric 370 1.1 elric /* Define to 1 if you have the `gai_strerror' function. */ 371 1.1 elric #define HAVE_GAI_STRERROR 1 372 1.1 elric 373 1.1 elric /* Define to 1 if you have the <gdbm/ndbm.h> header file. */ 374 1.1 elric /* #undef HAVE_GDBM_NDBM_H */ 375 1.1 elric 376 1.1 elric /* Define to 1 if you have the `getaddrinfo' function. */ 377 1.1 elric #define HAVE_GETADDRINFO 1 378 1.1 elric 379 1.1 elric /* Define to 1 if you have the `getconfattr' function. */ 380 1.1 elric /* #undef HAVE_GETCONFATTR */ 381 1.1 elric 382 1.1 elric /* Define if you have the function `getcwd'. */ 383 1.1 elric #define HAVE_GETCWD 1 384 1.1 elric 385 1.1 elric /* Define if you have the function `getdtablesize'. */ 386 1.1 elric /* #define HAVE_GETDTABLESIZE 1 */ 387 1.1 elric 388 1.1 elric /* Define if you have the function `getegid'. */ 389 1.1 elric /* #define HAVE_GETEGID 1 */ 390 1.1 elric 391 1.1 elric /* Define if you have the function `geteuid'. */ 392 1.1 elric /* #define HAVE_GETEUID 1 */ 393 1.1 elric 394 1.1 elric /* Define if you have the function `getgid'. */ 395 1.1 elric /* #define HAVE_GETGID 1 */ 396 1.1 elric 397 1.1 elric /* Define to 1 if you have the `gethostbyname' function. */ 398 1.1 elric #define HAVE_GETHOSTBYNAME 1 399 1.1 elric 400 1.1 elric /* Define to 1 if you have the `gethostbyname2' function. */ 401 1.1 elric /* #undef HAVE_GETHOSTBYNAME2 */ 402 1.1 elric 403 1.1 elric /* Define if you have the function `gethostname'. */ 404 1.1 elric #define HAVE_GETHOSTNAME 1 405 1.1 elric 406 1.1 elric /* Define if you have the function `getifaddrs'. */ 407 1.1 elric /* #undef HAVE_GETIFADDRS */ 408 1.1 elric 409 1.1 elric /* Define if you have the function `getipnodebyaddr'. */ 410 1.1 elric /* #undef HAVE_GETIPNODEBYADDR */ 411 1.1 elric 412 1.1 elric /* Define if you have the function `getipnodebyname'. */ 413 1.1 elric /* #undef HAVE_GETIPNODEBYNAME */ 414 1.1 elric 415 1.1 elric /* Define to 1 if you have the `getlogin' function. */ 416 1.1 elric /* #define HAVE_GETLOGIN 1 */ 417 1.1 elric 418 1.1 elric /* Define if you have a working getmsg. */ 419 1.1 elric /* #undef HAVE_GETMSG */ 420 1.1 elric 421 1.1 elric /* Define to 1 if you have the `getnameinfo' function. */ 422 1.1 elric #define HAVE_GETNAMEINFO 1 423 1.1 elric 424 1.1 elric /* Define if you have the function `getopt'. */ 425 1.1 elric /* #define HAVE_GETOPT 1 */ 426 1.1 elric 427 1.1 elric /* Define to 1 if you have the `getpagesize' function. */ 428 1.1 elric /* #define HAVE_GETPAGESIZE 1 */ 429 1.1 elric 430 1.1 elric /* Define to 1 if you have the `getpeereid' function. */ 431 1.1 elric /* #define HAVE_GETPEEREID 1 */ 432 1.1 elric 433 1.1 elric /* Define to 1 if you have the `getpeerucred' function. */ 434 1.1 elric /* #undef HAVE_GETPEERUCRED */ 435 1.1 elric 436 1.1 elric /* Define to 1 if you have the `getprogname' function. */ 437 1.1 elric /* #define HAVE_GETPROGNAME 1 */ 438 1.1 elric 439 1.1 elric /* Define to 1 if you have the `getpwnam_r' function. */ 440 1.1 elric /* #define HAVE_GETPWNAM_R 1 */ 441 1.1 elric 442 1.1 elric /* Define to 1 if you have the `getrlimit' function. */ 443 1.1 elric /* #define HAVE_GETRLIMIT 1 */ 444 1.1 elric 445 1.1 elric /* Define to 1 if you have the `getsockopt' function. */ 446 1.1 elric #define HAVE_GETSOCKOPT 1 447 1.1 elric 448 1.1 elric /* Define to 1 if you have the `getspnam' function. */ 449 1.1 elric /* #undef HAVE_GETSPNAM */ 450 1.1 elric 451 1.1 elric /* Define if you have the function `gettimeofday'. */ 452 1.1 elric /* #define HAVE_GETTIMEOFDAY 1 */ 453 1.1 elric 454 1.1 elric /* Define to 1 if you have the `getudbnam' function. */ 455 1.1 elric /* #undef HAVE_GETUDBNAM */ 456 1.1 elric 457 1.1 elric /* Define if you have the function `getuid'. */ 458 1.1 elric /* #define HAVE_GETUID 1 */ 459 1.1 elric 460 1.1 elric /* Define if you have the function `getusershell'. */ 461 1.1 elric /* #define HAVE_GETUSERSHELL 1 */ 462 1.1 elric 463 1.1 elric /* define if you have a glob() that groks GLOB_BRACE, GLOB_NOCHECK, 464 1.1 elric GLOB_QUOTE, GLOB_TILDE, and GLOB_LIMIT */ 465 1.1 elric /* #define HAVE_GLOB 1 */ 466 1.1 elric 467 1.1 elric /* Define to 1 if you have the `grantpt' function. */ 468 1.1 elric /* #define HAVE_GRANTPT 1 */ 469 1.1 elric 470 1.1 elric /* Define to 1 if you have the <grp.h> header file. */ 471 1.1 elric /* #define HAVE_GRP_H 1 */ 472 1.1 elric 473 1.1 elric /* Define to 1 if you have the `hstrerror' function. */ 474 1.1 elric /* #define HAVE_HSTRERROR 1 */ 475 1.1 elric 476 1.1 elric /* Define if you have the `h_errlist' variable. */ 477 1.1 elric /* #undef HAVE_H_ERRLIST */ 478 1.1 elric 479 1.1 elric /* Define if you have the `h_errno' variable. */ 480 1.1 elric /* #define HAVE_H_ERRNO 1 */ 481 1.1 elric 482 1.1 elric /* Define if you have the `h_nerr' variable. */ 483 1.1 elric /* #undef HAVE_H_NERR */ 484 1.1 elric 485 1.1 elric /* Define to 1 if you have the <ifaddrs.h> header file. */ 486 1.1 elric /* #undef HAVE_IFADDRS_H */ 487 1.1 elric 488 1.1 elric /* Define if you have the in6addr_loopback variable */ 489 1.1 elric /* #undef HAVE_IN6ADDR_LOOPBACK */ 490 1.1 elric 491 1.1 elric /* */ 492 1.1 elric #define HAVE_INET_ADDR 1 493 1.1 elric 494 1.1 elric /* define */ 495 1.1 elric /* #define HAVE_INET_ATON 1 */ 496 1.1 elric 497 1.1 elric /* define */ 498 1.1 elric /* #define HAVE_INET_NTOP 1 */ 499 1.1 elric 500 1.1 elric /* define */ 501 1.1 elric /* #define HAVE_INET_PTON 1 */ 502 1.1 elric 503 1.1 elric #if _WIN32_WINNT >= 0x0600 504 1.1 elric 505 1.1 elric #define HAVE_INET_NTOP 1 506 1.1 elric 507 1.1 elric #define HAVE_INET_PTON 1 508 1.1 elric 509 1.1 elric #endif 510 1.1 elric 511 1.1 elric /* Define if you have the function `initgroups'. */ 512 1.1 elric /* #define HAVE_INITGROUPS 1 */ 513 1.1 elric 514 1.1 elric /* Define to 1 if you have the `initstate' function. */ 515 1.1 elric /* #define HAVE_INITSTATE 1 */ 516 1.1 elric 517 1.1 elric /* Define if you have the function `innetgr'. */ 518 1.1 elric /* #undef HAVE_INNETGR */ 519 1.1 elric 520 1.1 elric /* Define to 1 if the system has the type `int16_t'. */ 521 1.1 elric /* #define HAVE_INT16_T 1 */ 522 1.1 elric 523 1.1 elric /* Define to 1 if the system has the type `int32_t'. */ 524 1.1 elric /* #define HAVE_INT32_T 1 */ 525 1.1 elric 526 1.1 elric /* Define to 1 if the system has the type `int64_t'. */ 527 1.1 elric /* #define HAVE_INT64_T 1 */ 528 1.1 elric 529 1.1 elric /* Define to 1 if the system has the type `int8_t'. */ 530 1.1 elric /* #define HAVE_INT8_T 1 */ 531 1.1 elric 532 1.1 elric /* Define to 1 if you have the <inttypes.h> header file. */ 533 1.1 elric /* #define HAVE_INTTYPES_H 1 */ 534 1.1 elric 535 1.1 elric /* Define to 1 if you have the <io.h> header file. */ 536 1.1 elric #define HAVE_IO_H 1 537 1.1 elric 538 1.1 elric /* Define if you have IPv6. */ 539 1.1 elric #define HAVE_IPV6 1 540 1.1 elric 541 1.1 elric /* Define if you have the function `iruserok'. */ 542 1.1 elric /* #define HAVE_IRUSEROK 1 */ 543 1.1 elric 544 1.1 elric /* Define to 1 if you have the `issetugid' function. */ 545 1.1 elric /* #undef HAVE_ISSETUGID */ 546 1.1 elric 547 1.1 elric /* Define if you want to use the Kerberos Credentials Manager. */ 548 1.1 elric /* #define HAVE_KCM 1 */ 549 1.1 elric 550 1.1 elric /* Define to 1 if you have the <libutil.h> header file. */ 551 1.1 elric /* #undef HAVE_LIBUTIL_H */ 552 1.1 elric 553 1.1 elric /* Define to 1 if you have the <limits.h> header file. */ 554 1.1 elric #define HAVE_LIMITS_H 1 555 1.1 elric 556 1.1 elric /* Define to 1 if you have the `loadquery' function. */ 557 1.1 elric /* #undef HAVE_LOADQUERY */ 558 1.1 elric 559 1.1 elric /* Define if you have the function `localtime_r'. */ 560 1.1 elric /* #define HAVE_LOCALTIME_R 1 */ 561 1.1 elric 562 1.1 elric /* Define to 1 if you have the <locale.h> header file. */ 563 1.1 elric #define HAVE_LOCALE_H 1 564 1.1 elric 565 1.1 elric /* Define to 1 if you have the `logout' function. */ 566 1.1 elric /* #define HAVE_LOGOUT 1 */ 567 1.1 elric 568 1.1 elric /* Define to 1 if you have the `logwtmp' function. */ 569 1.1 elric /* #define HAVE_LOGWTMP 1 */ 570 1.1 elric 571 1.1 elric /* Define to 1 if the system has the type `long long'. */ 572 1.1 elric #define HAVE_LONG_LONG 1 573 1.1 elric 574 1.1 elric /* Define if you have the function `lstat'. */ 575 1.1 elric /* #define HAVE_LSTAT 1 */ 576 1.1 elric 577 1.1 elric /* Define to 1 if you have the <maillock.h> header file. */ 578 1.1 elric /* #undef HAVE_MAILLOCK_H */ 579 1.1 elric 580 1.1 elric /* Define if you have the function `memmove'. */ 581 1.1 elric #define HAVE_MEMMOVE 1 582 1.1 elric 583 1.1 elric /* Define to 1 if you have the <memory.h> header file. */ 584 1.1 elric #define HAVE_MEMORY_H 1 585 1.1 elric 586 1.1 elric /* Define if you have the function `mkstemp'. */ 587 1.1 elric /* #define HAVE_MKSTEMP 1 */ 588 1.1 elric 589 1.1 elric /* Define to 1 if you have the `mktime' function. */ 590 1.1 elric #define HAVE_MKTIME 1 591 1.1 elric 592 1.1 elric /* Define to 1 if you have a working `mmap' system call. */ 593 1.1 elric /* #undef HAVE_MMAP */ 594 1.1 elric 595 1.1 elric /* define if you have a ndbm library */ 596 1.1 elric /* #undef HAVE_NDBM */ 597 1.1 elric 598 1.1 elric /* Define to 1 if you have the <ndbm.h> header file. */ 599 1.1 elric /* #undef HAVE_NDBM_H */ 600 1.1 elric 601 1.1 elric /* Define to 1 if you have the <netdb.h> header file. */ 602 1.1 elric /* #define HAVE_NETDB_H 1 */ 603 1.1 elric 604 1.1 elric /* Define to 1 if you have the <netgroup.h> header file. */ 605 1.1 elric /* #undef HAVE_NETGROUP_H */ 606 1.1 elric 607 1.1 elric /* Define to 1 if you have the <netinet6/in6.h> header file. */ 608 1.1 elric /* #undef HAVE_NETINET6_IN6_H */ 609 1.1 elric 610 1.1 elric /* Define to 1 if you have the <netinet6/in6_var.h> header file. */ 611 1.1 elric /* #undef HAVE_NETINET6_IN6_VAR_H */ 612 1.1 elric 613 1.1 elric /* Define to 1 if you have the <netinet/in6.h> header file. */ 614 1.1 elric /* #undef HAVE_NETINET_IN6_H */ 615 1.1 elric 616 1.1 elric /* Define to 1 if you have the <netinet/in6_machtypes.h> header file. */ 617 1.1 elric /* #undef HAVE_NETINET_IN6_MACHTYPES_H */ 618 1.1 elric 619 1.1 elric /* Define to 1 if you have the <netinet/in.h> header file. */ 620 1.1 elric /* #define HAVE_NETINET_IN_H 1 */ 621 1.1 elric 622 1.1.1.3 christos /* Define to 1 if you have the <netinet/tcp.h> header file. */ 623 1.1.1.3 christos /* #define HAVE_NETINET_TCP_H 1 */ 624 1.1.1.3 christos 625 1.1 elric /* Define to 1 if you have the <netinet/in_systm.h> header file. */ 626 1.1 elric /* #define HAVE_NETINET_IN_SYSTM_H 1 */ 627 1.1 elric 628 1.1 elric /* Define to 1 if you have the <netinet/ip.h> header file. */ 629 1.1 elric /* #define HAVE_NETINET_IP_H 1 */ 630 1.1 elric 631 1.1 elric /* Define to 1 if you have the <netinet/tcp.h> header file. */ 632 1.1 elric /* #define HAVE_NETINET_TCP_H 1 */ 633 1.1 elric 634 1.1 elric /* Define if you want to use Netinfo instead of krb5.conf. */ 635 1.1 elric /* #undef HAVE_NETINFO */ 636 1.1 elric 637 1.1 elric /* Define to 1 if you have the <netinfo/ni.h> header file. */ 638 1.1 elric /* #undef HAVE_NETINFO_NI_H */ 639 1.1 elric 640 1.1 elric /* Define to 1 if you have the <net/if.h> header file. */ 641 1.1 elric /* #define HAVE_NET_IF_H 1 */ 642 1.1 elric 643 1.1 elric /* Define if NDBM really is DB (creates files *.db) */ 644 1.1 elric /* #define HAVE_NEW_DB 1 */ 645 1.1 elric 646 1.1 elric /* Define to 1 if you have the `on_exit' function. */ 647 1.1 elric /* #define HAVE_ON_EXIT 1 */ 648 1.1 elric 649 1.1 elric /* Define to 1 if you have the '_onexit' function */ 650 1.1 elric #define HAVE__ONEXIT 1 651 1.1 elric 652 1.1 elric /* Define to 1 if you have the `openpty' function. */ 653 1.1 elric /* #define HAVE_OPENPTY 1 */ 654 1.1 elric 655 1.1.1.2 christos /* define to 1 to use openssl's libcrypto as a (default) backend for libhcrypto */ 656 1.1.1.2 christos /* #undef HAVE_HCRYPTO_W_OPENSSL */ 657 1.1 elric 658 1.1 elric /* Define to enable basic OSF C2 support. */ 659 1.1 elric /* #undef HAVE_OSFC2 */ 660 1.1 elric 661 1.1 elric /* Define to 1 if you have the <paths.h> header file. */ 662 1.1 elric /* #define HAVE_PATHS_H 1 */ 663 1.1 elric 664 1.1 elric /* Define to 1 if you have the `pidfile' function. */ 665 1.1 elric /* #undef HAVE_PIDFILE */ 666 1.1 elric 667 1.1 elric /* Define to 1 if you have the `poll' function. */ 668 1.1 elric /* #define HAVE_POLL 1 */ 669 1.1 elric 670 1.1 elric /* Define to 1 if you have the <poll.h> header file. */ 671 1.1 elric /* #define HAVE_POLL_H 1 */ 672 1.1 elric 673 1.1 elric /* Define to 1 if you have the <pthread.h> header file. */ 674 1.1 elric /* This option is added by the NTMakefile if we have a <pthread.h>. */ 675 1.1 elric /* #define HAVE_PTHREAD_H 1 */ 676 1.1 elric 677 1.1 elric /* Define to 1 if you have the `ptsname' function. */ 678 1.1 elric /* #define HAVE_PTSNAME 1 */ 679 1.1 elric 680 1.1 elric /* Define to 1 if you have the <pty.h> header file. */ 681 1.1 elric /* #define HAVE_PTY_H 1 */ 682 1.1 elric 683 1.1 elric /* Define if you have the function `putenv'. */ 684 1.1 elric #define HAVE_PUTENV 1 685 1.1 elric 686 1.1 elric /* Define to 1 if you have the <pwd.h> header file. */ 687 1.1 elric /* #define HAVE_PWD_H 1 */ 688 1.1 elric 689 1.1 elric /* Define to 1 if you have the `rand' function. */ 690 1.1 elric #define HAVE_RAND 1 691 1.1 elric 692 1.1 elric /* Define to 1 if you have the `random' function. */ 693 1.1 elric /* #define HAVE_RANDOM 1 */ 694 1.1 elric 695 1.1 elric /* Define if you have the function `rcmd'. */ 696 1.1 elric /* #define HAVE_RCMD 1 */ 697 1.1 elric 698 1.1 elric /* Define if you have a readline compatible library. */ 699 1.1 elric /* #define HAVE_READLINE 1 */ 700 1.1 elric 701 1.1 elric /* Define if you have the function `readv'. */ 702 1.1 elric /* #define HAVE_READV 1 */ 703 1.1 elric 704 1.1 elric /* Define if you have the function `recvmsg'. */ 705 1.1 elric /* #define HAVE_RECVMSG 1 */ 706 1.1 elric 707 1.1 elric /* Define to 1 if you have the <resolv.h> header file. */ 708 1.1 elric /* #undef HAVE_RESOLV_H */ 709 1.1 elric 710 1.1 elric /* Define to 1 if you have the `res_ndestroy' function. */ 711 1.1 elric /* #undef HAVE_RES_NDESTROY */ 712 1.1 elric 713 1.1 elric /* Define to 1 if you have the `res_nsearch' function. */ 714 1.1 elric /* #undef HAVE_RES_NSEARCH */ 715 1.1 elric 716 1.1 elric /* Define to 1 if you have the `res_search' function. */ 717 1.1 elric /* #undef HAVE_RES_SEARCH */ 718 1.1 elric 719 1.1 elric /* Define to 1 if you have the `revoke' function. */ 720 1.1 elric /* #define HAVE_REVOKE 1 */ 721 1.1 elric 722 1.1 elric /* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */ 723 1.1 elric /* #undef HAVE_RPCSVC_YPCLNT_H */ 724 1.1 elric 725 1.1 elric /* Define to 1 if you have the <sac.h> header file. */ 726 1.1 elric /* #undef HAVE_SAC_H */ 727 1.1 elric 728 1.1 elric /* Define to 1 if the system has the type `sa_family_t'. */ 729 1.1 elric /* #define HAVE_SA_FAMILY_T 1 */ 730 1.1 elric 731 1.1 elric /* Define to 1 if you have the <security/pam_modules.h> header file. */ 732 1.1 elric /* #undef HAVE_SECURITY_PAM_MODULES_H */ 733 1.1 elric 734 1.1 elric /* Define to 1 if you have the `select' function. */ 735 1.1 elric #define HAVE_SELECT 1 736 1.1 elric 737 1.1 elric /* Define if you have the function `sendmsg'. */ 738 1.1 elric /* #define HAVE_SENDMSG 1 */ 739 1.1 elric 740 1.1 elric /* Define if you have the function `setegid'. */ 741 1.1 elric /* #define HAVE_SETEGID 1 */ 742 1.1 elric 743 1.1 elric /* Define if you have the function `setenv'. */ 744 1.1 elric #define HAVE_SETENV 1 745 1.1 elric 746 1.1 elric /* Define if you have the function `seteuid'. */ 747 1.1 elric /* #define HAVE_SETEUID 1 */ 748 1.1 elric 749 1.1 elric /* Define to 1 if you have the `setitimer' function. */ 750 1.1 elric /* #define HAVE_SETITIMER 1 */ 751 1.1 elric 752 1.1 elric /* Define to 1 if you have the `setlim' function. */ 753 1.1 elric /* #undef HAVE_SETLIM */ 754 1.1 elric 755 1.1 elric /* Define to 1 if you have the `setlogin' function. */ 756 1.1 elric /* #undef HAVE_SETLOGIN */ 757 1.1 elric 758 1.1 elric /* Define to 1 if you have the `setpcred' function. */ 759 1.1 elric /* #undef HAVE_SETPCRED */ 760 1.1 elric 761 1.1 elric /* Define to 1 if you have the `setpgid' function. */ 762 1.1 elric /* #define HAVE_SETPGID 1 */ 763 1.1 elric 764 1.1 elric /* Define to 1 if you have the `setproctitle' function. */ 765 1.1 elric /* #undef HAVE_SETPROCTITLE */ 766 1.1 elric 767 1.1 elric /* Define to 1 if you have the `setprogname' function. */ 768 1.1 elric /* #define HAVE_SETPROGNAME 1 */ 769 1.1 elric 770 1.1 elric /* Define to 1 if you have the `setregid' function. */ 771 1.1 elric /* #define HAVE_SETREGID 1 */ 772 1.1 elric 773 1.1 elric /* Define to 1 if you have the `setresgid' function. */ 774 1.1 elric /* #undef HAVE_SETRESGID */ 775 1.1 elric 776 1.1 elric /* Define to 1 if you have the `setresuid' function. */ 777 1.1 elric /* #undef HAVE_SETRESUID */ 778 1.1 elric 779 1.1 elric /* Define to 1 if you have the `setreuid' function. */ 780 1.1 elric /* #define HAVE_SETREUID 1 */ 781 1.1 elric 782 1.1 elric /* Define to 1 if you have the `setsid' function. */ 783 1.1 elric /* #define HAVE_SETSID 1 */ 784 1.1 elric 785 1.1 elric /* Define to 1 if you have the `setsockopt' function. */ 786 1.1 elric #define HAVE_SETSOCKOPT 1 787 1.1 elric 788 1.1 elric /* Define to 1 if you have the `setstate' function. */ 789 1.1 elric /* #define HAVE_SETSTATE 1 */ 790 1.1 elric 791 1.1 elric /* Define to 1 if you have the `setutent' function. */ 792 1.1 elric /* #define HAVE_SETUTENT 1 */ 793 1.1 elric 794 1.1 elric /* Define to 1 if you have the `sgi_getcapabilitybyname' function. */ 795 1.1 elric /* #undef HAVE_SGI_GETCAPABILITYBYNAME */ 796 1.1 elric 797 1.1 elric /* Define to 1 if you have the <sgtty.h> header file. */ 798 1.1 elric /* #undef HAVE_SGTTY_H */ 799 1.1 elric 800 1.1 elric /* Define to 1 if you have the <shadow.h> header file. */ 801 1.1 elric /* #undef HAVE_SHADOW_H */ 802 1.1 elric 803 1.1 elric /* Define to 1 if you have the <siad.h> header file. */ 804 1.1 elric /* #undef HAVE_SIAD_H */ 805 1.1 elric 806 1.1 elric /* Define to 1 if you have the `sigaction' function. */ 807 1.1 elric /* #define HAVE_SIGACTION 1 */ 808 1.1 elric 809 1.1 elric /* Define to 1 if you have the <signal.h> header file. */ 810 1.1 elric #define HAVE_SIGNAL_H 1 811 1.1 elric 812 1.1 elric /* define if you have a working snprintf */ 813 1.1 elric /* snprintf() and vsnprintf() do exist. But the implementations are 814 1.1 elric not C99 compliant. */ 815 1.1 elric /* #define HAVE_SNPRINTF 1 */ 816 1.1 elric 817 1.1 elric /* Define to 1 if you have the `socket' function. */ 818 1.1 elric #define HAVE_SOCKET 1 819 1.1 elric 820 1.1 elric /* Define to 1 if the system has the type `socklen_t'. */ 821 1.1 elric #define HAVE_SOCKLEN_T 1 822 1.1 elric 823 1.1 elric /* Define to 1 if the system has the type `ssize_t'. */ 824 1.1 elric /* #define HAVE_SSIZE_T 1 */ 825 1.1 elric 826 1.1 elric /* Define to 1 if you have the <standards.h> header file. */ 827 1.1 elric /* #undef HAVE_STANDARDS_H */ 828 1.1 elric 829 1.1 elric /* Define to 1 if you have the <stdint.h> header file. */ 830 1.1 elric /* #define HAVE_STDINT_H 1 */ 831 1.1 elric 832 1.1 elric /* Define to 1 if you have the <stdlib.h> header file. */ 833 1.1 elric #define HAVE_STDLIB_H 1 834 1.1 elric 835 1.1 elric /* Define if you have the function `strcasecmp'. */ 836 1.1 elric #define HAVE_STRCASECMP 1 837 1.1 elric #define strcasecmp _stricmp 838 1.1 elric 839 1.1 elric /* Define if you have the function `strdup'. */ 840 1.1 elric #define HAVE_STRDUP 1 841 1.1 elric 842 1.1 elric /* Define if you have the function `strerror'. */ 843 1.1 elric #define HAVE_STRERROR 1 844 1.1 elric 845 1.1 elric /* Define if you have the function `strftime'. */ 846 1.1 elric #define HAVE_STRFTIME 1 847 1.1 elric 848 1.1 elric /* Define to 1 if you have the <strings.h> header file. */ 849 1.1 elric /* #define HAVE_STRINGS_H 1 */ 850 1.1 elric 851 1.1 elric /* Define to 1 if you have the <string.h> header file. */ 852 1.1 elric #define HAVE_STRING_H 1 853 1.1 elric 854 1.1 elric /* Define if you have the function `strlcat'. */ 855 1.1 elric /* #define HAVE_STRLCAT 1 */ 856 1.1 elric 857 1.1 elric /* Define if you have the function `strlcpy'. */ 858 1.1 elric /* #define HAVE_STRLCPY 1 */ 859 1.1 elric 860 1.1 elric /* Define if you have the function `strlwr'. */ 861 1.1 elric #define HAVE_STRLWR 1 862 1.1 elric 863 1.1 elric /* Define if you have the function `strncasecmp'. */ 864 1.1 elric #define HAVE_STRNCASECMP 1 865 1.1 elric #define strncasecmp _strnicmp 866 1.1 elric 867 1.1 elric /* Define if you have the function `strndup'. */ 868 1.1 elric /* #define HAVE_STRNDUP 1 */ 869 1.1 elric 870 1.1 elric /* Define if you have the function `strnlen'. */ 871 1.1 elric #define HAVE_STRNLEN 1 872 1.1 elric 873 1.1 elric /* Define to 1 if you have the <stropts.h> header file. */ 874 1.1 elric /* #undef HAVE_STROPTS_H */ 875 1.1 elric 876 1.1 elric /* Define if you have the function `strptime'. */ 877 1.1 elric /* #define HAVE_STRPTIME 1 */ 878 1.1 elric 879 1.1 elric /* Define if you have the function `strsep'. */ 880 1.1 elric /* #define HAVE_STRSEP 1 */ 881 1.1 elric 882 1.1 elric /* Define if you have the function `strsep_copy'. */ 883 1.1 elric /* #undef HAVE_STRSEP_COPY */ 884 1.1 elric 885 1.1 elric /* Define to 1 if you have the `strstr' function. */ 886 1.1 elric #define HAVE_STRSTR 1 887 1.1 elric 888 1.1 elric /* Define to 1 if you have the `strsvis' function. */ 889 1.1 elric /* #undef HAVE_STRSVIS */ 890 1.1 elric 891 1.1 elric /* Define if you have the function `strtok_r'. */ 892 1.1 elric /* #define HAVE_STRTOK_R 1 */ 893 1.1 elric 894 1.1.1.3 christos #if defined(__has_include) 895 1.1.1.3 christos # if __has_include(<corecrt.h>) 896 1.1.1.3 christos # define HAVE_UCRT 1 897 1.1.1.3 christos # endif 898 1.1.1.3 christos #endif 899 1.1.1.3 christos 900 1.1.1.3 christos #ifdef HAVE_UCRT 901 1.1.1.3 christos #define HAVE_STRTOLL 1 902 1.1.1.3 christos #define HAVE_STRTOULL 1 903 1.1.1.3 christos #endif 904 1.1.1.3 christos 905 1.1 elric /* Define to 1 if the system has the type `struct addrinfo'. */ 906 1.1 elric #define HAVE_STRUCT_ADDRINFO 1 907 1.1 elric 908 1.1 elric /* Define to 1 if the system has the type `struct ifaddrs'. */ 909 1.1 elric /* #undef HAVE_STRUCT_IFADDRS */ 910 1.1 elric 911 1.1 elric /* Define to 1 if the system has the type `struct iovec'. */ 912 1.1 elric /* #define HAVE_STRUCT_IOVEC 1 */ 913 1.1 elric 914 1.1 elric /* Define to 1 if the system has the type `struct msghdr'. */ 915 1.1 elric /* #define HAVE_STRUCT_MSGHDR 1 */ 916 1.1 elric 917 1.1 elric /* Define to 1 if the system has the type `struct sockaddr'. */ 918 1.1 elric #define HAVE_STRUCT_SOCKADDR 1 919 1.1 elric 920 1.1 elric /* Define if struct sockaddr has field sa_len. */ 921 1.1 elric /* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */ 922 1.1 elric 923 1.1 elric /* Define to 1 if the system has the type `struct sockaddr_storage'. */ 924 1.1 elric #define HAVE_STRUCT_SOCKADDR_STORAGE 1 925 1.1 elric 926 1.1 elric /* define if you have struct spwd */ 927 1.1 elric /* #undef HAVE_STRUCT_SPWD */ 928 1.1 elric 929 1.1 elric /* Define if struct tm has field tm_gmtoff. */ 930 1.1 elric /* #undef HAVE_STRUCT_TM_TM_GMTOFF */ 931 1.1 elric 932 1.1 elric /* Define if struct tm has field tm_zone. */ 933 1.1 elric /* #undef HAVE_STRUCT_TM_TM_ZONE */ 934 1.1 elric 935 1.1 elric /* define if struct winsize is declared in sys/termios.h */ 936 1.1 elric /* #define HAVE_STRUCT_WINSIZE 1 */ 937 1.1 elric 938 1.1 elric /* Define to 1 if you have the `strunvis' function. */ 939 1.1 elric /* #undef HAVE_STRUNVIS */ 940 1.1 elric 941 1.1 elric /* Define if you have the function `strupr'. */ 942 1.1 elric #define HAVE_STRUPR 1 943 1.1 elric 944 1.1 elric /* Define to 1 if you have the `strvis' function. */ 945 1.1 elric /* #undef HAVE_STRVIS */ 946 1.1 elric 947 1.1 elric /* Define to 1 if you have the `strvisx' function. */ 948 1.1 elric /* #undef HAVE_STRVISX */ 949 1.1 elric 950 1.1 elric /* Define to 1 if you have the `svis' function. */ 951 1.1 elric /* #undef HAVE_SVIS */ 952 1.1 elric 953 1.1 elric /* Define if you have the function `swab'. */ 954 1.1 elric #define HAVE_SWAB 1 955 1.1 elric 956 1.1 elric /* Define to 1 if you have the `sysconf' function. */ 957 1.1 elric /* #define HAVE_SYSCONF 1 */ 958 1.1 elric 959 1.1 elric /* Define to 1 if you have the `sysctl' function. */ 960 1.1 elric /* #undef HAVE_SYSCTL */ 961 1.1 elric 962 1.1 elric /* syslog is provided for _win32 in lib/roken */ 963 1.1 elric 964 1.1 elric /* Define to 1 if you have the `syslog' function. */ 965 1.1 elric #define HAVE_SYSLOG 1 966 1.1 elric 967 1.1 elric /* Define to 1 if you have the <syslog.h> header file. */ 968 1.1 elric #define HAVE_SYSLOG_H 1 969 1.1 elric 970 1.1 elric /* Define to 1 if you have the <sys/bitypes.h> header file. */ 971 1.1 elric /* #undef HAVE_SYS_BITYPES_H */ 972 1.1 elric 973 1.1 elric /* Define to 1 if you have the <sys/bswap.h> header file. */ 974 1.1 elric /* #undef HAVE_SYS_BSWAP_H */ 975 1.1 elric 976 1.1 elric /* Define to 1 if you have the <sys/capability.h> header file. */ 977 1.1 elric /* #undef HAVE_SYS_CAPABILITY_H */ 978 1.1 elric 979 1.1 elric /* Define to 1 if you have the <sys/category.h> header file. */ 980 1.1 elric /* #undef HAVE_SYS_CATEGORY_H */ 981 1.1 elric 982 1.1 elric /* Define to 1 if you have the <sys/file.h> header file. */ 983 1.1 elric /* #define HAVE_SYS_FILE_H 1 */ 984 1.1 elric 985 1.1 elric /* Define to 1 if you have the <sys/filio.h> header file. */ 986 1.1 elric /* #undef HAVE_SYS_FILIO_H */ 987 1.1 elric 988 1.1 elric /* Define to 1 if you have the <sys/ioccom.h> header file. */ 989 1.1 elric /* #undef HAVE_SYS_IOCCOM_H */ 990 1.1 elric 991 1.1 elric /* Define to 1 if you have the <sys/ioctl.h> header file. */ 992 1.1 elric /* #define HAVE_SYS_IOCTL_H 1 */ 993 1.1 elric 994 1.1 elric /* Define to 1 if you have the <sys/mman.h> header file. */ 995 1.1 elric /* #define HAVE_SYS_MMAN_H 1 */ 996 1.1 elric 997 1.1 elric /* Define to 1 if you have the <sys/param.h> header file. */ 998 1.1 elric /* #define HAVE_SYS_PARAM_H 1 */ 999 1.1 elric 1000 1.1 elric /* Define to 1 if you have the <sys/proc.h> header file. */ 1001 1.1 elric /* #undef HAVE_SYS_PROC_H */ 1002 1.1 elric 1003 1.1 elric /* Define to 1 if you have the <sys/ptyio.h> header file. */ 1004 1.1 elric /* #undef HAVE_SYS_PTYIO_H */ 1005 1.1 elric 1006 1.1 elric /* Define to 1 if you have the <sys/ptyvar.h> header file. */ 1007 1.1 elric /* #undef HAVE_SYS_PTYVAR_H */ 1008 1.1 elric 1009 1.1 elric /* Define to 1 if you have the <sys/pty.h> header file. */ 1010 1.1 elric /* #undef HAVE_SYS_PTY_H */ 1011 1.1 elric 1012 1.1 elric /* Define to 1 if you have the <sys/resource.h> header file. */ 1013 1.1 elric /* #define HAVE_SYS_RESOURCE_H 1 */ 1014 1.1 elric 1015 1.1 elric /* Define to 1 if you have the <sys/select.h> header file. */ 1016 1.1 elric /* #define HAVE_SYS_SELECT_H 1 */ 1017 1.1 elric 1018 1.1 elric /* Define to 1 if you have the <sys/socket.h> header file. */ 1019 1.1 elric /* #define HAVE_SYS_SOCKET_H 1 */ 1020 1.1 elric 1021 1.1 elric /* Define to 1 if you have the <sys/sockio.h> header file. */ 1022 1.1 elric /* #undef HAVE_SYS_SOCKIO_H */ 1023 1.1 elric 1024 1.1 elric /* Define to 1 if you have the <sys/stat.h> header file. */ 1025 1.1 elric #define HAVE_SYS_STAT_H 1 1026 1.1 elric 1027 1.1 elric /* Define to 1 if you have the <sys/stream.h> header file. */ 1028 1.1 elric /* #undef HAVE_SYS_STREAM_H */ 1029 1.1 elric 1030 1.1 elric /* Define to 1 if you have the <sys/stropts.h> header file. */ 1031 1.1 elric /* #undef HAVE_SYS_STROPTS_H */ 1032 1.1 elric 1033 1.1 elric /* Define to 1 if you have the <sys/strtty.h> header file. */ 1034 1.1 elric /* #undef HAVE_SYS_STRTTY_H */ 1035 1.1 elric 1036 1.1 elric /* Define to 1 if you have the <sys/str_tty.h> header file. */ 1037 1.1 elric /* #undef HAVE_SYS_STR_TTY_H */ 1038 1.1 elric 1039 1.1 elric /* Define to 1 if you have the <sys/syscall.h> header file. */ 1040 1.1 elric /* #undef HAVE_SYS_SYSCALL_H */ 1041 1.1 elric 1042 1.1 elric /* Define to 1 if you have the <sys/sysctl.h> header file. */ 1043 1.1 elric /* #undef HAVE_SYS_SYSCTL_H */ 1044 1.1 elric 1045 1.1 elric /* Define to 1 if you have the <sys/termio.h> header file. */ 1046 1.1 elric /* #define HAVE_SYS_TERMIO_H 1 */ 1047 1.1 elric 1048 1.1 elric /* Define to 1 if you have the <sys/timeb.h> header file. */ 1049 1.1 elric #define HAVE_SYS_TIMEB_H 1 1050 1.1 elric 1051 1.1 elric /* Define to 1 if you have the <sys/times.h> header file. */ 1052 1.1 elric /* #define HAVE_SYS_TIMES_H 1 */ 1053 1.1 elric 1054 1.1 elric /* Define to 1 if you have the <sys/time.h> header file. */ 1055 1.1 elric /* #define HAVE_SYS_TIME_H 1 */ 1056 1.1 elric 1057 1.1 elric /* Define to 1 if you have the <sys/tty.h> header file. */ 1058 1.1 elric /* #undef HAVE_SYS_TTY_H */ 1059 1.1 elric 1060 1.1 elric /* Define to 1 if you have the <sys/types.h> header file. */ 1061 1.1 elric #define HAVE_SYS_TYPES_H 1 1062 1.1 elric 1063 1.1 elric /* Define to 1 if you have the <sys/ucred.h> header file. */ 1064 1.1 elric /* #undef HAVE_SYS_UCRED_H */ 1065 1.1 elric 1066 1.1 elric /* Define to 1 if you have the <sys/uio.h> header file. */ 1067 1.1 elric /* #define HAVE_SYS_UIO_H 1 */ 1068 1.1 elric 1069 1.1 elric /* Define to 1 if you have the <sys/un.h> header file. */ 1070 1.1 elric /* #define HAVE_SYS_UN_H 1 */ 1071 1.1 elric 1072 1.1 elric /* Define to 1 if you have the <sys/utsname.h> header file. */ 1073 1.1 elric /* #define HAVE_SYS_UTSNAME_H 1 */ 1074 1.1 elric 1075 1.1 elric /* Define to 1 if you have the <sys/wait.h> header file. */ 1076 1.1 elric /* #define HAVE_SYS_WAIT_H 1 */ 1077 1.1 elric 1078 1.1 elric /* Define to 1 if you have the <termcap.h> header file. */ 1079 1.1 elric /* #define HAVE_TERMCAP_H 1 */ 1080 1.1 elric 1081 1.1 elric /* Define to 1 if you have the <termios.h> header file. */ 1082 1.1 elric /* #define HAVE_TERMIOS_H 1 */ 1083 1.1 elric 1084 1.1 elric /* Define to 1 if you have the <termio.h> header file. */ 1085 1.1 elric /* #define HAVE_TERMIO_H 1 */ 1086 1.1 elric 1087 1.1 elric /* Define to 1 if you have the <term.h> header file. */ 1088 1.1 elric /* #undef HAVE_TERM_H */ 1089 1.1 elric 1090 1.1 elric /* Define to 1 if you have the `tgetent' function. */ 1091 1.1 elric /* #define HAVE_TGETENT 1 */ 1092 1.1 elric 1093 1.1 elric /* Define if you have the function `timegm'. */ 1094 1.1 elric /* #define HAVE_TIMEGM 1 */ 1095 1.1 elric 1096 1.1 elric /* Define if you have the `timezone' variable. */ 1097 1.1 elric #define HAVE_TIMEZONE 1 1098 1.1 elric 1099 1.1 elric /* Define to 1 if you have the <time.h> header file. */ 1100 1.1 elric #define HAVE_TIME_H 1 1101 1.1 elric 1102 1.1 elric /* Define to 1 if you have the <tmpdir.h> header file. */ 1103 1.1 elric /* #undef HAVE_TMPDIR_H */ 1104 1.1 elric 1105 1.1 elric /* Define to 1 if you have the `ttyname' function. */ 1106 1.1 elric /* #define HAVE_TTYNAME 1 */ 1107 1.1 elric 1108 1.1 elric /* Define to 1 if you have the `ttyslot' function. */ 1109 1.1 elric /* #define HAVE_TTYSLOT 1 */ 1110 1.1 elric 1111 1.1 elric /* Define to 1 if you have the <udb.h> header file. */ 1112 1.1 elric /* #undef HAVE_UDB_H */ 1113 1.1 elric 1114 1.1 elric /* Define to 1 if the system has the type `uint16_t'. */ 1115 1.1 elric /* #define HAVE_UINT16_T 1 */ 1116 1.1 elric 1117 1.1 elric /* Define to 1 if the system has the type `uint32_t'. */ 1118 1.1 elric /* #define HAVE_UINT32_T 1 */ 1119 1.1 elric 1120 1.1 elric /* Define to 1 if the system has the type `uint64_t'. */ 1121 1.1 elric /* #define HAVE_UINT64_T 1 */ 1122 1.1 elric 1123 1.1 elric /* Define to 1 if the system has the type `uint8_t'. */ 1124 1.1 elric /* #define HAVE_UINT8_T 1 */ 1125 1.1 elric 1126 1.1 elric /* Define to 1 if the system has the type `uintptr_t'. */ 1127 1.1 elric #define HAVE_UINTPTR_T 1 1128 1.1 elric 1129 1.1 elric /* Define to 1 if you have the `umask' function. */ 1130 1.1 elric /* #define HAVE_UMASK 1 */ 1131 1.1 elric 1132 1.1 elric /* Define to 1 if you have the `uname' function. */ 1133 1.1 elric /* #define HAVE_UNAME 1 */ 1134 1.1 elric 1135 1.1 elric /* Define to 1 if you have the <unistd.h> header file. */ 1136 1.1 elric /* #define HAVE_UNISTD_H 1 */ 1137 1.1 elric 1138 1.1 elric /* Define to 1 if you have the `unlockpt' function. */ 1139 1.1 elric /* #define HAVE_UNLOCKPT 1 */ 1140 1.1 elric 1141 1.1 elric /* Define if you have the function `unsetenv'. */ 1142 1.1 elric /* #define HAVE_UNSETENV 1 */ 1143 1.1 elric 1144 1.1 elric /* Define to 1 if you have the `unvis' function. */ 1145 1.1 elric /* #undef HAVE_UNVIS */ 1146 1.1 elric 1147 1.1 elric /* Define to 1 if you have the <userconf.h> header file. */ 1148 1.1 elric /* #undef HAVE_USERCONF_H */ 1149 1.1 elric 1150 1.1 elric /* Define to 1 if you have the <usersec.h> header file. */ 1151 1.1 elric /* #undef HAVE_USERSEC_H */ 1152 1.1 elric 1153 1.1 elric /* Define to 1 if you have the <util.h> header file. */ 1154 1.1 elric /* #undef HAVE_UTIL_H */ 1155 1.1 elric 1156 1.1 elric /* Define to 1 if the system has the type `u_int16_t'. */ 1157 1.1 elric /* #define HAVE_U_INT16_T 1 */ 1158 1.1 elric 1159 1.1 elric /* Define to 1 if the system has the type `u_int32_t'. */ 1160 1.1 elric /* #define HAVE_U_INT32_T 1 */ 1161 1.1 elric 1162 1.1 elric /* Define to 1 if the system has the type `u_int64_t'. */ 1163 1.1 elric /* #define HAVE_U_INT64_T 1 */ 1164 1.1 elric 1165 1.1 elric /* Define to 1 if the system has the type `u_int8_t'. */ 1166 1.1 elric /* #define HAVE_U_INT8_T 1 */ 1167 1.1 elric 1168 1.1 elric /* Define to 1 if you have the `vasnprintf' function. */ 1169 1.1 elric /* #undef HAVE_VASNPRINTF */ 1170 1.1 elric 1171 1.1 elric /* Define to 1 if you have the `vasprintf' function. */ 1172 1.1 elric /* #define HAVE_VASPRINTF 1 */ 1173 1.1 elric 1174 1.1 elric /* Define if you have the function `verr'. */ 1175 1.1 elric /* #define HAVE_VERR 1 */ 1176 1.1 elric 1177 1.1 elric /* Define if you have the function `verrx'. */ 1178 1.1 elric /* #define HAVE_VERRX 1 */ 1179 1.1 elric 1180 1.1 elric /* Define to 1 if you have the `vhangup' function. */ 1181 1.1 elric /* #define HAVE_VHANGUP 1 */ 1182 1.1 elric 1183 1.1 elric /* Define to 1 if you have the `vis' function. */ 1184 1.1 elric /* #undef HAVE_VIS */ 1185 1.1 elric 1186 1.1 elric /* Define to 1 if you have the <vis.h> header file. */ 1187 1.1 elric /* #undef HAVE_VIS_H */ 1188 1.1 elric 1189 1.1 elric /* define if you have a working vsnprintf */ 1190 1.1 elric /* snprintf() and vsnprintf() do exist. But the implementations are 1191 1.1 elric not C99 compliant. */ 1192 1.1 elric /* #define HAVE_VSNPRINTF 1 */ 1193 1.1 elric 1194 1.1 elric /* Define if you have the function `vsyslog'. */ 1195 1.1 elric #define HAVE_VSYSLOG 1 1196 1.1 elric 1197 1.1 elric /* Define if you have the function `vwarn'. */ 1198 1.1 elric /* #define HAVE_VWARN 1 */ 1199 1.1 elric 1200 1.1 elric /* Define if you have the function `vwarnx'. */ 1201 1.1 elric /* #define HAVE_VWARNX 1 */ 1202 1.1 elric 1203 1.1 elric /* Define if you have the function `warn'. */ 1204 1.1 elric /* #define HAVE_WARN 1 */ 1205 1.1 elric 1206 1.1 elric /* Define if you have the function `warnx'. */ 1207 1.1 elric /* #define HAVE_WARNX 1 */ 1208 1.1 elric 1209 1.1 elric /* Define if you have the function `writev'. */ 1210 1.1 elric /* #define HAVE_WRITEV 1 */ 1211 1.1 elric 1212 1.1 elric /* Defined if we have WinSock */ 1213 1.1 elric #define HAVE_WINSOCK 1 1214 1.1 elric 1215 1.1 elric /* Defined if we have WinDNS */ 1216 1.1 elric #define HAVE_WINDNS 1 1217 1.1 elric 1218 1.1 elric /* define if struct winsize has ws_xpixel */ 1219 1.1 elric /* #define HAVE_WS_XPIXEL 1 */ 1220 1.1 elric 1221 1.1 elric /* define if struct winsize has ws_ypixel */ 1222 1.1 elric /* #define HAVE_WS_YPIXEL 1 */ 1223 1.1 elric 1224 1.1 elric /* Define to 1 if you have the `yp_get_default_domain' function. */ 1225 1.1 elric /* #undef HAVE_YP_GET_DEFAULT_DOMAIN */ 1226 1.1 elric 1227 1.1 elric /* Define to 1 if you have the `_getpty' function. */ 1228 1.1 elric /* #undef HAVE__GETPTY */ 1229 1.1 elric 1230 1.1 elric /* Define if you have the `_res' variable. */ 1231 1.1 elric /* #undef HAVE__RES */ 1232 1.1 elric 1233 1.1 elric /* Define to 1 if you have the `_scrsize' function. */ 1234 1.1 elric /* #undef HAVE__SCRSIZE */ 1235 1.1 elric 1236 1.1 elric /* define if your compiler has __attribute__ */ 1237 1.1 elric /* #define HAVE___ATTRIBUTE__ 1 */ 1238 1.1 elric 1239 1.1 elric /* Define if you have the `__progname' variable. */ 1240 1.1 elric /* #define HAVE___PROGNAME 1 */ 1241 1.1 elric 1242 1.1 elric /* Define if you are running IRIX 4. */ 1243 1.1 elric /* #undef IRIX4 */ 1244 1.1 elric 1245 1.1 elric /* define if the system is missing a prototype for asnprintf() */ 1246 1.1 elric /* #define NEED_ASNPRINTF_PROTO 1 */ 1247 1.1 elric 1248 1.1 elric /* define if the system is missing a prototype for asprintf() */ 1249 1.1 elric /* #undef NEED_ASPRINTF_PROTO */ 1250 1.1 elric 1251 1.1 elric /* define if the system is missing a prototype for crypt() */ 1252 1.1 elric /* #undef NEED_CRYPT_PROTO */ 1253 1.1 elric 1254 1.1 elric /* define if the system is missing a prototype for daemon() */ 1255 1.1 elric /* #undef NEED_DAEMON_PROTO */ 1256 1.1 elric 1257 1.1 elric /* define if the system is missing a prototype for gethostname() */ 1258 1.1 elric /* #undef NEED_GETHOSTNAME_PROTO */ 1259 1.1 elric 1260 1.1 elric /* define if the system is missing a prototype for getusershell() */ 1261 1.1 elric /* #undef NEED_GETUSERSHELL_PROTO */ 1262 1.1 elric 1263 1.1 elric /* define if the system is missing a prototype for glob() */ 1264 1.1 elric /* #undef NEED_GLOB_PROTO */ 1265 1.1 elric 1266 1.1 elric /* define if the system is missing a prototype for hstrerror() */ 1267 1.1 elric /* #undef NEED_HSTRERROR_PROTO */ 1268 1.1 elric 1269 1.1 elric /* define if the system is missing a prototype for inet_aton() */ 1270 1.1 elric /* #undef NEED_INET_ATON_PROTO */ 1271 1.1 elric 1272 1.1 elric /* define if the system is missing a prototype for iruserok() */ 1273 1.1 elric /* #undef NEED_IRUSEROK_PROTO */ 1274 1.1 elric 1275 1.1 elric /* define if the system is missing a prototype for mkstemp() */ 1276 1.1 elric /* #define NEED_MKSTEMP_PROTO 1 */ 1277 1.1 elric 1278 1.1 elric /* define if the system is missing a prototype for SecKeyGetCSPHandle() */ 1279 1.1 elric /* #undef NEED_SECKEYGETCSPHANDLE_PROTO */ 1280 1.1 elric 1281 1.1 elric /* define if the system is missing a prototype for setenv() */ 1282 1.1 elric #define NEED_SETENV_PROTO 1 1283 1.1 elric 1284 1.1 elric /* define if the system is missing a prototype for snprintf() */ 1285 1.1 elric /* #undef NEED_SNPRINTF_PROTO */ 1286 1.1 elric 1287 1.1 elric /* define if the system is missing a prototype for strndup() */ 1288 1.1 elric /* #undef NEED_STRNDUP_PROTO */ 1289 1.1 elric 1290 1.1 elric /* define if the system is missing a prototype for strsep() */ 1291 1.1 elric /* #undef NEED_STRSEP_PROTO */ 1292 1.1 elric 1293 1.1 elric /* define if the system is missing a prototype for strsvis() */ 1294 1.1 elric /* #define NEED_STRSVIS_PROTO 1 */ 1295 1.1 elric 1296 1.1 elric /* define if the system is missing a prototype for strtok_r() */ 1297 1.1 elric #define NEED_STRTOK_R_PROTO 1 1298 1.1 elric 1299 1.1 elric /* define if the system is missing a prototype for strunvis() */ 1300 1.1 elric /* #define NEED_STRUNVIS_PROTO 1 */ 1301 1.1 elric 1302 1.1 elric /* define if the system is missing a prototype for strvisx() */ 1303 1.1 elric /* #define NEED_STRVISX_PROTO 1 */ 1304 1.1 elric 1305 1.1 elric /* define if the system is missing a prototype for strvis() */ 1306 1.1 elric /* #define NEED_STRVIS_PROTO 1 */ 1307 1.1 elric 1308 1.1 elric /* define if the system is missing a prototype for svis() */ 1309 1.1 elric /* #define NEED_SVIS_PROTO 1 */ 1310 1.1 elric 1311 1.1 elric /* define if the system is missing a prototype for unsetenv() */ 1312 1.1 elric /* #undef NEED_UNSETENV_PROTO */ 1313 1.1 elric 1314 1.1 elric /* define if the system is missing a prototype for unvis() */ 1315 1.1 elric /* #define NEED_UNVIS_PROTO 1 */ 1316 1.1 elric 1317 1.1 elric /* define if the system is missing a prototype for vasnprintf() */ 1318 1.1 elric /* #define NEED_VASNPRINTF_PROTO 1 */ 1319 1.1 elric 1320 1.1 elric /* define if the system is missing a prototype for vasprintf() */ 1321 1.1 elric /* #undef NEED_VASPRINTF_PROTO */ 1322 1.1 elric 1323 1.1 elric /* define if the system is missing a prototype for vis() */ 1324 1.1 elric /* #define NEED_VIS_PROTO 1 */ 1325 1.1 elric 1326 1.1 elric /* define if the system is missing a prototype for vsnprintf() */ 1327 1.1 elric /* #undef NEED_VSNPRINTF_PROTO */ 1328 1.1 elric 1329 1.1 elric /* Define to 1 if your C compiler doesn't accept -c and -o together. */ 1330 1.1 elric /* #undef NO_MINUS_C_MINUS_O */ 1331 1.1 elric 1332 1.1 elric /* Define if you don't want to use mmap. */ 1333 1.1 elric #define NO_MMAP 1 1334 1.1 elric 1335 1.1 elric /* Define if the Unix rand method is not defined */ 1336 1.1 elric #define NO_RAND_UNIX_METHOD 1 1337 1.1 elric 1338 1.1 elric /* Define if the Fortuna rand method is not defined */ 1339 1.1 elric #define NO_RAND_FORTUNA_METHOD 1 1340 1.1 elric 1341 1.1 elric /* Define if PID files should not be used. */ 1342 1.1 elric #define NO_PIDFILES 1 1343 1.1 elric 1344 1.1 elric /* Define if SIGPIPE is not supported */ 1345 1.1 elric #define NO_SIGPIPE 1 1346 1.1 elric 1347 1.1 elric /* Define if SIGXCPU is not supported */ 1348 1.1 elric #define NO_SIGXCPU 1 1349 1.1 elric 1350 1.1 elric /* Define if sleep() is not available */ 1351 1.1 elric #define NO_SLEEP 1 1352 1.1 elric 1353 1.1 elric /* Define to 1 if Unix sockets (AF_UNIX) are not available. */ 1354 1.1 elric #define NO_UNIX_SOCKETS 1 1355 1.1 elric 1356 1.1 elric /* Define to 1 if POSIX link/unlink operations should be avoided. 1357 1.1 elric This may be because the behavior of links are not not consistent 1358 1.1 elric with POSIX or because the filesystem may not support POSIX 1359 1.1 elric links. */ 1360 1.1 elric #define NO_POSIX_LINKS 1 1361 1.1 elric 1362 1.1 elric /* Define this to enable old environment option in telnet. */ 1363 1.1 elric /* #define OLD_ENVIRON 1 */ 1364 1.1 elric 1365 1.1 elric /* define if prototype of openlog is compatible with void openlog(const char 1366 1.1 elric *, int, int) */ 1367 1.1 elric #define OPENLOG_PROTO_COMPATIBLE 1 1368 1.1 elric 1369 1.1 elric /* Define if getlogin has POSIX flavour (and not BSD). */ 1370 1.1 elric /* #define POSIX_GETLOGIN 1 */ 1371 1.1 elric 1372 1.1 elric /* Define if getpwnam_r has POSIX flavour. */ 1373 1.1 elric /* #define POSIX_GETPWNAM_R 1 */ 1374 1.1 elric 1375 1.1 elric /* Define if you have the readline package. */ 1376 1.1 elric #define READLINE 1 1377 1.1 elric 1378 1.1 elric /* Define if rename() does not unlink an existing file */ 1379 1.1 elric #define RENAME_DOES_NOT_UNLINK 1 1380 1.1 elric 1381 1.1 elric /* Define if you want to use samba socket wrappers. */ 1382 1.1 elric /* #undef SOCKET_WRAPPER_REPLACE */ 1383 1.1 elric 1384 1.1 elric /* Define if a socket is not a file descriptor */ 1385 1.1 elric #define SOCKET_IS_NOT_AN_FD 1 1386 1.1 elric 1387 1.1 elric /* Define if FD_SETSIZE check does not apply to this platform */ 1388 1.1 elric #define NO_LIMIT_FD_SETSIZE 1 1389 1.1 elric 1390 1.1 elric /* Define to 1 if you have the ANSI C header files. */ 1391 1.1 elric #define STDC_HEADERS 1 1392 1.1 elric 1393 1.1 elric /* Define if you have streams ptys. */ 1394 1.1 elric /* #undef STREAMSPTY */ 1395 1.1 elric 1396 1.1 elric /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ 1397 1.1 elric /* #define TIME_WITH_SYS_TIME 1 */ 1398 1.1 elric 1399 1.1 elric /* Define to 1 if your <sys/time.h> declares `struct tm'. */ 1400 1.1 elric /* #undef TM_IN_SYS_TIME */ 1401 1.1 elric 1402 1.1 elric /* define if target is big endian */ 1403 1.1 elric /* #undef WORDS_BIGENDIAN */ 1404 1.1 elric 1405 1.1 elric /* Define to 1 if the X Window System is missing or not being used. */ 1406 1.1 elric #define X_DISPLAY_MISSING 1 1407 1.1 elric 1408 1.1 elric /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a 1409 1.1 elric `char[]'. */ 1410 1.1 elric /* #undef YYTEXT_POINTER */ 1411 1.1 elric 1412 1.1 elric /* Number of bits in a file offset, on hosts where this is settable. */ 1413 1.1 elric /* #undef _FILE_OFFSET_BITS */ 1414 1.1 elric 1415 1.1 elric /* Define to enable extensions on glibc-based systems such as Linux. */ 1416 1.1 elric /* #define _GNU_SOURCE 1 */ 1417 1.1 elric 1418 1.1 elric /* Define for large files, on AIX-style hosts. */ 1419 1.1 elric /* #undef _LARGE_FILES */ 1420 1.1 elric 1421 1.1 elric /* Set this to the default system lead string for telnetd 1422 1.1 elric * can contain %-escapes: %s=sysname, %m=machine, %r=os-release 1423 1.1 elric * %v=os-version, %t=tty, %h=hostname, %d=date and time 1424 1.1 elric */ 1425 1.1 elric /* #undef USE_IM */ 1426 1.1 elric 1427 1.1 elric /* Used with login -p */ 1428 1.1 elric /* #undef LOGIN_ARGS */ 1429 1.1 elric 1430 1.1 elric #ifdef ROKEN_RENAME 1431 1.1 elric #include "roken_rename.h" 1432 1.1 elric #endif 1433 1.1 elric 1434 1.1 elric #if defined(ENCRYPTION) && !defined(AUTHENTICATION) 1435 1.1 elric #define AUTHENTICATION 1 1436 1.1 elric #endif 1437 1.1 elric 1438 1.1 elric 1439 1.1 elric 1440 1.1 elric /* Paths */ 1441 1.1 elric 1442 1.1 elric #define SYSCONFDIR "%{COMMONCONFIG}" 1443 1.1 elric 1444 1.1 elric #define LIBDIR "%{LIBDIR}" 1445 1.1 elric 1446 1.1 elric #endif /* RC_INVOKED */ 1447 1.1 elric 1448 1.1 elric 1449 1.1 elric /* Version info */ 1450 1.1 elric 1451 1.1 elric #define PACKAGE "@PACKAGE@" 1452 1.1 elric 1453 1.1 elric #define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@" 1454 1.1 elric 1455 1.1 elric #define PACKAGE_NAME "@PACKAGE_NAME@" 1456 1.1 elric 1457 1.1 elric #define PACKAGE_STRING "@PACKAGE_NAME@ @PACKAGE_VERSION@" 1458 1.1 elric 1459 1.1 elric #define PACKAGE_TARNAME "@PACKAGE@" 1460 1.1 elric 1461 1.1 elric #define PACKAGE_VERSION "@PACKAGE_VERSION@" 1462 1.1 elric 1463 1.1 elric #define PACKAGE_COMPANY "@PACKAGE_COMPANY@" 1464 1.1 elric 1465 1.1 elric #define PACKAGE_COPYRIGHT "@PACKAGE_COPYRIGHT@" 1466 1.1 elric 1467 1.1 elric #define VERSION "@PACKAGE_VERSION@" 1468 1.1 elric 1469 1.1 elric #define RC_PRODVER_MAJOR @MAJOR@ 1470 1.1 elric 1471 1.1 elric #define RC_PRODVER_MINOR @MINOR@ 1472 1.1 elric 1473 1.1 elric #define RC_PRODVER_AUX @AUX@ 1474 1.1 elric 1475 1.1 elric #define RC_PRODVER_PATCH @PATCH@ 1476 1.1 elric 1477 1.1 elric #define RC_PRODVER_C @MAJOR@,@MINOR@,@AUX@,@PATCH@ 1478 1.1 elric 1479 1.1 elric #define RC_PRODVER_CS "@MAJOR@,@MINOR@,@AUX@,@PATCH@" 1480 1.1 elric 1481 1.1 elric #define RC_PRODVER_DS "@MAJOR@.@MINOR@.@AUX@.@PATCH@" 1482 1.1 elric 1483 1.1 elric #define RC_PRODUCT_NAME_0409 PACKAGE_NAME 1484 1.1 elric 1485 1.1 elric #define RC_PRODUCT_VER_0409 PACKAGE_VERSION 1486 1.1 elric 1487 1.1 elric #define RC_COMPANY_0409 PACKAGE_COMPANY 1488 1.1 elric 1489 1.1 elric #define RC_COPYRIGHT_0409 PACKAGE_COPYRIGHT 1490 1.1 elric 1491 1.1 elric @VERSION_OPTDEFS@ 1492 1.1 elric 1493 1.1 elric #endif /* __CONFIG_H__ */ 1494