config.h revision 126279
1107553Sdes/* config.h.  Generated by configure.  */
2107553Sdes/* config.h.in.  Generated from configure.ac by autoheader.  */
3126279Sdes/* $Id: acconfig.h,v 1.173 2004/02/06 05:24:31 dtucker Exp $ */
499059Sdes/* $FreeBSD: head/crypto/openssh/config.h 126279 2004-02-26 10:57:38Z des $ */
599059Sdes
6124244Sdes/*
7124244Sdes * Copyright (c) 1999-2003 Damien Miller.  All rights reserved.
8124244Sdes *
9124244Sdes * Redistribution and use in source and binary forms, with or without
10124244Sdes * modification, are permitted provided that the following conditions
11124244Sdes * are met:
12124244Sdes * 1. Redistributions of source code must retain the above copyright
13124244Sdes *    notice, this list of conditions and the following disclaimer.
14124244Sdes * 2. Redistributions in binary form must reproduce the above copyright
15124244Sdes *    notice, this list of conditions and the following disclaimer in the
16124244Sdes *    documentation and/or other materials provided with the distribution.
17124244Sdes *
18124244Sdes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19124244Sdes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20124244Sdes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21124244Sdes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22124244Sdes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23124244Sdes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24124244Sdes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25124244Sdes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26124244Sdes * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27124244Sdes * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28124244Sdes */
29124244Sdes
3099059Sdes#ifndef _CONFIG_H
3199059Sdes#define _CONFIG_H
3299059Sdes
3399059Sdes/* Generated automatically from acconfig.h by autoheader. */
3499059Sdes/* Please make your changes there */
3599059Sdes
3699059Sdes
37124244Sdes/* Define if your platform breaks doing a seteuid before a setuid */
38124244Sdes/* #undef SETEUID_BREAKS_SETUID */
39124244Sdes
40124244Sdes/* Define if your setreuid() is broken */
41124244Sdes/* #undef BROKEN_SETREUID */
42124244Sdes
43124244Sdes/* Define if your setregid() is broken */
44124244Sdes/* #undef BROKEN_SETREGID */
45124244Sdes
46126279Sdes/* Define if your setresuid() is broken */
47126279Sdes/* #undef BROKEN_SETRESUID */
48126279Sdes
49126279Sdes/* Define if your setresgid() is broken */
50126279Sdes/* #undef BROKEN_SETRESGID */
51126279Sdes
5299059Sdes/* Define to a Set Process Title type if your system is */
5399059Sdes/* supported by bsd-setproctitle.c */
5499059Sdes/* #undef SPT_TYPE */
55124244Sdes/* #undef SPT_PADCHAR */
5699059Sdes
5799059Sdes/* setgroups() NOOP allowed */
5899059Sdes/* #undef SETGROUPS_NOOP */
5999059Sdes
6099059Sdes/* SCO workaround */
6199059Sdes/* #undef BROKEN_SYS_TERMIO_H */
6299059Sdes
6399059Sdes/* Define if you have SecureWare-based protected password database */
6499059Sdes/* #undef HAVE_SECUREWARE */
6599059Sdes
6699059Sdes/* If your header files don't define LOGIN_PROGRAM, then use this (detected) */
6799059Sdes/* from environment and PATH */
6899059Sdes#define LOGIN_PROGRAM_FALLBACK "/usr/bin/login"
6999059Sdes
70126279Sdes/* Full path of your "passwd" program */
71126279Sdes#define _PATH_PASSWD_PROG "/usr/bin/passwd"
72126279Sdes
7399059Sdes/* Define if your password has a pw_class field */
7499059Sdes#define HAVE_PW_CLASS_IN_PASSWD 1
7599059Sdes
7699059Sdes/* Define if your password has a pw_expire field */
7799059Sdes#define HAVE_PW_EXPIRE_IN_PASSWD 1
7899059Sdes
7999059Sdes/* Define if your password has a pw_change field */
8099059Sdes#define HAVE_PW_CHANGE_IN_PASSWD 1
8199059Sdes
8299059Sdes/* Define if your system uses access rights style file descriptor passing */
8399059Sdes/* #undef HAVE_ACCRIGHTS_IN_MSGHDR */
8499059Sdes
8599059Sdes/* Define if your system uses ancillary data style file descriptor passing */
8699059Sdes#define HAVE_CONTROL_IN_MSGHDR 1
8799059Sdes
8899059Sdes/* Define if you system's inet_ntoa is busted (e.g. Irix gcc issue) */
8999059Sdes/* #undef BROKEN_INET_NTOA */
9099059Sdes
9199059Sdes/* Define if your system defines sys_errlist[] */
9299059Sdes#define HAVE_SYS_ERRLIST 1
9399059Sdes
9499059Sdes/* Define if your system defines sys_nerr */
9599059Sdes#define HAVE_SYS_NERR 1
9699059Sdes
9799059Sdes/* Define if your system choked on IP TOS setting */
9899059Sdes/* #undef IP_TOS_IS_BROKEN */
9999059Sdes
10099059Sdes/* Define if you have the getuserattr function.  */
10199059Sdes/* #undef HAVE_GETUSERATTR */
10299059Sdes
103126279Sdes/* Define if you have the basename function. */
104126279Sdes#define HAVE_BASENAME 1
105126279Sdes
10699059Sdes/* Work around problematic Linux PAM modules handling of PAM_TTY */
10799059Sdes/* #undef PAM_TTY_KLUDGE */
10899059Sdes
10999059Sdes/* Use PIPES instead of a socketpair() */
11099059Sdes/* #undef USE_PIPES */
11199059Sdes
11299059Sdes/* Define if your snprintf is busted */
11399059Sdes/* #undef BROKEN_SNPRINTF */
11499059Sdes
11599059Sdes/* Define if you are on Cygwin */
11699059Sdes/* #undef HAVE_CYGWIN */
11799059Sdes
11899059Sdes/* Define if you have a broken realpath. */
11999059Sdes/* #undef BROKEN_REALPATH */
12099059Sdes
12199059Sdes/* Define if you are on NeXT */
12299059Sdes/* #undef HAVE_NEXT */
12399059Sdes
12499059Sdes/* Define if you are on NEWS-OS */
12599059Sdes/* #undef HAVE_NEWS4 */
12699059Sdes
12799059Sdes/* Define if you want to enable PAM support */
12899059Sdes#define USE_PAM 1
12999059Sdes
13099059Sdes/* Define if you want to enable AIX4's authenticate function */
13199059Sdes/* #undef WITH_AIXAUTHENTICATE */
13299059Sdes
133124244Sdes/* Define if your AIX loginfailed() function takes 4 arguments (AIX >= 5.2) */
134124244Sdes/* #undef AIX_LOGINFAILED_4ARG */
135124244Sdes
13699059Sdes/* Define if you have/want arrays (cluster-wide session managment, not C arrays) */
13799059Sdes/* #undef WITH_IRIX_ARRAY */
13899059Sdes
13999059Sdes/* Define if you want IRIX project management */
14099059Sdes/* #undef WITH_IRIX_PROJECT */
14199059Sdes
14299059Sdes/* Define if you want IRIX audit trails */
14399059Sdes/* #undef WITH_IRIX_AUDIT */
14499059Sdes
14599059Sdes/* Define if you want IRIX kernel jobs */
14699059Sdes/* #undef WITH_IRIX_JOBS */
14799059Sdes
14899059Sdes/* Location of PRNGD/EGD random number socket */
14999059Sdes/* #undef PRNGD_SOCKET */
15099059Sdes
15199059Sdes/* Port number of PRNGD/EGD random number socket */
15299059Sdes/* #undef PRNGD_PORT */
15399059Sdes
15499059Sdes/* Builtin PRNG command timeout */
15599059Sdes#define ENTROPY_TIMEOUT_MSEC 200
15699059Sdes
15799059Sdes/* non-privileged user for privilege separation */
15899059Sdes#define SSH_PRIVSEP_USER "sshd"
15999059Sdes
16099059Sdes/* Define if you want to install preformatted manpages.*/
16199059Sdes/* #undef MANTYPE */
16299059Sdes
16399059Sdes/* Define if your ssl headers are included with #include <openssl/header.h>  */
16499059Sdes#define HAVE_OPENSSL 1
16599059Sdes
16699059Sdes/* Define if you are linking against RSAref.  Used only to print the right
16799059Sdes * message at run-time. */
16899059Sdes/* #undef RSAREF */
16999059Sdes
17099059Sdes/* struct timeval */
17199059Sdes#define HAVE_STRUCT_TIMEVAL 1
17299059Sdes
17399059Sdes/* struct utmp and struct utmpx fields */
17499059Sdes#define HAVE_HOST_IN_UTMP 1
17599059Sdes/* #undef HAVE_HOST_IN_UTMPX */
17699059Sdes/* #undef HAVE_ADDR_IN_UTMP */
17799059Sdes/* #undef HAVE_ADDR_IN_UTMPX */
17899059Sdes/* #undef HAVE_ADDR_V6_IN_UTMP */
17999059Sdes/* #undef HAVE_ADDR_V6_IN_UTMPX */
18099059Sdes/* #undef HAVE_SYSLEN_IN_UTMPX */
18199059Sdes/* #undef HAVE_PID_IN_UTMP */
18299059Sdes/* #undef HAVE_TYPE_IN_UTMP */
18399059Sdes/* #undef HAVE_TYPE_IN_UTMPX */
18499059Sdes/* #undef HAVE_TV_IN_UTMP */
18599059Sdes/* #undef HAVE_TV_IN_UTMPX */
18699059Sdes/* #undef HAVE_ID_IN_UTMP */
18799059Sdes/* #undef HAVE_ID_IN_UTMPX */
18899059Sdes/* #undef HAVE_EXIT_IN_UTMP */
18999059Sdes#define HAVE_TIME_IN_UTMP 1
19099059Sdes/* #undef HAVE_TIME_IN_UTMPX */
19199059Sdes
19299059Sdes/* Define if you don't want to use your system's login() call */
19399059Sdes/* #undef DISABLE_LOGIN */
19499059Sdes
19599059Sdes/* Define if you don't want to use pututline() etc. to write [uw]tmp */
19699059Sdes/* #undef DISABLE_PUTUTLINE */
19799059Sdes
19899059Sdes/* Define if you don't want to use pututxline() etc. to write [uw]tmpx */
19999059Sdes/* #undef DISABLE_PUTUTXLINE */
20099059Sdes
20199059Sdes/* Define if you don't want to use lastlog */
20299059Sdes/* #undef DISABLE_LASTLOG */
20399059Sdes
204107553Sdes/* Define if you don't want to use lastlog in session.c */
205107553Sdes/* #undef NO_SSH_LASTLOG */
206107553Sdes
20799059Sdes/* Define if you don't want to use utmp */
20899059Sdes/* #undef DISABLE_UTMP */
20999059Sdes
21099059Sdes/* Define if you don't want to use utmpx */
21199059Sdes#define DISABLE_UTMPX 1
21299059Sdes
21399059Sdes/* Define if you don't want to use wtmp */
21499059Sdes/* #undef DISABLE_WTMP */
21599059Sdes
21699059Sdes/* Define if you don't want to use wtmpx */
21799059Sdes#define DISABLE_WTMPX 1
21899059Sdes
21999059Sdes/* Some systems need a utmpx entry for /bin/login to work */
22099059Sdes/* #undef LOGIN_NEEDS_UTMPX */
22199059Sdes
22299059Sdes/* Some versions of /bin/login need the TERM supplied on the commandline */
22399059Sdes/* #undef LOGIN_NEEDS_TERM */
22499059Sdes
22599059Sdes/* Define if your login program cannot handle end of options ("--") */
22699059Sdes/* #undef LOGIN_NO_ENDOPT */
22799059Sdes
22899059Sdes/* Define if you want to specify the path to your lastlog file */
22999059Sdes/* #undef CONF_LASTLOG_FILE */
23099059Sdes
23199059Sdes/* Define if you want to specify the path to your utmp file */
23299059Sdes#define CONF_UTMP_FILE "/var/run/utmp"
23399059Sdes
23499059Sdes/* Define if you want to specify the path to your wtmp file */
23599059Sdes#define CONF_WTMP_FILE "/var/log/wtmp"
23699059Sdes
23799059Sdes/* Define if you want to specify the path to your utmpx file */
23899059Sdes/* #undef CONF_UTMPX_FILE */
23999059Sdes
24099059Sdes/* Define if you want to specify the path to your wtmpx file */
24199059Sdes/* #undef CONF_WTMPX_FILE */
24299059Sdes
24399059Sdes/* Define if you want external askpass support */
24499059Sdes/* #undef USE_EXTERNAL_ASKPASS */
24599059Sdes
24699059Sdes/* Define if libc defines __progname */
24799059Sdes#define HAVE___PROGNAME 1
24899059Sdes
24999059Sdes/* Define if compiler implements __FUNCTION__ */
25099059Sdes#define HAVE___FUNCTION__ 1
25199059Sdes
25299059Sdes/* Define if compiler implements __func__ */
25399059Sdes#define HAVE___func__ 1
25499059Sdes
255124244Sdes/* Define this is you want GSSAPI support in the version 2 protocol */
256124244Sdes/* #undef GSSAPI */
257124244Sdes
25899059Sdes/* Define if you want Kerberos 5 support */
25999059Sdes/* #undef KRB5 */
26099059Sdes
26199059Sdes/* Define this if you are using the Heimdal version of Kerberos V5 */
26299059Sdes/* #undef HEIMDAL */
26399059Sdes
264126279Sdes/* Define this if you want to use libkafs' AFS support */
265126279Sdes/* #undef USE_AFS */
266126279Sdes
26799059Sdes/* Define if you want S/Key support */
26899319Sdes/* #undef SKEY */
26999059Sdes
27099059Sdes/* Define if you want OPIE support */
27199319Sdes/* #undef OPIE */
27299059Sdes
27399059Sdes/* Define if you want TCP Wrappers support */
27499059Sdes#define LIBWRAP 1
27599059Sdes
27699059Sdes/* Define if your libraries define login() */
27799059Sdes#define HAVE_LOGIN 1
27899059Sdes
27999059Sdes/* Define if your libraries define daemon() */
28099059Sdes#define HAVE_DAEMON 1
28199059Sdes
28299059Sdes/* Define if your libraries define getpagesize() */
28399059Sdes#define HAVE_GETPAGESIZE 1
28499059Sdes
28599059Sdes/* Define if xauth is found in your path */
28699059Sdes#define XAUTH_PATH "/usr/X11R6/bin/xauth"
28799059Sdes
28899059Sdes/* Define if you want to allow MD5 passwords */
28999059Sdes/* #undef HAVE_MD5_PASSWORDS */
29099059Sdes
29199059Sdes/* Define if you want to disable shadow passwords */
29299059Sdes/* #undef DISABLE_SHADOW */
29399059Sdes
29499059Sdes/* Define if you want to use shadow password expire field */
29599059Sdes/* #undef HAS_SHADOW_EXPIRE */
29699059Sdes
29799059Sdes/* Define if you have Digital Unix Security Integration Architecture */
29899059Sdes/* #undef HAVE_OSF_SIA */
29999059Sdes
30099059Sdes/* Define if you have getpwanam(3) [SunOS 4.x] */
30199059Sdes/* #undef HAVE_GETPWANAM */
30299059Sdes
30399059Sdes/* Define if you have an old version of PAM which takes only one argument */
30499059Sdes/* to pam_strerror */
30599059Sdes/* #undef HAVE_OLD_PAM */
30699059Sdes
30799059Sdes/* Define if you are using Solaris-derived PAM which passes pam_messages  */
30899059Sdes/* to the conversation function with an extra level of indirection */
30999059Sdes/* #undef PAM_SUN_CODEBASE */
31099059Sdes
31199059Sdes/* Set this to your mail directory if you don't have maillock.h */
312124244Sdes#define MAIL_DIRECTORY "/var/mail"
31399059Sdes
31499059Sdes/* Data types */
31599059Sdes#define HAVE_U_INT 1
31699059Sdes#define HAVE_INTXX_T 1
31799059Sdes#define HAVE_U_INTXX_T 1
31899059Sdes#define HAVE_UINTXX_T 1
31999059Sdes#define HAVE_INT64_T 1
32099059Sdes#define HAVE_U_INT64_T 1
32199059Sdes#define HAVE_U_CHAR 1
32299059Sdes#define HAVE_SIZE_T 1
32399059Sdes#define HAVE_SSIZE_T 1
32499059Sdes#define HAVE_CLOCK_T 1
32599059Sdes#define HAVE_MODE_T 1
32699059Sdes#define HAVE_PID_T 1
32799059Sdes#define HAVE_SA_FAMILY_T 1
32899059Sdes#define HAVE_STRUCT_SOCKADDR_STORAGE 1
32999059Sdes#define HAVE_STRUCT_ADDRINFO 1
33099059Sdes#define HAVE_STRUCT_IN6_ADDR 1
33199059Sdes#define HAVE_STRUCT_SOCKADDR_IN6 1
33299059Sdes
33399059Sdes/* Fields in struct sockaddr_storage */
33499059Sdes#define HAVE_SS_FAMILY_IN_SS 1
33599059Sdes/* #undef HAVE___SS_FAMILY_IN_SS */
33699059Sdes
33799059Sdes/* Define if you have /dev/ptmx */
33899059Sdes/* #undef HAVE_DEV_PTMX */
33999059Sdes
34099059Sdes/* Define if you have /dev/ptc */
34199059Sdes/* #undef HAVE_DEV_PTS_AND_PTC */
34299059Sdes
34399059Sdes/* Define if you need to use IP address instead of hostname in $DISPLAY */
34499059Sdes/* #undef IPADDR_IN_DISPLAY */
34599059Sdes
34699059Sdes/* Specify default $PATH */
34799059Sdes/* #undef USER_PATH */
34899059Sdes
34999059Sdes/* Specify location of ssh.pid */
35099059Sdes#define _PATH_SSH_PIDDIR "/var/run"
35199059Sdes
35299059Sdes/* getaddrinfo is broken (if present) */
35399059Sdes/* #undef BROKEN_GETADDRINFO */
35499059Sdes
35599059Sdes/* Workaround more Linux IPv6 quirks */
35699059Sdes/* #undef DONT_TRY_OTHER_AF */
35799059Sdes
35899059Sdes/* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */
35999059Sdes/* #undef IPV4_IN_IPV6 */
36099059Sdes
36199059Sdes/* Define if you have BSD auth support */
36299059Sdes/* #undef BSD_AUTH */
36399059Sdes
36499059Sdes/* Define if X11 doesn't support AF_UNIX sockets on that system */
36599059Sdes/* #undef NO_X11_UNIX_SOCKETS */
36699059Sdes
367107553Sdes/* Define if the concept of ports only accessible to superusers isn't known */
368107553Sdes/* #undef NO_IPPORT_RESERVED_CONCEPT */
369107553Sdes
37099059Sdes/* Needed for SCO and NeXT */
37199059Sdes/* #undef BROKEN_SAVED_UIDS */
37299059Sdes
37399059Sdes/* Define if your system glob() function has the GLOB_ALTDIRFUNC extension */
37499059Sdes#define GLOB_HAS_ALTDIRFUNC 1
37599059Sdes
37699059Sdes/* Define if your system glob() function has gl_matchc options in glob_t */
37799059Sdes/* #undef GLOB_HAS_GL_MATCHC */
37899059Sdes
37999059Sdes/* Define in your struct dirent expects you to allocate extra space for d_name */
38099059Sdes/* #undef BROKEN_ONE_BYTE_DIRENT_D_NAME */
38199059Sdes
382124244Sdes/* Define if your system has /etc/default/login */
383124244Sdes/* #undef HAVE_ETC_DEFAULT_LOGIN */
384124244Sdes
38599059Sdes/* Define if your getopt(3) defines and uses optreset */
38699059Sdes#define HAVE_GETOPT_OPTRESET 1
38799059Sdes
38899059Sdes/* Define on *nto-qnx systems */
38999059Sdes/* #undef MISSING_NFDBITS */
39099059Sdes
39199059Sdes/* Define on *nto-qnx systems */
39299059Sdes/* #undef MISSING_HOWMANY */
39399059Sdes
39499059Sdes/* Define on *nto-qnx systems */
39599059Sdes/* #undef MISSING_FD_MASK */
39699059Sdes
39799059Sdes/* Define if you want smartcard support */
39899059Sdes/* #undef SMARTCARD */
39999059Sdes
40099059Sdes/* Define if you want smartcard support using sectok */
40199059Sdes/* #undef USE_SECTOK */
40299059Sdes
40399059Sdes/* Define if you want smartcard support using OpenSC */
40499059Sdes/* #undef USE_OPENSC */
40599059Sdes
40699059Sdes/* Define if you want to use OpenSSL's internally seeded PRNG only */
40799059Sdes#define OPENSSL_PRNG_ONLY 1
40899059Sdes
40999059Sdes/* Define if you shouldn't strip 'tty' from your ttyname in [uw]tmp */
41099059Sdes/* #undef WITH_ABBREV_NO_TTY */
41199059Sdes
41299059Sdes/* Define if you want a different $PATH for the superuser */
41399059Sdes/* #undef SUPERUSER_PATH */
41499059Sdes
41599059Sdes/* Path that unprivileged child will chroot() to in privep mode */
41699059Sdes/* #undef PRIVSEP_PATH */
41799059Sdes
418107553Sdes/* Define if your platform needs to skip post auth file descriptor passing */
419107553Sdes/* #undef DISABLE_FD_PASSING */
42099059Sdes
421113912Sdes/* Silly mkstemp() */
422113912Sdes/* #undef HAVE_STRICT_MKSTEMP */
42399065Sdes
424113912Sdes/* Some systems put this outside of libc */
425113912Sdes#define HAVE_NANOSLEEP 1
426113912Sdes
427124244Sdes/* Define if sshd somehow reacquires a controlling TTY after setsid() */
428124244Sdes/* #undef SSHD_ACQUIRES_CTTY */
429113912Sdes
430124244Sdes/* Define if cmsg_type is not passed correctly */
431124244Sdes/* #undef BROKEN_CMSG_TYPE */
432113912Sdes
433124244Sdes/* Strings used in /etc/passwd to denote locked account */
434124244Sdes/* #undef LOCKED_PASSWD_STRING */
435124244Sdes/* #undef LOCKED_PASSWD_PREFIX */
436124244Sdes/* #undef LOCKED_PASSWD_SUBSTR */
437124244Sdes
438124244Sdes/* Define if getrrsetbyname() exists */
439124244Sdes/* #undef HAVE_GETRRSETBYNAME */
440124244Sdes
441124244Sdes/* Define if HEADER.ad exists in arpa/nameser.h */
442126279Sdes#define HAVE_HEADER_AD 1
443124244Sdes
444126279Sdes/* Define if your resolver libs need this for getrrsetbyname */
445126279Sdes/* #undef BIND_8_COMPAT */
446124244Sdes
447126279Sdes
448107553Sdes/* Define to 1 if the `getpgrp' function requires zero arguments. */
44999059Sdes#define GETPGRP_VOID 1
45099059Sdes
451107553Sdes/* Define to 1 if you have the `arc4random' function. */
45299059Sdes#define HAVE_ARC4RANDOM 1
45399059Sdes
454107553Sdes/* Define to 1 if you have the `b64_ntop' function. */
45599059Sdes/* #undef HAVE_B64_NTOP */
45699059Sdes
457113912Sdes/* Define to 1 if you have the `b64_pton' function. */
458113912Sdes/* #undef HAVE_B64_PTON */
459113912Sdes
460107553Sdes/* Define to 1 if you have the `bcopy' function. */
46199059Sdes#define HAVE_BCOPY 1
46299059Sdes
463107553Sdes/* Define to 1 if you have the `bindresvport_sa' function. */
46499059Sdes#define HAVE_BINDRESVPORT_SA 1
46599059Sdes
466107553Sdes/* Define to 1 if you have the <bstring.h> header file. */
46799059Sdes/* #undef HAVE_BSTRING_H */
46899059Sdes
469107553Sdes/* Define to 1 if you have the `clock' function. */
47099059Sdes#define HAVE_CLOCK 1
47199059Sdes
472124244Sdes/* Define if gai_strerror() returns const char * */
473124244Sdes/* #undef HAVE_CONST_GAI_STRERROR_PROTO */
474124244Sdes
475107553Sdes/* Define to 1 if you have the <crypt.h> header file. */
47699059Sdes/* #undef HAVE_CRYPT_H */
47799059Sdes
478107553Sdes/* Define to 1 if you have the `dirname' function. */
47999059Sdes#define HAVE_DIRNAME 1
48099059Sdes
481107553Sdes/* Define to 1 if you have the <endian.h> header file. */
48299059Sdes/* #undef HAVE_ENDIAN_H */
48399059Sdes
484107553Sdes/* Define to 1 if you have the `endutent' function. */
48599319Sdes/* #undef HAVE_ENDUTENT */
48699059Sdes
487107553Sdes/* Define to 1 if you have the `endutxent' function. */
48899059Sdes/* #undef HAVE_ENDUTXENT */
48999059Sdes
490107553Sdes/* Define to 1 if you have the `fchmod' function. */
49199059Sdes#define HAVE_FCHMOD 1
49299059Sdes
493107553Sdes/* Define to 1 if you have the `fchown' function. */
49499059Sdes#define HAVE_FCHOWN 1
49599059Sdes
496124244Sdes/* Define to 1 if you have the <features.h> header file. */
497124244Sdes/* #undef HAVE_FEATURES_H */
498124244Sdes
499107553Sdes/* Define to 1 if you have the <floatingpoint.h> header file. */
50099059Sdes#define HAVE_FLOATINGPOINT_H 1
50199059Sdes
502107553Sdes/* Define to 1 if you have the `freeaddrinfo' function. */
50399059Sdes#define HAVE_FREEADDRINFO 1
50499059Sdes
505107553Sdes/* Define to 1 if you have the `futimes' function. */
50699059Sdes#define HAVE_FUTIMES 1
50799059Sdes
508107553Sdes/* Define to 1 if you have the `gai_strerror' function. */
50999059Sdes#define HAVE_GAI_STRERROR 1
51099059Sdes
511107553Sdes/* Define to 1 if you have the `getaddrinfo' function. */
51299059Sdes#define HAVE_GETADDRINFO 1
51399059Sdes
514107553Sdes/* Define to 1 if you have the `getcwd' function. */
51599059Sdes#define HAVE_GETCWD 1
51699059Sdes
517107553Sdes/* Define to 1 if you have the `getgrouplist' function. */
51899059Sdes#define HAVE_GETGROUPLIST 1
51999059Sdes
520107553Sdes/* Define to 1 if you have the `getluid' function. */
52199059Sdes/* #undef HAVE_GETLUID */
52299059Sdes
523107553Sdes/* Define to 1 if you have the `getnameinfo' function. */
52499059Sdes#define HAVE_GETNAMEINFO 1
52599059Sdes
526107553Sdes/* Define to 1 if you have the `getopt' function. */
52799059Sdes#define HAVE_GETOPT 1
52899059Sdes
529107553Sdes/* Define to 1 if you have the <getopt.h> header file. */
530107553Sdes#define HAVE_GETOPT_H 1
53199059Sdes
532107553Sdes/* Define to 1 if you have the `getpeereid' function. */
533107553Sdes#define HAVE_GETPEEREID 1
534107553Sdes
535107553Sdes/* Define to 1 if you have the `getpwanam' function. */
53699059Sdes/* #undef HAVE_GETPWANAM */
53799059Sdes
538107553Sdes/* Define to 1 if you have the `getrlimit' function. */
53999059Sdes#define HAVE_GETRLIMIT 1
54099059Sdes
541107553Sdes/* Define to 1 if you have the `getrusage' function. */
542124244Sdes/* #undef HAVE_GETRUSAGE */
54399059Sdes
544107553Sdes/* Define to 1 if you have the `gettimeofday' function. */
54599059Sdes#define HAVE_GETTIMEOFDAY 1
54699059Sdes
547107553Sdes/* Define to 1 if you have the `getttyent' function. */
54899059Sdes#define HAVE_GETTTYENT 1
54999059Sdes
550107553Sdes/* Define to 1 if you have the `getutent' function. */
55199059Sdes/* #undef HAVE_GETUTENT */
55299059Sdes
553107553Sdes/* Define to 1 if you have the `getutid' function. */
55499059Sdes/* #undef HAVE_GETUTID */
55599059Sdes
556107553Sdes/* Define to 1 if you have the `getutline' function. */
55799319Sdes/* #undef HAVE_GETUTLINE */
55899059Sdes
559107553Sdes/* Define to 1 if you have the `getutxent' function. */
56099059Sdes/* #undef HAVE_GETUTXENT */
56199059Sdes
562107553Sdes/* Define to 1 if you have the `getutxid' function. */
56399059Sdes/* #undef HAVE_GETUTXID */
56499059Sdes
565107553Sdes/* Define to 1 if you have the `getutxline' function. */
56699059Sdes/* #undef HAVE_GETUTXLINE */
56799059Sdes
568107553Sdes/* Define to 1 if you have the `glob' function. */
56999059Sdes#define HAVE_GLOB 1
57099059Sdes
571107553Sdes/* Define to 1 if you have the <glob.h> header file. */
57299059Sdes#define HAVE_GLOB_H 1
57399059Sdes
574126279Sdes/* Define to 1 if you have the <gssapi_generic.h> header file. */
575126279Sdes/* #undef HAVE_GSSAPI_GENERIC_H */
576126279Sdes
577126279Sdes/* Define to 1 if you have the <gssapi/gssapi_generic.h> header file. */
578126279Sdes/* #undef HAVE_GSSAPI_GSSAPI_GENERIC_H */
579126279Sdes
580126279Sdes/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
581126279Sdes/* #undef HAVE_GSSAPI_GSSAPI_H */
582126279Sdes
583126279Sdes/* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
584126279Sdes/* #undef HAVE_GSSAPI_GSSAPI_KRB5_H */
585126279Sdes
586124244Sdes/* Define to 1 if you have the <gssapi.h> header file. */
587124244Sdes/* #undef HAVE_GSSAPI_H */
588124244Sdes
589126279Sdes/* Define to 1 if you have the <gssapi_krb5.h> header file. */
590126279Sdes/* #undef HAVE_GSSAPI_KRB5_H */
591126279Sdes
592107553Sdes/* Define to 1 if you have the <ia.h> header file. */
593107553Sdes/* #undef HAVE_IA_H */
594107553Sdes
595107553Sdes/* Define to 1 if you have the `inet_aton' function. */
59699059Sdes#define HAVE_INET_ATON 1
59799059Sdes
598107553Sdes/* Define to 1 if you have the `inet_ntoa' function. */
59999059Sdes#define HAVE_INET_NTOA 1
60099059Sdes
601107553Sdes/* Define to 1 if you have the `inet_ntop' function. */
60299059Sdes#define HAVE_INET_NTOP 1
60399059Sdes
604107553Sdes/* Define to 1 if you have the `innetgr' function. */
60599059Sdes#define HAVE_INNETGR 1
60699059Sdes
607107553Sdes/* Define to 1 if you have the <inttypes.h> header file. */
60899059Sdes#define HAVE_INTTYPES_H 1
60999059Sdes
610107553Sdes/* Define to 1 if you have the <lastlog.h> header file. */
61199059Sdes/* #undef HAVE_LASTLOG_H */
61299059Sdes
613107553Sdes/* Define to 1 if you have the `crypt' library (-lcrypt). */
614107553Sdes/* #undef HAVE_LIBCRYPT */
615107553Sdes
616107553Sdes/* Define to 1 if you have the `dl' library (-ldl). */
61799059Sdes/* #undef HAVE_LIBDL */
61899059Sdes
619107553Sdes/* Define to 1 if you have the <libgen.h> header file. */
62099059Sdes#define HAVE_LIBGEN_H 1
62199059Sdes
622107553Sdes/* Define to 1 if you have the `nsl' library (-lnsl). */
62399059Sdes/* #undef HAVE_LIBNSL */
62499059Sdes
625107553Sdes/* Define to 1 if you have the `pam' library (-lpam). */
62699059Sdes#define HAVE_LIBPAM 1
62799059Sdes
628107553Sdes/* Define to 1 if you have the `sectok' library (-lsectok). */
62999059Sdes/* #undef HAVE_LIBSECTOK */
63099059Sdes
631107553Sdes/* Define to 1 if you have the `socket' library (-lsocket). */
63299059Sdes/* #undef HAVE_LIBSOCKET */
63399059Sdes
634107553Sdes/* Define to 1 if you have the <libutil.h> header file. */
63599059Sdes#define HAVE_LIBUTIL_H 1
63699059Sdes
637107553Sdes/* Define to 1 if you have the `xnet' library (-lxnet). */
638107553Sdes/* #undef HAVE_LIBXNET */
639107553Sdes
640107553Sdes/* Define to 1 if you have the `z' library (-lz). */
64199059Sdes#define HAVE_LIBZ 1
64299059Sdes
643107553Sdes/* Define to 1 if you have the <limits.h> header file. */
64499059Sdes#define HAVE_LIMITS_H 1
64599059Sdes
646107553Sdes/* Define to 1 if you have the <login_cap.h> header file. */
64799059Sdes#define HAVE_LOGIN_CAP_H 1
64899059Sdes
649107553Sdes/* Define to 1 if you have the `login_getcapbool' function. */
65099059Sdes#define HAVE_LOGIN_GETCAPBOOL 1
65199059Sdes
652107553Sdes/* Define to 1 if you have the <login.h> header file. */
65399059Sdes/* #undef HAVE_LOGIN_H */
65499059Sdes
655107553Sdes/* Define to 1 if you have the `logout' function. */
65699059Sdes#define HAVE_LOGOUT 1
65799059Sdes
658107553Sdes/* Define to 1 if you have the `logwtmp' function. */
65999059Sdes#define HAVE_LOGWTMP 1
66099059Sdes
661107553Sdes/* Define to 1 if you have the <maillock.h> header file. */
66299059Sdes/* #undef HAVE_MAILLOCK_H */
66399059Sdes
664107553Sdes/* Define to 1 if you have the `md5_crypt' function. */
66599059Sdes/* #undef HAVE_MD5_CRYPT */
66699059Sdes
667107553Sdes/* Define to 1 if you have the `memmove' function. */
66899059Sdes#define HAVE_MEMMOVE 1
66999059Sdes
670107553Sdes/* Define to 1 if you have the <memory.h> header file. */
67199059Sdes#define HAVE_MEMORY_H 1
67299059Sdes
673107553Sdes/* Define to 1 if you have the `mkdtemp' function. */
67499059Sdes#define HAVE_MKDTEMP 1
67599059Sdes
676107553Sdes/* Define to 1 if you have the `mmap' function. */
67799059Sdes#define HAVE_MMAP 1
67899059Sdes
679107553Sdes/* Define to 1 if you have the <netdb.h> header file. */
68099059Sdes#define HAVE_NETDB_H 1
68199059Sdes
682107553Sdes/* Define to 1 if you have the <netgroup.h> header file. */
68399059Sdes/* #undef HAVE_NETGROUP_H */
68499059Sdes
685107553Sdes/* Define to 1 if you have the <netinet/in_systm.h> header file. */
68699059Sdes#define HAVE_NETINET_IN_SYSTM_H 1
68799059Sdes
688107553Sdes/* Define to 1 if you have the `ngetaddrinfo' function. */
68999059Sdes/* #undef HAVE_NGETADDRINFO */
69099059Sdes
691113912Sdes/* Define to 1 if you have the `nsleep' function. */
692113912Sdes/* #undef HAVE_NSLEEP */
693113912Sdes
694107553Sdes/* Define to 1 if you have the `ogetaddrinfo' function. */
69599059Sdes/* #undef HAVE_OGETADDRINFO */
69699059Sdes
697124244Sdes/* Define to 1 if you have the `openlog_r' function. */
698124244Sdes/* #undef HAVE_OPENLOG_R */
699124244Sdes
700107553Sdes/* Define to 1 if you have the `openpty' function. */
70199059Sdes#define HAVE_OPENPTY 1
70299059Sdes
703107553Sdes/* Define to 1 if you have the `pam_getenvlist' function. */
70499059Sdes#define HAVE_PAM_GETENVLIST 1
70599059Sdes
706126279Sdes/* Define to 1 if you have the <pam/pam_appl.h> header file. */
707126279Sdes/* #undef HAVE_PAM_PAM_APPL_H */
708126279Sdes
709124244Sdes/* Define to 1 if you have the `pam_putenv' function. */
710124244Sdes#define HAVE_PAM_PUTENV 1
711124244Sdes
712107553Sdes/* Define to 1 if you have the <paths.h> header file. */
71399059Sdes#define HAVE_PATHS_H 1
71499059Sdes
715113912Sdes/* Define to 1 if you have the `pstat' function. */
716113912Sdes/* #undef HAVE_PSTAT */
717113912Sdes
718107553Sdes/* Define to 1 if you have the <pty.h> header file. */
71999059Sdes/* #undef HAVE_PTY_H */
72099059Sdes
721107553Sdes/* Define to 1 if you have the `pututline' function. */
72299319Sdes/* #undef HAVE_PUTUTLINE */
72399059Sdes
724107553Sdes/* Define to 1 if you have the `pututxline' function. */
72599059Sdes/* #undef HAVE_PUTUTXLINE */
72699059Sdes
727107553Sdes/* Define to 1 if you have the `readpassphrase' function. */
72899059Sdes#define HAVE_READPASSPHRASE 1
72999059Sdes
730107553Sdes/* Define to 1 if you have the <readpassphrase.h> header file. */
73199059Sdes#define HAVE_READPASSPHRASE_H 1
73299059Sdes
733107553Sdes/* Define to 1 if you have the `realpath' function. */
73499059Sdes#define HAVE_REALPATH 1
73599059Sdes
736107553Sdes/* Define to 1 if you have the `recvmsg' function. */
73799059Sdes#define HAVE_RECVMSG 1
73899059Sdes
739107553Sdes/* Define to 1 if you have the <rpc/types.h> header file. */
74099059Sdes#define HAVE_RPC_TYPES_H 1
74199059Sdes
742107553Sdes/* Define to 1 if you have the `rresvport_af' function. */
74399059Sdes#define HAVE_RRESVPORT_AF 1
74499059Sdes
745107553Sdes/* Define to 1 if you have the <sectok.h> header file. */
74699059Sdes/* #undef HAVE_SECTOK_H */
74799059Sdes
748107553Sdes/* Define to 1 if you have the <security/pam_appl.h> header file. */
74999059Sdes#define HAVE_SECURITY_PAM_APPL_H 1
75099059Sdes
751107553Sdes/* Define to 1 if you have the `sendmsg' function. */
75299059Sdes#define HAVE_SENDMSG 1
75399059Sdes
754124244Sdes/* Define to 1 if you have the `setauthdb' function. */
755124244Sdes/* #undef HAVE_SETAUTHDB */
756124244Sdes
757107553Sdes/* Define to 1 if you have the `setdtablesize' function. */
75899059Sdes/* #undef HAVE_SETDTABLESIZE */
75999059Sdes
760107553Sdes/* Define to 1 if you have the `setegid' function. */
76199059Sdes#define HAVE_SETEGID 1
76299059Sdes
763107553Sdes/* Define to 1 if you have the `setenv' function. */
76499059Sdes#define HAVE_SETENV 1
76599059Sdes
766107553Sdes/* Define to 1 if you have the `seteuid' function. */
76799059Sdes#define HAVE_SETEUID 1
76899059Sdes
769107553Sdes/* Define to 1 if you have the `setgroups' function. */
77099059Sdes#define HAVE_SETGROUPS 1
77199059Sdes
772107553Sdes/* Define to 1 if you have the `setlogin' function. */
77399059Sdes#define HAVE_SETLOGIN 1
77499059Sdes
775107553Sdes/* Define to 1 if you have the `setluid' function. */
77699059Sdes/* #undef HAVE_SETLUID */
77799059Sdes
778107553Sdes/* Define to 1 if you have the `setpcred' function. */
77999059Sdes/* #undef HAVE_SETPCRED */
78099059Sdes
781107553Sdes/* Define to 1 if you have the `setproctitle' function. */
78299059Sdes#define HAVE_SETPROCTITLE 1
78399059Sdes
784124244Sdes/* Define to 1 if you have the `setregid' function. */
785124244Sdes#define HAVE_SETREGID 1
786124244Sdes
787107553Sdes/* Define to 1 if you have the `setresgid' function. */
78899059Sdes#define HAVE_SETRESGID 1
78999059Sdes
790124244Sdes/* Define to 1 if you have the `setresuid' function. */
791124244Sdes#define HAVE_SETRESUID 1
792124244Sdes
793107553Sdes/* Define to 1 if you have the `setreuid' function. */
79499059Sdes#define HAVE_SETREUID 1
79599059Sdes
796107553Sdes/* Define to 1 if you have the `setrlimit' function. */
79799059Sdes#define HAVE_SETRLIMIT 1
79899059Sdes
799107553Sdes/* Define to 1 if you have the `setsid' function. */
80099059Sdes#define HAVE_SETSID 1
80199059Sdes
802107553Sdes/* Define to 1 if you have the `setutent' function. */
80399319Sdes/* #undef HAVE_SETUTENT */
80499059Sdes
805107553Sdes/* Define to 1 if you have the `setutxent' function. */
80699059Sdes/* #undef HAVE_SETUTXENT */
80799059Sdes
808107553Sdes/* Define to 1 if you have the `setvbuf' function. */
80999059Sdes#define HAVE_SETVBUF 1
81099059Sdes
811107553Sdes/* Define to 1 if you have the <shadow.h> header file. */
81299059Sdes/* #undef HAVE_SHADOW_H */
81399059Sdes
814107553Sdes/* Define to 1 if you have the `sigaction' function. */
81599059Sdes#define HAVE_SIGACTION 1
81699059Sdes
817107553Sdes/* Define to 1 if you have the `sigvec' function. */
81899059Sdes#define HAVE_SIGVEC 1
81999059Sdes
820107553Sdes/* Define to 1 if the system has the type `sig_atomic_t'. */
82199059Sdes#define HAVE_SIG_ATOMIC_T 1
82299059Sdes
823107553Sdes/* Define to 1 if you have the `snprintf' function. */
82499059Sdes#define HAVE_SNPRINTF 1
82599059Sdes
826107553Sdes/* Define to 1 if you have the `socketpair' function. */
82799059Sdes#define HAVE_SOCKETPAIR 1
82899059Sdes
829107553Sdes/* Define to 1 if you have the <stddef.h> header file. */
83099059Sdes#define HAVE_STDDEF_H 1
83199059Sdes
832107553Sdes/* Define to 1 if you have the <stdint.h> header file. */
83399059Sdes#define HAVE_STDINT_H 1
83499059Sdes
835107553Sdes/* Define to 1 if you have the <stdlib.h> header file. */
83699059Sdes#define HAVE_STDLIB_H 1
83799059Sdes
838107553Sdes/* Define to 1 if you have the `strerror' function. */
83999059Sdes#define HAVE_STRERROR 1
84099059Sdes
841107553Sdes/* Define to 1 if you have the `strftime' function. */
84299059Sdes#define HAVE_STRFTIME 1
84399059Sdes
844107553Sdes/* Define to 1 if you have the <strings.h> header file. */
84599059Sdes#define HAVE_STRINGS_H 1
84699059Sdes
847107553Sdes/* Define to 1 if you have the <string.h> header file. */
84899059Sdes#define HAVE_STRING_H 1
84999059Sdes
850107553Sdes/* Define to 1 if you have the `strlcat' function. */
85199059Sdes#define HAVE_STRLCAT 1
85299059Sdes
853107553Sdes/* Define to 1 if you have the `strlcpy' function. */
85499059Sdes#define HAVE_STRLCPY 1
85599059Sdes
856107553Sdes/* Define to 1 if you have the `strmode' function. */
85799059Sdes#define HAVE_STRMODE 1
85899059Sdes
859113912Sdes/* Define to 1 if you have the `strnvis' function. */
860113912Sdes/* #undef HAVE_STRNVIS */
861113912Sdes
862107553Sdes/* Define to 1 if you have the `strsep' function. */
86399059Sdes#define HAVE_STRSEP 1
86499059Sdes
865126279Sdes/* Define to 1 if you have the `strtoul' function. */
866126279Sdes#define HAVE_STRTOUL 1
867126279Sdes
868107553Sdes/* Define to 1 if `st_blksize' is member of `struct stat'. */
86999059Sdes#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
87099059Sdes
871113912Sdes/* Define to 1 if the system has the type `struct timespec'. */
872113912Sdes#define HAVE_STRUCT_TIMESPEC 1
873113912Sdes
874107553Sdes/* Define to 1 if you have the `sysconf' function. */
87599059Sdes#define HAVE_SYSCONF 1
87699059Sdes
877124244Sdes/* Define to 1 if you have the <sys/audit.h> header file. */
878124244Sdes/* #undef HAVE_SYS_AUDIT_H */
879124244Sdes
880107553Sdes/* Define to 1 if you have the <sys/bitypes.h> header file. */
88199059Sdes/* #undef HAVE_SYS_BITYPES_H */
88299059Sdes
883107553Sdes/* Define to 1 if you have the <sys/bsdtty.h> header file. */
88499059Sdes/* #undef HAVE_SYS_BSDTTY_H */
88599059Sdes
886107553Sdes/* Define to 1 if you have the <sys/cdefs.h> header file. */
88799059Sdes#define HAVE_SYS_CDEFS_H 1
88899059Sdes
889107553Sdes/* Define to 1 if you have the <sys/mman.h> header file. */
89099059Sdes#define HAVE_SYS_MMAN_H 1
89199059Sdes
892113912Sdes/* Define to 1 if you have the <sys/pstat.h> header file. */
893113912Sdes/* #undef HAVE_SYS_PSTAT_H */
894113912Sdes
895126279Sdes/* Define to 1 if you have the <sys/ptms.h> header file. */
896126279Sdes/* #undef HAVE_SYS_PTMS_H */
897126279Sdes
898107553Sdes/* Define to 1 if you have the <sys/select.h> header file. */
89999059Sdes#define HAVE_SYS_SELECT_H 1
90099059Sdes
901107553Sdes/* Define to 1 if you have the <sys/stat.h> header file. */
90299059Sdes#define HAVE_SYS_STAT_H 1
90399059Sdes
904126279Sdes/* Define to 1 if you have the <sys/stream.h> header file. */
905126279Sdes/* #undef HAVE_SYS_STREAM_H */
906126279Sdes
907107553Sdes/* Define to 1 if you have the <sys/stropts.h> header file. */
90899059Sdes/* #undef HAVE_SYS_STROPTS_H */
90999059Sdes
910124244Sdes/* Define to 1 if you have the <sys/strtio.h> header file. */
911124244Sdes/* #undef HAVE_SYS_STRTIO_H */
912124244Sdes
913107553Sdes/* Define to 1 if you have the <sys/sysmacros.h> header file. */
91499059Sdes/* #undef HAVE_SYS_SYSMACROS_H */
91599059Sdes
916113912Sdes/* Define to 1 if you have the <sys/timers.h> header file. */
917113912Sdes#define HAVE_SYS_TIMERS_H 1
918113912Sdes
919107553Sdes/* Define to 1 if you have the <sys/time.h> header file. */
92099059Sdes#define HAVE_SYS_TIME_H 1
92199059Sdes
922107553Sdes/* Define to 1 if you have the <sys/types.h> header file. */
92399059Sdes#define HAVE_SYS_TYPES_H 1
92499059Sdes
925107553Sdes/* Define to 1 if you have the <sys/un.h> header file. */
92699059Sdes#define HAVE_SYS_UN_H 1
92799059Sdes
928107553Sdes/* Define to 1 if you have the `tcgetpgrp' function. */
92999059Sdes#define HAVE_TCGETPGRP 1
93099059Sdes
931124244Sdes/* Define to 1 if you have the `tcsendbreak' function. */
932124244Sdes#define HAVE_TCSENDBREAK 1
933124244Sdes
934107553Sdes/* Define to 1 if you have the `time' function. */
93599059Sdes#define HAVE_TIME 1
93699059Sdes
937107553Sdes/* Define to 1 if you have the <time.h> header file. */
93899059Sdes#define HAVE_TIME_H 1
93999059Sdes
940107553Sdes/* Define to 1 if you have the <tmpdir.h> header file. */
941107553Sdes/* #undef HAVE_TMPDIR_H */
942107553Sdes
943107553Sdes/* Define to 1 if you have the `truncate' function. */
94499059Sdes#define HAVE_TRUNCATE 1
94599059Sdes
946107553Sdes/* Define to 1 if you have the <ttyent.h> header file. */
94799059Sdes#define HAVE_TTYENT_H 1
94899059Sdes
949107553Sdes/* Define to 1 if you have the <unistd.h> header file. */
95099059Sdes#define HAVE_UNISTD_H 1
95199059Sdes
952107553Sdes/* Define to 1 if you have the `updwtmp' function. */
95399059Sdes/* #undef HAVE_UPDWTMP */
95499059Sdes
955126279Sdes/* Define to 1 if you have the `updwtmpx' function. */
956126279Sdes/* #undef HAVE_UPDWTMPX */
957126279Sdes
958107553Sdes/* Define to 1 if you have the <usersec.h> header file. */
95999059Sdes/* #undef HAVE_USERSEC_H */
96099059Sdes
961107553Sdes/* Define to 1 if you have the <util.h> header file. */
96299059Sdes/* #undef HAVE_UTIL_H */
96399059Sdes
964107553Sdes/* Define to 1 if you have the `utimes' function. */
96599059Sdes#define HAVE_UTIMES 1
96699059Sdes
967107553Sdes/* Define to 1 if you have the <utime.h> header file. */
96899059Sdes#define HAVE_UTIME_H 1
96999059Sdes
970107553Sdes/* Define to 1 if you have the `utmpname' function. */
97199059Sdes/* #undef HAVE_UTMPNAME */
97299059Sdes
973107553Sdes/* Define to 1 if you have the `utmpxname' function. */
97499059Sdes/* #undef HAVE_UTMPXNAME */
97599059Sdes
976107553Sdes/* Define to 1 if you have the <utmpx.h> header file. */
97799059Sdes/* #undef HAVE_UTMPX_H */
97899059Sdes
979107553Sdes/* Define to 1 if you have the <utmp.h> header file. */
98099059Sdes#define HAVE_UTMP_H 1
98199059Sdes
982107553Sdes/* Define to 1 if you have the `vhangup' function. */
98399059Sdes/* #undef HAVE_VHANGUP */
98499059Sdes
985124244Sdes/* Define to 1 if you have the <vis.h> header file. */
986124244Sdes#define HAVE_VIS_H 1
987124244Sdes
988107553Sdes/* Define to 1 if you have the `vsnprintf' function. */
98999059Sdes#define HAVE_VSNPRINTF 1
99099059Sdes
991107553Sdes/* Define to 1 if you have the `waitpid' function. */
99299059Sdes#define HAVE_WAITPID 1
99399059Sdes
994124244Sdes/* Define to 1 if you have the `_getlong' function. */
995126279Sdes#define HAVE__GETLONG 1
996124244Sdes
997107553Sdes/* Define to 1 if you have the `_getpty' function. */
99899059Sdes/* #undef HAVE__GETPTY */
99999059Sdes
1000124244Sdes/* Define to 1 if you have the `_getshort' function. */
1001126279Sdes#define HAVE__GETSHORT 1
1002124244Sdes
1003107553Sdes/* Define to 1 if you have the `__b64_ntop' function. */
100499059Sdes#define HAVE___B64_NTOP 1
100599059Sdes
1006113912Sdes/* Define to 1 if you have the `__b64_pton' function. */
1007113912Sdes#define HAVE___B64_PTON 1
1008113912Sdes
1009107553Sdes/* Define to the address where bug reports for this package should be sent. */
1010107553Sdes#define PACKAGE_BUGREPORT ""
1011107553Sdes
1012107553Sdes/* Define to the full name of this package. */
1013107553Sdes#define PACKAGE_NAME ""
1014107553Sdes
1015107553Sdes/* Define to the full name and version of this package. */
1016107553Sdes#define PACKAGE_STRING ""
1017107553Sdes
1018107553Sdes/* Define to the one symbol short name of this package. */
1019107553Sdes#define PACKAGE_TARNAME ""
1020107553Sdes
1021107553Sdes/* Define to the version of this package. */
1022107553Sdes#define PACKAGE_VERSION ""
1023107553Sdes
102499059Sdes/* The size of a `char', as computed by sizeof. */
102599059Sdes#define SIZEOF_CHAR 1
102699059Sdes
102799059Sdes/* The size of a `int', as computed by sizeof. */
102899059Sdes#define SIZEOF_INT 4
102999059Sdes
103099059Sdes/* The size of a `long int', as computed by sizeof. */
103199059Sdes#define SIZEOF_LONG_INT 4
103299059Sdes
103399059Sdes/* The size of a `long long int', as computed by sizeof. */
103499059Sdes#define SIZEOF_LONG_LONG_INT 8
103599059Sdes
103699059Sdes/* The size of a `short int', as computed by sizeof. */
103799059Sdes#define SIZEOF_SHORT_INT 2
103899059Sdes
1039107553Sdes/* Define to 1 if you have the ANSI C header files. */
104099059Sdes#define STDC_HEADERS 1
104199059Sdes
1042107553Sdes/* Define to 1 if your processor stores words with the most significant byte
1043107553Sdes   first (like Motorola and SPARC, unlike Intel and VAX). */
104499059Sdes/* #undef WORDS_BIGENDIAN */
104599059Sdes
104699059Sdes/* Number of bits in a file offset, on hosts where this is settable. */
104799059Sdes/* #undef _FILE_OFFSET_BITS */
104899059Sdes
104999059Sdes/* Define for large files, on AIX-style hosts. */
105099059Sdes/* #undef _LARGE_FILES */
105199059Sdes
105299059Sdes/* Define as `__inline' if that's what the C compiler calls it, or to nothing
105399059Sdes   if it is not supported. */
105499059Sdes/* #undef inline */
105599059Sdes
105699059Sdes/* type to use in place of socklen_t if not defined */
105799059Sdes/* #undef socklen_t */
105899059Sdes
105999059Sdes/* ******************* Shouldn't need to edit below this line ************** */
106099059Sdes
106199059Sdes#endif /* _CONFIG_H */
1062