xref: /titanic_44/usr/src/cmd/ssh/include/config.h (revision a5229c74bcec7e2b136379c59a46f4b0717fd516)
17c478bd9Sstevel@tonic-gate /* config.h.  Generated by configure.  */
27c478bd9Sstevel@tonic-gate /* config.h.in.  Generated from configure.ac by autoheader.  */
37c478bd9Sstevel@tonic-gate /* $Id: acconfig.h,v 1.145 2002/09/26 00:38:48 tim Exp $ */
423a1cceaSRoger A. Faulkner 
57c478bd9Sstevel@tonic-gate /*
623a1cceaSRoger A. Faulkner  * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
7*a5229c74SGary Mills  * Copyright (c) 2013 Gary Mills
87c478bd9Sstevel@tonic-gate  */
97c478bd9Sstevel@tonic-gate 
107c478bd9Sstevel@tonic-gate #ifndef	_CONFIG_H
117c478bd9Sstevel@tonic-gate #define	_CONFIG_H
127c478bd9Sstevel@tonic-gate 
137c478bd9Sstevel@tonic-gate #ifdef __cplusplus
147c478bd9Sstevel@tonic-gate extern "C" {
157c478bd9Sstevel@tonic-gate #endif
167c478bd9Sstevel@tonic-gate 
177c478bd9Sstevel@tonic-gate 
187c478bd9Sstevel@tonic-gate /* Generated automatically from acconfig.h by autoheader. */
197c478bd9Sstevel@tonic-gate /* Please make your changes there */
207c478bd9Sstevel@tonic-gate 
217c478bd9Sstevel@tonic-gate 
227c478bd9Sstevel@tonic-gate /* Define to a Set Process Title type if your system is */
237c478bd9Sstevel@tonic-gate /* supported by bsd-setproctitle.c */
247c478bd9Sstevel@tonic-gate /* #undef SPT_TYPE */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate /* setgroups() NOOP allowed */
277c478bd9Sstevel@tonic-gate /* #undef SETGROUPS_NOOP */
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate /* SCO workaround */
307c478bd9Sstevel@tonic-gate /* #undef BROKEN_SYS_TERMIO_H */
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate /* If your header files don't define LOGIN_PROGRAM, then use this (detected) */
337c478bd9Sstevel@tonic-gate /* from environment and PATH */
347c478bd9Sstevel@tonic-gate #define	LOGIN_PROGRAM_FALLBACK "/usr/bin/login"
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate /* Define if your password has a pw_class field */
377c478bd9Sstevel@tonic-gate /* #undef HAVE_PW_CLASS_IN_PASSWD */
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate /* Define if your password has a pw_expire field */
407c478bd9Sstevel@tonic-gate /* #undef HAVE_PW_EXPIRE_IN_PASSWD */
417c478bd9Sstevel@tonic-gate 
427c478bd9Sstevel@tonic-gate /* Define if your password has a pw_change field */
437c478bd9Sstevel@tonic-gate /* #undef HAVE_PW_CHANGE_IN_PASSWD */
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /* Define if your system uses access rights style file descriptor passing */
467c478bd9Sstevel@tonic-gate #define	HAVE_ACCRIGHTS_IN_MSGHDR 1
477c478bd9Sstevel@tonic-gate 
487c478bd9Sstevel@tonic-gate /* Define if your system uses ancillary data style file descriptor passing */
497c478bd9Sstevel@tonic-gate /* #undef HAVE_CONTROL_IN_MSGHDR */
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate /* Define if you system's inet_ntoa is busted (e.g. Irix gcc issue) */
527c478bd9Sstevel@tonic-gate /* #undef BROKEN_INET_NTOA */
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate /* Define if your system defines sys_errlist[] */
557c478bd9Sstevel@tonic-gate #define	HAVE_SYS_ERRLIST 1
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate /* Define if your system defines sys_nerr */
587c478bd9Sstevel@tonic-gate #define	HAVE_SYS_NERR 1
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate /* Define if your system choked on IP TOS setting */
617c478bd9Sstevel@tonic-gate #define	IP_TOS_IS_BROKEN 1
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate /* Define if you have the getuserattr function.  */
647c478bd9Sstevel@tonic-gate /* #undef HAVE_GETUSERATTR */
657c478bd9Sstevel@tonic-gate 
667c478bd9Sstevel@tonic-gate /* Work around problematic Linux PAM modules handling of PAM_TTY */
677c478bd9Sstevel@tonic-gate #define	PAM_TTY_KLUDGE 1
687c478bd9Sstevel@tonic-gate 
697c478bd9Sstevel@tonic-gate /* Define if your snprintf is busted */
707c478bd9Sstevel@tonic-gate /* #undef BROKEN_SNPRINTF */
717c478bd9Sstevel@tonic-gate 
727c478bd9Sstevel@tonic-gate /* Define if you are on Cygwin */
737c478bd9Sstevel@tonic-gate /* #undef HAVE_CYGWIN */
747c478bd9Sstevel@tonic-gate 
757c478bd9Sstevel@tonic-gate /* Define if you have a broken realpath. */
767c478bd9Sstevel@tonic-gate /* #undef BROKEN_REALPATH */
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate /* Define if you are on NEWS-OS */
797c478bd9Sstevel@tonic-gate /* #undef HAVE_NEWS4 */
807c478bd9Sstevel@tonic-gate 
817c478bd9Sstevel@tonic-gate /* Define if you want to enable PAM support */
827c478bd9Sstevel@tonic-gate #define	USE_PAM 1
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate /* Define if you want to enable AIX4's authenticate function */
857c478bd9Sstevel@tonic-gate /* #undef WITH_AIXAUTHENTICATE */
867c478bd9Sstevel@tonic-gate 
876b82a780Sjp161948 /*
886b82a780Sjp161948  * Define if you have/want arrays (cluster-wide session managment, not C
896b82a780Sjp161948  * arrays)
906b82a780Sjp161948  */
917c478bd9Sstevel@tonic-gate /* #undef WITH_IRIX_ARRAY */
927c478bd9Sstevel@tonic-gate 
937c478bd9Sstevel@tonic-gate /* Define if you want IRIX project management */
947c478bd9Sstevel@tonic-gate /* #undef WITH_IRIX_PROJECT */
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate /* Define if you want IRIX audit trails */
977c478bd9Sstevel@tonic-gate /* #undef WITH_IRIX_AUDIT */
987c478bd9Sstevel@tonic-gate 
997c478bd9Sstevel@tonic-gate /* Define if you want IRIX kernel jobs */
1007c478bd9Sstevel@tonic-gate /* #undef WITH_IRIX_JOBS */
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate /* Location of PRNGD/EGD random number socket */
1037c478bd9Sstevel@tonic-gate /* #undef PRNGD_SOCKET */
1047c478bd9Sstevel@tonic-gate 
1057c478bd9Sstevel@tonic-gate /* Port number of PRNGD/EGD random number socket */
1067c478bd9Sstevel@tonic-gate /* #undef PRNGD_PORT */
1077c478bd9Sstevel@tonic-gate 
1087c478bd9Sstevel@tonic-gate /* Builtin PRNG command timeout */
1097c478bd9Sstevel@tonic-gate #define	ENTROPY_TIMEOUT_MSEC 200
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate /* non-privileged user for privilege separation */
1127c478bd9Sstevel@tonic-gate #define	SSH_PRIVSEP_USER "sshd"
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate /* Define if you want to install preformatted manpages. */
1157c478bd9Sstevel@tonic-gate /* #undef MANTYPE */
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate /* Define if your ssl headers are included with #include <openssl/header.h>  */
1187c478bd9Sstevel@tonic-gate #define	HAVE_OPENSSL 1
1197c478bd9Sstevel@tonic-gate 
1207c478bd9Sstevel@tonic-gate /* Define if Solaris' OpenSSL lacks AES support */
1217c478bd9Sstevel@tonic-gate #define	SOLARIS_OPENSSL_NO_AES 1
1227c478bd9Sstevel@tonic-gate 
1237c478bd9Sstevel@tonic-gate /* Define if Solaris-style Least Privilege is available */
1247c478bd9Sstevel@tonic-gate #define	HAVE_SOLARIS_PRIVILEGE 1
1257c478bd9Sstevel@tonic-gate 
1267c478bd9Sstevel@tonic-gate /* Define if you want Sun's alternative privilege separation */
1277c478bd9Sstevel@tonic-gate #define	ALTPRIVSEP
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate /* Define if you have Solaris-style Contracts */
1307c478bd9Sstevel@tonic-gate #define	HAVE_SOLARIS_CONTRACTS 1
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate /* Define if SVR4-style libcmd (for accessing /etc/default/ files) */
1337c478bd9Sstevel@tonic-gate #define	HAVE_DEFOPEN 1
1347c478bd9Sstevel@tonic-gate 
1356b82a780Sjp161948 /*
1366b82a780Sjp161948  * Define if you are linking against RSAref. Used only to print the right
1376b82a780Sjp161948  * message at run-time.
1386b82a780Sjp161948  */
1397c478bd9Sstevel@tonic-gate /* #undef RSAREF */
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate /* struct timeval */
1427c478bd9Sstevel@tonic-gate #define	HAVE_STRUCT_TIMEVAL 1
1437c478bd9Sstevel@tonic-gate 
1447c478bd9Sstevel@tonic-gate /* struct utmp and struct utmpx fields */
1457c478bd9Sstevel@tonic-gate /* #undef HAVE_HOST_IN_UTMP */
1467c478bd9Sstevel@tonic-gate #define	HAVE_HOST_IN_UTMPX 1
1477c478bd9Sstevel@tonic-gate /* #undef HAVE_ADDR_IN_UTMP */
1487c478bd9Sstevel@tonic-gate /* #undef HAVE_ADDR_IN_UTMPX */
1497c478bd9Sstevel@tonic-gate /* #undef HAVE_ADDR_V6_IN_UTMP */
1507c478bd9Sstevel@tonic-gate /* #undef HAVE_ADDR_V6_IN_UTMPX */
1517c478bd9Sstevel@tonic-gate #define	HAVE_SYSLEN_IN_UTMPX 1
1527c478bd9Sstevel@tonic-gate #define	HAVE_PID_IN_UTMP 1
1537c478bd9Sstevel@tonic-gate #define	HAVE_TYPE_IN_UTMP 1
1547c478bd9Sstevel@tonic-gate #define	HAVE_TYPE_IN_UTMPX 1
1557c478bd9Sstevel@tonic-gate /* #undef HAVE_TV_IN_UTMP */
1567c478bd9Sstevel@tonic-gate #define	HAVE_TV_IN_UTMPX 1
1577c478bd9Sstevel@tonic-gate #define	HAVE_ID_IN_UTMP 1
1587c478bd9Sstevel@tonic-gate #define	HAVE_ID_IN_UTMPX 1
1597c478bd9Sstevel@tonic-gate #define	HAVE_EXIT_IN_UTMP 1
1607c478bd9Sstevel@tonic-gate #define	HAVE_TIME_IN_UTMP 1
1617c478bd9Sstevel@tonic-gate #define	HAVE_TIME_IN_UTMPX 1
1627c478bd9Sstevel@tonic-gate 
1637c478bd9Sstevel@tonic-gate /* Define if you don't want to use your system's login() call */
1647c478bd9Sstevel@tonic-gate /* #undef DISABLE_LOGIN */
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate /* Define if you don't want to use pututline() etc. to write [uw]tmp */
1677c478bd9Sstevel@tonic-gate /* #undef DISABLE_PUTUTLINE */
1687c478bd9Sstevel@tonic-gate 
1697c478bd9Sstevel@tonic-gate /* Define if you don't want to use pututxline() etc. to write [uw]tmpx */
1707c478bd9Sstevel@tonic-gate /* #undef DISABLE_PUTUTXLINE */
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate /* Define if you don't want to use lastlog */
1737c478bd9Sstevel@tonic-gate /* #undef DISABLE_LASTLOG */
1747c478bd9Sstevel@tonic-gate 
1757c478bd9Sstevel@tonic-gate /* Define if you don't want to use lastlog in session.c */
1767c478bd9Sstevel@tonic-gate /* #undef NO_SSH_LASTLOG */
1777c478bd9Sstevel@tonic-gate 
1787c478bd9Sstevel@tonic-gate /* Define if you don't want to use utmp */
1797c478bd9Sstevel@tonic-gate #define	DISABLE_UTMP 1
1807c478bd9Sstevel@tonic-gate 
1817c478bd9Sstevel@tonic-gate /* Define if you don't want to use utmpx */
1827c478bd9Sstevel@tonic-gate /* #undef DISABLE_UTMPX */
1837c478bd9Sstevel@tonic-gate 
1847c478bd9Sstevel@tonic-gate /* Define if you don't want to use wtmp */
1857c478bd9Sstevel@tonic-gate #define	DISABLE_WTMP 1
1867c478bd9Sstevel@tonic-gate 
1877c478bd9Sstevel@tonic-gate /* Define if you don't want to use wtmpx */
1887c478bd9Sstevel@tonic-gate /* #undef DISABLE_WTMPX */
1897c478bd9Sstevel@tonic-gate 
1907c478bd9Sstevel@tonic-gate /* Some systems need a utmpx entry for /bin/login to work */
1917c478bd9Sstevel@tonic-gate #define	LOGIN_NEEDS_UTMPX 1
1927c478bd9Sstevel@tonic-gate 
1937c478bd9Sstevel@tonic-gate /* Some versions of /bin/login need the TERM supplied on the commandline */
1947c478bd9Sstevel@tonic-gate #define	LOGIN_NEEDS_TERM 1
1957c478bd9Sstevel@tonic-gate 
1967c478bd9Sstevel@tonic-gate /* Define if your login program cannot handle end of options ("--") */
1977c478bd9Sstevel@tonic-gate /* #undef LOGIN_NO_ENDOPT */
1987c478bd9Sstevel@tonic-gate 
1997c478bd9Sstevel@tonic-gate /* Define if you want to specify the path to your lastlog file */
2007c478bd9Sstevel@tonic-gate #define	CONF_LASTLOG_FILE "/var/adm/lastlog"
2017c478bd9Sstevel@tonic-gate 
2027c478bd9Sstevel@tonic-gate /* Define if you want to specify the path to your utmp file */
2037c478bd9Sstevel@tonic-gate /* #undef CONF_UTMP_FILE */
2047c478bd9Sstevel@tonic-gate 
2057c478bd9Sstevel@tonic-gate /* Define if you want to specify the path to your wtmp file */
2067c478bd9Sstevel@tonic-gate /* #undef CONF_WTMP_FILE */
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate /* Define if you want to specify the path to your utmpx file */
2097c478bd9Sstevel@tonic-gate /* #undef CONF_UTMPX_FILE */
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate /* Define if you want to specify the path to your wtmpx file */
2127c478bd9Sstevel@tonic-gate /* #undef CONF_WTMPX_FILE */
2137c478bd9Sstevel@tonic-gate 
2147c478bd9Sstevel@tonic-gate /* Define if you want external askpass support */
2157c478bd9Sstevel@tonic-gate /* #undef USE_EXTERNAL_ASKPASS */
2167c478bd9Sstevel@tonic-gate 
2177c478bd9Sstevel@tonic-gate /* Define if libc defines __progname */
21823a1cceaSRoger A. Faulkner #define	HAVE___PROGNAME 1
2197c478bd9Sstevel@tonic-gate 
2207c478bd9Sstevel@tonic-gate /* Define if compiler implements __FUNCTION__ */
2217c478bd9Sstevel@tonic-gate #define	HAVE___FUNCTION__ 1
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate /* Define if compiler implements __func__ */
2247c478bd9Sstevel@tonic-gate #define	HAVE___func__ 1
2257c478bd9Sstevel@tonic-gate 
2267c478bd9Sstevel@tonic-gate /* Define if you want GSS-API support */
2277c478bd9Sstevel@tonic-gate #define	GSSAPI 1
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate /* Define if you have <gssapi/gssapi.h> */
2307c478bd9Sstevel@tonic-gate #define	SUNW_GSSAPI 1
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate /* Define if you have GSS_Store_cred() */
2337c478bd9Sstevel@tonic-gate #define	HAVE_GSS_STORE_CRED  1
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate /* Define if you have __gss_userok() */
2367c478bd9Sstevel@tonic-gate #define	HAVE___GSS_USEROK 1
2377c478bd9Sstevel@tonic-gate 
2387c478bd9Sstevel@tonic-gate /* Define for simple authorization of GSS-API principals */
2397c478bd9Sstevel@tonic-gate /* #undef GSSAPI_SIMPLE_USEROK */
2407c478bd9Sstevel@tonic-gate 
2417c478bd9Sstevel@tonic-gate /* Define if you have gsscred_name_to_unix_cred() (Solaris) */
2427c478bd9Sstevel@tonic-gate #define	HAVE_GSSCRED_API 1
2437c478bd9Sstevel@tonic-gate 
2447c478bd9Sstevel@tonic-gate /* Define if you have __gss_oid_to_mech() */
2457c478bd9Sstevel@tonic-gate #define	HAVE_GSS_OID_TO_MECH 1
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate /* Define if you have gss_oid_to_str() */
2487c478bd9Sstevel@tonic-gate #define	HAVE_GSS_OID_TO_STR 1
2497c478bd9Sstevel@tonic-gate 
2507c478bd9Sstevel@tonic-gate /* Define if you want support for MIT krb5 GSS internals */
2517c478bd9Sstevel@tonic-gate /* #undef KRB5_GSS */
2527c478bd9Sstevel@tonic-gate 
2537c478bd9Sstevel@tonic-gate /* Define if you want support for GSI GSS internals */
2547c478bd9Sstevel@tonic-gate /* #undef GSI_GSS */
2557c478bd9Sstevel@tonic-gate 
2567c478bd9Sstevel@tonic-gate /* Define if you want raw Kerberos 5 support */
2577c478bd9Sstevel@tonic-gate /* #undef KRB5 */
2587c478bd9Sstevel@tonic-gate 
2597c478bd9Sstevel@tonic-gate /* Define if you want GSI/Globus authentication support */
2607c478bd9Sstevel@tonic-gate /* #undef GSI */
2617c478bd9Sstevel@tonic-gate 
2627c478bd9Sstevel@tonic-gate /* Define this if you are using the Heimdal version of Kerberos V5 */
2637c478bd9Sstevel@tonic-gate /* #undef HEIMDAL */
2647c478bd9Sstevel@tonic-gate 
2657c478bd9Sstevel@tonic-gate /* Define if you want Kerberos 4 support */
2667c478bd9Sstevel@tonic-gate /* #undef KRB4 */
2677c478bd9Sstevel@tonic-gate 
2687c478bd9Sstevel@tonic-gate /* Define if you want AFS support */
2697c478bd9Sstevel@tonic-gate /* #undef AFS */
2707c478bd9Sstevel@tonic-gate 
2717c478bd9Sstevel@tonic-gate /* Define if you want S/Key support */
2727c478bd9Sstevel@tonic-gate /* #undef SKEY */
2737c478bd9Sstevel@tonic-gate 
2747c478bd9Sstevel@tonic-gate /* Define if you want TCP Wrappers support */
2757c478bd9Sstevel@tonic-gate #define	LIBWRAP 1
2767c478bd9Sstevel@tonic-gate 
2777c478bd9Sstevel@tonic-gate /* Define if your libraries define login() */
2787c478bd9Sstevel@tonic-gate /* #undef HAVE_LOGIN */
2797c478bd9Sstevel@tonic-gate 
2807c478bd9Sstevel@tonic-gate /* Define if your libraries define getpagesize() */
2817c478bd9Sstevel@tonic-gate #define	HAVE_GETPAGESIZE 1
2827c478bd9Sstevel@tonic-gate 
2837c478bd9Sstevel@tonic-gate /* Define if xauth is found in your path */
2846f8d59d8SJan Pechanec #define	XAUTH_PATH "/usr/X11/bin/xauth"
2857c478bd9Sstevel@tonic-gate 
2867c478bd9Sstevel@tonic-gate /* Define if rsh is found in your path */
2877c478bd9Sstevel@tonic-gate #define	RSH_PATH "/usr/bin/rsh"
2887c478bd9Sstevel@tonic-gate 
2897c478bd9Sstevel@tonic-gate /* Define if you want to allow MD5 passwords */
2907c478bd9Sstevel@tonic-gate /* #undef HAVE_MD5_PASSWORDS */
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate /* Define if you want to disable shadow passwords */
2937c478bd9Sstevel@tonic-gate /* #undef DISABLE_SHADOW */
2947c478bd9Sstevel@tonic-gate 
2957c478bd9Sstevel@tonic-gate /* Define if you want to use shadow password expire field */
2967c478bd9Sstevel@tonic-gate /* #undef HAS_SHADOW_EXPIRE */
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate /* Define if you have Digital Unix Security Integration Architecture */
2997c478bd9Sstevel@tonic-gate /* #undef HAVE_OSF_SIA */
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate /* Define if you have getpwanam(3) [SunOS 4.x] */
3027c478bd9Sstevel@tonic-gate /* #undef HAVE_GETPWANAM */
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate /* Define if you have an old version of PAM which takes only one argument */
3057c478bd9Sstevel@tonic-gate /* to pam_strerror */
3067c478bd9Sstevel@tonic-gate /* #undef HAVE_OLD_PAM */
3077c478bd9Sstevel@tonic-gate 
3087c478bd9Sstevel@tonic-gate /* Define if you are using Solaris-derived PAM which passes pam_messages  */
3097c478bd9Sstevel@tonic-gate /* to the conversation function with an extra level of indirection */
3107c478bd9Sstevel@tonic-gate #define	PAM_SUN_CODEBASE 1
3117c478bd9Sstevel@tonic-gate 
3127c478bd9Sstevel@tonic-gate /* Set this to your mail directory if you don't have maillock.h */
3137c478bd9Sstevel@tonic-gate /* #undef MAIL_DIRECTORY */
3147c478bd9Sstevel@tonic-gate 
3157c478bd9Sstevel@tonic-gate /* Data types */
3167c478bd9Sstevel@tonic-gate #define	HAVE_U_INT 1
3177c478bd9Sstevel@tonic-gate #define	HAVE_INTXX_T 1
3187c478bd9Sstevel@tonic-gate /* #undef HAVE_U_INTXX_T */
3197c478bd9Sstevel@tonic-gate #define	HAVE_UINTXX_T 1
3207c478bd9Sstevel@tonic-gate #define	HAVE_INT64_T 1
3217c478bd9Sstevel@tonic-gate /* #undef HAVE_U_INT64_T */
3227c478bd9Sstevel@tonic-gate #define	HAVE_U_CHAR 1
3237c478bd9Sstevel@tonic-gate #define	HAVE_SIZE_T 1
3247c478bd9Sstevel@tonic-gate #define	HAVE_SSIZE_T 1
3257c478bd9Sstevel@tonic-gate #define	HAVE_CLOCK_T 1
3267c478bd9Sstevel@tonic-gate #define	HAVE_MODE_T 1
3277c478bd9Sstevel@tonic-gate #define	HAVE_PID_T 1
3287c478bd9Sstevel@tonic-gate #define	HAVE_SA_FAMILY_T 1
3297c478bd9Sstevel@tonic-gate #define	HAVE_STRUCT_SOCKADDR_STORAGE 1
3307c478bd9Sstevel@tonic-gate #define	HAVE_STRUCT_ADDRINFO 1
3317c478bd9Sstevel@tonic-gate #define	HAVE_STRUCT_IN6_ADDR 1
3327c478bd9Sstevel@tonic-gate #define	HAVE_STRUCT_SOCKADDR_IN6 1
3337c478bd9Sstevel@tonic-gate 
3347c478bd9Sstevel@tonic-gate /* Fields in struct sockaddr_storage */
3357c478bd9Sstevel@tonic-gate #define	HAVE_SS_FAMILY_IN_SS 1
3367c478bd9Sstevel@tonic-gate /* #undef HAVE___SS_FAMILY_IN_SS */
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate /* Define if you have /dev/ptmx */
3397c478bd9Sstevel@tonic-gate #define	HAVE_DEV_PTMX 1
3407c478bd9Sstevel@tonic-gate 
3417c478bd9Sstevel@tonic-gate /* Define if you have /dev/ptc */
3427c478bd9Sstevel@tonic-gate /* #undef HAVE_DEV_PTS_AND_PTC */
3437c478bd9Sstevel@tonic-gate 
3447c478bd9Sstevel@tonic-gate /* Define if you need to use IP address instead of hostname in $DISPLAY */
3457c478bd9Sstevel@tonic-gate /* #undef IPADDR_IN_DISPLAY */
3467c478bd9Sstevel@tonic-gate 
3476f8d59d8SJan Pechanec /*
3486f8d59d8SJan Pechanec  * Specify the default $PATH. While /bin is a symbolic link to /usr/bin in
3496f8d59d8SJan Pechanec  * Solaris, to include both of them there may help when users use
3506f8d59d8SJan Pechanec  * ChrootDirectory options with plain SSH connections, without their own shell
3516f8d59d8SJan Pechanec  * profiles.
3526f8d59d8SJan Pechanec  */
3536f8d59d8SJan Pechanec #define	USER_PATH "/usr/bin:/bin"
3547c478bd9Sstevel@tonic-gate 
3557c478bd9Sstevel@tonic-gate /* Specify location of ssh.pid */
3567c478bd9Sstevel@tonic-gate #define	_PATH_SSH_PIDDIR "/var/run"
3577c478bd9Sstevel@tonic-gate 
3587c478bd9Sstevel@tonic-gate /* Use IPv4 for connection by default, IPv6 can still if explicity asked */
3597c478bd9Sstevel@tonic-gate /* #undef IPV4_DEFAULT */
3607c478bd9Sstevel@tonic-gate 
3617c478bd9Sstevel@tonic-gate /* getaddrinfo is broken (if present) */
3627c478bd9Sstevel@tonic-gate /* #undef BROKEN_GETADDRINFO */
3637c478bd9Sstevel@tonic-gate 
3647c478bd9Sstevel@tonic-gate /* Workaround more Linux IPv6 quirks */
3657c478bd9Sstevel@tonic-gate /* #undef DONT_TRY_OTHER_AF */
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate /* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */
3687c478bd9Sstevel@tonic-gate #define	IPV4_IN_IPV6 1
3697c478bd9Sstevel@tonic-gate 
3707c478bd9Sstevel@tonic-gate /* Define if you have BSD auth support */
3717c478bd9Sstevel@tonic-gate /* #undef BSD_AUTH */
3727c478bd9Sstevel@tonic-gate 
3737c478bd9Sstevel@tonic-gate /* Define if X11 doesn't support AF_UNIX sockets on that system */
3747c478bd9Sstevel@tonic-gate /* #undef NO_X11_UNIX_SOCKETS */
3757c478bd9Sstevel@tonic-gate 
3767c478bd9Sstevel@tonic-gate /* Define if the concept of ports only accessible to superusers isn't known */
3777c478bd9Sstevel@tonic-gate /* #undef NO_IPPORT_RESERVED_CONCEPT */
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate /* Needed for SCO and NeXT */
3807c478bd9Sstevel@tonic-gate /* #undef BROKEN_SAVED_UIDS */
3817c478bd9Sstevel@tonic-gate 
3827c478bd9Sstevel@tonic-gate /* Define if your system glob() function has the GLOB_ALTDIRFUNC extension */
383*a5229c74SGary Mills #define	GLOB_HAS_ALTDIRFUNC	1
3847c478bd9Sstevel@tonic-gate 
3857c478bd9Sstevel@tonic-gate /* Define if your system glob() function has gl_matchc options in glob_t */
386*a5229c74SGary Mills #define	GLOB_HAS_GL_MATCHC	1
3877c478bd9Sstevel@tonic-gate 
3886b82a780Sjp161948 /*
3896b82a780Sjp161948  * Define in your struct dirent expects you to allocate extra space for
3906b82a780Sjp161948  * d_name
3916b82a780Sjp161948  */
3927c478bd9Sstevel@tonic-gate #define	BROKEN_ONE_BYTE_DIRENT_D_NAME 1
3937c478bd9Sstevel@tonic-gate 
3947c478bd9Sstevel@tonic-gate /* Define if your getopt(3) defines and uses optreset */
3957c478bd9Sstevel@tonic-gate /* #undef HAVE_GETOPT_OPTRESET */
3967c478bd9Sstevel@tonic-gate 
3977c478bd9Sstevel@tonic-gate /* Define on *nto-qnx systems */
3987c478bd9Sstevel@tonic-gate /* #undef MISSING_NFDBITS */
3997c478bd9Sstevel@tonic-gate 
4007c478bd9Sstevel@tonic-gate /* Define on *nto-qnx systems */
4017c478bd9Sstevel@tonic-gate /* #undef MISSING_HOWMANY */
4027c478bd9Sstevel@tonic-gate 
4037c478bd9Sstevel@tonic-gate /* Define on *nto-qnx systems */
4047c478bd9Sstevel@tonic-gate /* #undef MISSING_FD_MASK */
4057c478bd9Sstevel@tonic-gate 
40684e198abSHuie-Ying Lee /*
40784e198abSHuie-Ying Lee  * Use libedit or libtecla for sftp
40884e198abSHuie-Ying Lee  * If both USE_LIBEDIT and USE_LIBTECLA are defined, then USE_LIBEDIT will
40984e198abSHuie-Ying Lee  * have higher precedence.
41084e198abSHuie-Ying Lee  */
41190685d2cSjp161948 #undef USE_LIBEDIT
41284e198abSHuie-Ying Lee #define	USE_LIBTECLA	1
41390685d2cSjp161948 
4147c478bd9Sstevel@tonic-gate /* Define if you want to use OpenSSL's internally seeded PRNG only */
4157c478bd9Sstevel@tonic-gate #define	OPENSSL_PRNG_ONLY 1
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate /* Define if you shouldn't strip 'tty' from your ttyname in [uw]tmp */
4187c478bd9Sstevel@tonic-gate /* #undef WITH_ABBREV_NO_TTY */
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate /* Define if you want a different $PATH for the superuser */
4217c478bd9Sstevel@tonic-gate #define	SUPERUSER_PATH "/usr/sbin:/usr/bin"
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate /* Path that unprivileged child will chroot() to in privep mode */
4247c478bd9Sstevel@tonic-gate /* #undef PRIVSEP_PATH */
4257c478bd9Sstevel@tonic-gate 
4267c478bd9Sstevel@tonic-gate /* Define if your platform needs to skip post auth file descriptor passing */
4277c478bd9Sstevel@tonic-gate /* #undef DISABLE_FD_PASSING */
4287c478bd9Sstevel@tonic-gate 
4297c478bd9Sstevel@tonic-gate 
4307c478bd9Sstevel@tonic-gate /* Define to 1 if the `getpgrp' function requires zero arguments. */
4317c478bd9Sstevel@tonic-gate #define	GETPGRP_VOID 1
4327c478bd9Sstevel@tonic-gate 
4337c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `arc4random' function. */
4347c478bd9Sstevel@tonic-gate /* #undef HAVE_ARC4RANDOM */
4357c478bd9Sstevel@tonic-gate 
43690685d2cSjp161948 /* Define to 1 if you have the `asprintf' function. */
437d0983205SRoger A. Faulkner #define	HAVE_ASPRINTF 1
43890685d2cSjp161948 
4397c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `b64_ntop' function. */
4407c478bd9Sstevel@tonic-gate /* #undef HAVE_B64_NTOP */
4417c478bd9Sstevel@tonic-gate 
4427c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `bcopy' function. */
4437c478bd9Sstevel@tonic-gate #define	HAVE_BCOPY 1
4447c478bd9Sstevel@tonic-gate 
4457c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `bindresvport_sa' function. */
4467c478bd9Sstevel@tonic-gate /* #undef HAVE_BINDRESVPORT_SA */
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <bstring.h> header file. */
4497c478bd9Sstevel@tonic-gate /* #undef HAVE_BSTRING_H */
4507c478bd9Sstevel@tonic-gate 
4517c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `clock' function. */
4527c478bd9Sstevel@tonic-gate #define	HAVE_CLOCK 1
4537c478bd9Sstevel@tonic-gate 
4547c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <crypt.h> header file. */
4557c478bd9Sstevel@tonic-gate #define	HAVE_CRYPT_H 1
4567c478bd9Sstevel@tonic-gate 
4577c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `dirname' function. */
4587c478bd9Sstevel@tonic-gate #define	HAVE_DIRNAME 1
4597c478bd9Sstevel@tonic-gate 
4607c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <endian.h> header file. */
4617c478bd9Sstevel@tonic-gate /* #undef HAVE_ENDIAN_H */
4627c478bd9Sstevel@tonic-gate 
4637c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `endutent' function. */
4647c478bd9Sstevel@tonic-gate #define	HAVE_ENDUTENT 1
4657c478bd9Sstevel@tonic-gate 
4667c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `endutxent' function. */
4677c478bd9Sstevel@tonic-gate #define	HAVE_ENDUTXENT 1
4687c478bd9Sstevel@tonic-gate 
4697c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `fchmod' function. */
4707c478bd9Sstevel@tonic-gate #define	HAVE_FCHMOD 1
4717c478bd9Sstevel@tonic-gate 
4727c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `fchown' function. */
4737c478bd9Sstevel@tonic-gate #define	HAVE_FCHOWN 1
4747c478bd9Sstevel@tonic-gate 
4757c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <floatingpoint.h> header file. */
4767c478bd9Sstevel@tonic-gate #define	HAVE_FLOATINGPOINT_H 1
4777c478bd9Sstevel@tonic-gate 
4787c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `freeaddrinfo' function. */
4797c478bd9Sstevel@tonic-gate #define	HAVE_FREEADDRINFO 1
4807c478bd9Sstevel@tonic-gate 
4817c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `futimes' function. */
4827c478bd9Sstevel@tonic-gate /* #undef HAVE_FUTIMES */
4837c478bd9Sstevel@tonic-gate 
4847c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `gai_strerror' function. */
4857c478bd9Sstevel@tonic-gate #define	HAVE_GAI_STRERROR 1
4867c478bd9Sstevel@tonic-gate 
4877c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getaddrinfo' function. */
4887c478bd9Sstevel@tonic-gate #define	HAVE_GETADDRINFO 1
4897c478bd9Sstevel@tonic-gate 
4907c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getcwd' function. */
4917c478bd9Sstevel@tonic-gate #define	HAVE_GETCWD 1
4927c478bd9Sstevel@tonic-gate 
4937c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getgrouplist' function. */
4947c478bd9Sstevel@tonic-gate /* #undef HAVE_GETGROUPLIST */
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getluid' function. */
4977c478bd9Sstevel@tonic-gate /* #undef HAVE_GETLUID */
4987c478bd9Sstevel@tonic-gate 
4997c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getnameinfo' function. */
5007c478bd9Sstevel@tonic-gate #define	HAVE_GETNAMEINFO 1
5017c478bd9Sstevel@tonic-gate 
5027c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getopt' function. */
5037c478bd9Sstevel@tonic-gate #define	HAVE_GETOPT 1
5047c478bd9Sstevel@tonic-gate 
5057c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <getopt.h> header file. */
5067c478bd9Sstevel@tonic-gate /* #undef HAVE_GETOPT_H */
5077c478bd9Sstevel@tonic-gate 
5087c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getpeereid' function. */
5097c478bd9Sstevel@tonic-gate /* #undef HAVE_GETPEEREID */
5107c478bd9Sstevel@tonic-gate 
51126ba1984Sjp161948 /* Define to 1 if you have the `getpeerucred' function. */
51226ba1984Sjp161948 #define	HAVE_GETPEERUCRED 1
51326ba1984Sjp161948 
5147c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getpwanam' function. */
5157c478bd9Sstevel@tonic-gate /* #undef HAVE_GETPWANAM */
5167c478bd9Sstevel@tonic-gate 
5177c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getrlimit' function. */
5187c478bd9Sstevel@tonic-gate #define	HAVE_GETRLIMIT 1
5197c478bd9Sstevel@tonic-gate 
5207c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getrusage' function. */
5217c478bd9Sstevel@tonic-gate #define	HAVE_GETRUSAGE 1
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `gettimeofday' function. */
5247c478bd9Sstevel@tonic-gate #define	HAVE_GETTIMEOFDAY 1
5257c478bd9Sstevel@tonic-gate 
5267c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getttyent' function. */
5277c478bd9Sstevel@tonic-gate /* #undef HAVE_GETTTYENT */
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getutent' function. */
5307c478bd9Sstevel@tonic-gate #define	HAVE_GETUTENT 1
5317c478bd9Sstevel@tonic-gate 
5327c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getutid' function. */
5337c478bd9Sstevel@tonic-gate #define	HAVE_GETUTID 1
5347c478bd9Sstevel@tonic-gate 
5357c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getutline' function. */
5367c478bd9Sstevel@tonic-gate #define	HAVE_GETUTLINE 1
5377c478bd9Sstevel@tonic-gate 
5387c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getutxent' function. */
5397c478bd9Sstevel@tonic-gate #define	HAVE_GETUTXENT 1
5407c478bd9Sstevel@tonic-gate 
5417c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getutxid' function. */
5427c478bd9Sstevel@tonic-gate #define	HAVE_GETUTXID 1
5437c478bd9Sstevel@tonic-gate 
5447c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `getutxline' function. */
5457c478bd9Sstevel@tonic-gate #define	HAVE_GETUTXLINE 1
5467c478bd9Sstevel@tonic-gate 
5477c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `glob' function. */
5487c478bd9Sstevel@tonic-gate #define	HAVE_GLOB 1
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <glob.h> header file. */
5517c478bd9Sstevel@tonic-gate #define	HAVE_GLOB_H 1
5527c478bd9Sstevel@tonic-gate 
5537c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <ia.h> header file. */
5547c478bd9Sstevel@tonic-gate /* #undef HAVE_IA_H */
5557c478bd9Sstevel@tonic-gate 
5567c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `inet_aton' function. */
5577c478bd9Sstevel@tonic-gate /* #undef HAVE_INET_ATON */
5587c478bd9Sstevel@tonic-gate 
5597c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `inet_ntoa' function. */
5607c478bd9Sstevel@tonic-gate #define	HAVE_INET_NTOA 1
5617c478bd9Sstevel@tonic-gate 
5627c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `inet_ntop' function. */
5637c478bd9Sstevel@tonic-gate #define	HAVE_INET_NTOP 1
5647c478bd9Sstevel@tonic-gate 
5657c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `innetgr' function. */
5667c478bd9Sstevel@tonic-gate #define	HAVE_INNETGR 1
5677c478bd9Sstevel@tonic-gate 
5687c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <inttypes.h> header file. */
5697c478bd9Sstevel@tonic-gate #define	HAVE_INTTYPES_H 1
5707c478bd9Sstevel@tonic-gate 
5717c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <krb.h> header file. */
5727c478bd9Sstevel@tonic-gate /* #undef HAVE_KRB_H */
5737c478bd9Sstevel@tonic-gate 
5747c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <lastlog.h> header file. */
5757c478bd9Sstevel@tonic-gate #define	HAVE_LASTLOG_H 1
5767c478bd9Sstevel@tonic-gate 
5777c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `crypt' library (-lcrypt). */
5787c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBCRYPT */
5797c478bd9Sstevel@tonic-gate 
5807c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `des' library (-ldes). */
5817c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBDES */
5827c478bd9Sstevel@tonic-gate 
5837c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `des425' library (-ldes425). */
5847c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBDES425 */
5857c478bd9Sstevel@tonic-gate 
5867c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `dl' library (-ldl). */
5877c478bd9Sstevel@tonic-gate #define	HAVE_LIBDL 1
5887c478bd9Sstevel@tonic-gate 
5897c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <libgen.h> header file. */
5907c478bd9Sstevel@tonic-gate #define	HAVE_LIBGEN_H 1
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `krb' library (-lkrb). */
5937c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBKRB */
5947c478bd9Sstevel@tonic-gate 
5957c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `krb4' library (-lkrb4). */
5967c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBKRB4 */
5977c478bd9Sstevel@tonic-gate 
5987c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `nsl' library (-lnsl). */
5997c478bd9Sstevel@tonic-gate #define	HAVE_LIBNSL 1
6007c478bd9Sstevel@tonic-gate 
6017c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `pam' library (-lpam). */
6027c478bd9Sstevel@tonic-gate #define	HAVE_LIBPAM 1
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `resolv' library (-lresolv). */
6057c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBRESOLV */
6067c478bd9Sstevel@tonic-gate 
6077c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `sectok' library (-lsectok). */
6087c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBSECTOK */
6097c478bd9Sstevel@tonic-gate 
6107c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `socket' library (-lsocket). */
6117c478bd9Sstevel@tonic-gate #define	HAVE_LIBSOCKET 1
6127c478bd9Sstevel@tonic-gate 
6137c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <libutil.h> header file. */
6147c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBUTIL_H */
6157c478bd9Sstevel@tonic-gate 
6167c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `xnet' library (-lxnet). */
6177c478bd9Sstevel@tonic-gate /* #undef HAVE_LIBXNET */
6187c478bd9Sstevel@tonic-gate 
6197c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `z' library (-lz). */
6207c478bd9Sstevel@tonic-gate #define	HAVE_LIBZ 1
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <limits.h> header file. */
6237c478bd9Sstevel@tonic-gate #define	HAVE_LIMITS_H 1
6247c478bd9Sstevel@tonic-gate 
6257c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <login.h> header file. */
6267c478bd9Sstevel@tonic-gate /* #undef HAVE_LOGIN_H */
6277c478bd9Sstevel@tonic-gate 
6287c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `logout' function. */
6297c478bd9Sstevel@tonic-gate /* #undef HAVE_LOGOUT */
6307c478bd9Sstevel@tonic-gate 
6317c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `logwtmp' function. */
6327c478bd9Sstevel@tonic-gate /* #undef HAVE_LOGWTMP */
6337c478bd9Sstevel@tonic-gate 
6347c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <maillock.h> header file. */
6357c478bd9Sstevel@tonic-gate #define	HAVE_MAILLOCK_H 1
6367c478bd9Sstevel@tonic-gate 
6377c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `md5_crypt' function. */
6387c478bd9Sstevel@tonic-gate /* #undef HAVE_MD5_CRYPT */
6397c478bd9Sstevel@tonic-gate 
6407c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `memmove' function. */
6417c478bd9Sstevel@tonic-gate #define	HAVE_MEMMOVE 1
6427c478bd9Sstevel@tonic-gate 
6437c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <memory.h> header file. */
6447c478bd9Sstevel@tonic-gate #define	HAVE_MEMORY_H 1
6457c478bd9Sstevel@tonic-gate 
6466b82a780Sjp161948 /* Define to 1 if you have mkstemp, mkstemps and mkdtemp */
6476b82a780Sjp161948 #define	HAVE_MKDTEMP 1
6487c478bd9Sstevel@tonic-gate 
6497c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `mmap' function. */
6507c478bd9Sstevel@tonic-gate #define	HAVE_MMAP 1
6517c478bd9Sstevel@tonic-gate 
6527c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <netdb.h> header file. */
6537c478bd9Sstevel@tonic-gate #define	HAVE_NETDB_H 1
6547c478bd9Sstevel@tonic-gate 
6557c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <netgroup.h> header file. */
6567c478bd9Sstevel@tonic-gate /* #undef HAVE_NETGROUP_H */
6577c478bd9Sstevel@tonic-gate 
6587c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <netinet/in_systm.h> header file. */
6597c478bd9Sstevel@tonic-gate #define	HAVE_NETINET_IN_SYSTM_H 1
6607c478bd9Sstevel@tonic-gate 
6617c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `ngetaddrinfo' function. */
6627c478bd9Sstevel@tonic-gate /* #undef HAVE_NGETADDRINFO */
6637c478bd9Sstevel@tonic-gate 
6647c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `ogetaddrinfo' function. */
6657c478bd9Sstevel@tonic-gate /* #undef HAVE_OGETADDRINFO */
6667c478bd9Sstevel@tonic-gate 
6677c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `openpty' function. */
6687c478bd9Sstevel@tonic-gate /* #undef HAVE_OPENPTY */
6697c478bd9Sstevel@tonic-gate 
6707c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `pam_getenvlist' function. */
6717c478bd9Sstevel@tonic-gate #define	HAVE_PAM_GETENVLIST 1
6727c478bd9Sstevel@tonic-gate 
6737c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <paths.h> header file. */
6747c478bd9Sstevel@tonic-gate /* #undef HAVE_PATHS_H */
6757c478bd9Sstevel@tonic-gate 
6767c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <pty.h> header file. */
6777c478bd9Sstevel@tonic-gate /* #undef HAVE_PTY_H */
6787c478bd9Sstevel@tonic-gate 
6797c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `pututline' function. */
6807c478bd9Sstevel@tonic-gate #define	HAVE_PUTUTLINE 1
6817c478bd9Sstevel@tonic-gate 
6827c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `pututxline' function. */
6837c478bd9Sstevel@tonic-gate #define	HAVE_PUTUTXLINE 1
6847c478bd9Sstevel@tonic-gate 
6857c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `readpassphrase' function. */
6867c478bd9Sstevel@tonic-gate /* #undef HAVE_READPASSPHRASE */
6877c478bd9Sstevel@tonic-gate 
6887c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <readpassphrase.h> header file. */
6897c478bd9Sstevel@tonic-gate /* #undef HAVE_READPASSPHRASE_H */
6907c478bd9Sstevel@tonic-gate 
6917c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `realpath' function. */
6927c478bd9Sstevel@tonic-gate #define	HAVE_REALPATH 1
6937c478bd9Sstevel@tonic-gate 
6947c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `recvmsg' function. */
6957c478bd9Sstevel@tonic-gate #define	HAVE_RECVMSG 1
6967c478bd9Sstevel@tonic-gate 
6977c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <rpc/types.h> header file. */
6987c478bd9Sstevel@tonic-gate #define	HAVE_RPC_TYPES_H 1
6997c478bd9Sstevel@tonic-gate 
7007c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `rresvport_af' function. */
7017c478bd9Sstevel@tonic-gate #define	HAVE_RRESVPORT_AF 1
7027c478bd9Sstevel@tonic-gate 
7037c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sectok.h> header file. */
7047c478bd9Sstevel@tonic-gate /* #undef HAVE_SECTOK_H */
7057c478bd9Sstevel@tonic-gate 
7067c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <security/pam_appl.h> header file. */
7077c478bd9Sstevel@tonic-gate #define	HAVE_SECURITY_PAM_APPL_H 1
7087c478bd9Sstevel@tonic-gate 
7097c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `sendmsg' function. */
7107c478bd9Sstevel@tonic-gate #define	HAVE_SENDMSG 1
7117c478bd9Sstevel@tonic-gate 
7127c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setdtablesize' function. */
7137c478bd9Sstevel@tonic-gate /* #undef HAVE_SETDTABLESIZE */
7147c478bd9Sstevel@tonic-gate 
7157c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setegid' function. */
7167c478bd9Sstevel@tonic-gate #define	HAVE_SETEGID 1
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setenv' function. */
7197c478bd9Sstevel@tonic-gate #define	HAVE_SETENV 1
7207c478bd9Sstevel@tonic-gate 
7217c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `seteuid' function. */
7227c478bd9Sstevel@tonic-gate #define	HAVE_SETEUID 1
7237c478bd9Sstevel@tonic-gate 
7247c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setgroups' function. */
7257c478bd9Sstevel@tonic-gate #define	HAVE_SETGROUPS 1
7267c478bd9Sstevel@tonic-gate 
7277c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setlogin' function. */
7287c478bd9Sstevel@tonic-gate /* #undef HAVE_SETLOGIN */
7297c478bd9Sstevel@tonic-gate 
7307c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setluid' function. */
7317c478bd9Sstevel@tonic-gate /* #undef HAVE_SETLUID */
7327c478bd9Sstevel@tonic-gate 
7337c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setpcred' function. */
7347c478bd9Sstevel@tonic-gate /* #undef HAVE_SETPCRED */
7357c478bd9Sstevel@tonic-gate 
7367c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setproctitle' function. */
7377c478bd9Sstevel@tonic-gate /* #undef HAVE_SETPROCTITLE */
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setresgid' function. */
7407c478bd9Sstevel@tonic-gate /* #undef HAVE_SETRESGID */
7417c478bd9Sstevel@tonic-gate 
7427c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setreuid' function. */
7437c478bd9Sstevel@tonic-gate #define	HAVE_SETREUID 1
7447c478bd9Sstevel@tonic-gate 
7457c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setrlimit' function. */
7467c478bd9Sstevel@tonic-gate #define	HAVE_SETRLIMIT 1
7477c478bd9Sstevel@tonic-gate 
7487c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setsid' function. */
7497c478bd9Sstevel@tonic-gate #define	HAVE_SETSID 1
7507c478bd9Sstevel@tonic-gate 
7517c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setutent' function. */
7527c478bd9Sstevel@tonic-gate #define	HAVE_SETUTENT 1
7537c478bd9Sstevel@tonic-gate 
7547c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setutxent' function. */
7557c478bd9Sstevel@tonic-gate #define	HAVE_SETUTXENT 1
7567c478bd9Sstevel@tonic-gate 
7577c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `setvbuf' function. */
7587c478bd9Sstevel@tonic-gate #define	HAVE_SETVBUF 1
7597c478bd9Sstevel@tonic-gate 
7607c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <shadow.h> header file. */
7617c478bd9Sstevel@tonic-gate #define	HAVE_SHADOW_H 1
7627c478bd9Sstevel@tonic-gate 
7637c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `sigaction' function. */
7647c478bd9Sstevel@tonic-gate #define	HAVE_SIGACTION 1
7657c478bd9Sstevel@tonic-gate 
7667c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `sigvec' function. */
7677c478bd9Sstevel@tonic-gate /* #undef HAVE_SIGVEC */
7687c478bd9Sstevel@tonic-gate 
7697c478bd9Sstevel@tonic-gate /* Define to 1 if the system has the type `sig_atomic_t'. */
7707c478bd9Sstevel@tonic-gate #define	HAVE_SIG_ATOMIC_T 1
7717c478bd9Sstevel@tonic-gate 
7727c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `snprintf' function. */
7737c478bd9Sstevel@tonic-gate #define	HAVE_SNPRINTF 1
7747c478bd9Sstevel@tonic-gate 
7757c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `socketpair' function. */
7767c478bd9Sstevel@tonic-gate #define	HAVE_SOCKETPAIR 1
7777c478bd9Sstevel@tonic-gate 
7787c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <stddef.h> header file. */
7797c478bd9Sstevel@tonic-gate #define	HAVE_STDDEF_H 1
7807c478bd9Sstevel@tonic-gate 
7817c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <stdint.h> header file. */
7827c478bd9Sstevel@tonic-gate /* #undef HAVE_STDINT_H */
7837c478bd9Sstevel@tonic-gate 
7847c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <stdlib.h> header file. */
7857c478bd9Sstevel@tonic-gate #define	HAVE_STDLIB_H 1
7867c478bd9Sstevel@tonic-gate 
7877c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `strerror' function. */
7887c478bd9Sstevel@tonic-gate #define	HAVE_STRERROR 1
7897c478bd9Sstevel@tonic-gate 
7907c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `strftime' function. */
7917c478bd9Sstevel@tonic-gate #define	HAVE_STRFTIME 1
7927c478bd9Sstevel@tonic-gate 
7937c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <strings.h> header file. */
7947c478bd9Sstevel@tonic-gate #define	HAVE_STRINGS_H 1
7957c478bd9Sstevel@tonic-gate 
7967c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <string.h> header file. */
7977c478bd9Sstevel@tonic-gate #define	HAVE_STRING_H 1
7987c478bd9Sstevel@tonic-gate 
7997c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `strlcat' function. */
8007c478bd9Sstevel@tonic-gate #define	HAVE_STRLCAT 1
8017c478bd9Sstevel@tonic-gate 
8027c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `strlcpy' function. */
8037c478bd9Sstevel@tonic-gate #define	HAVE_STRLCPY 1
8047c478bd9Sstevel@tonic-gate 
8057c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `strmode' function. */
8067c478bd9Sstevel@tonic-gate /* #undef HAVE_STRMODE */
8077c478bd9Sstevel@tonic-gate 
8087c478bd9Sstevel@tonic-gate /* Define to 1 if `st_blksize' is member of `struct stat'. */
8097c478bd9Sstevel@tonic-gate #define	HAVE_STRUCT_STAT_ST_BLKSIZE 1
8107c478bd9Sstevel@tonic-gate 
8117c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `sysconf' function. */
8127c478bd9Sstevel@tonic-gate #define	HAVE_SYSCONF 1
8137c478bd9Sstevel@tonic-gate 
8147c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/bitypes.h> header file. */
8157c478bd9Sstevel@tonic-gate /* #undef HAVE_SYS_BITYPES_H */
8167c478bd9Sstevel@tonic-gate 
8177c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/bsdtty.h> header file. */
8187c478bd9Sstevel@tonic-gate /* #undef HAVE_SYS_BSDTTY_H */
8197c478bd9Sstevel@tonic-gate 
8207c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/cdefs.h> header file. */
8217c478bd9Sstevel@tonic-gate /* #undef HAVE_SYS_CDEFS_H */
8227c478bd9Sstevel@tonic-gate 
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/mman.h> header file. */
8257c478bd9Sstevel@tonic-gate #define	HAVE_SYS_MMAN_H 1
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/select.h> header file. */
8287c478bd9Sstevel@tonic-gate #define	HAVE_SYS_SELECT_H 1
8297c478bd9Sstevel@tonic-gate 
8307c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/stat.h> header file. */
8317c478bd9Sstevel@tonic-gate #define	HAVE_SYS_STAT_H 1
8327c478bd9Sstevel@tonic-gate 
8337c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/stropts.h> header file. */
8347c478bd9Sstevel@tonic-gate #define	HAVE_SYS_STROPTS_H 1
8357c478bd9Sstevel@tonic-gate 
8367c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/sysmacros.h> header file. */
8377c478bd9Sstevel@tonic-gate #define	HAVE_SYS_SYSMACROS_H 1
8387c478bd9Sstevel@tonic-gate 
8397c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/time.h> header file. */
8407c478bd9Sstevel@tonic-gate #define	HAVE_SYS_TIME_H 1
8417c478bd9Sstevel@tonic-gate 
8427c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/types.h> header file. */
8437c478bd9Sstevel@tonic-gate #define	HAVE_SYS_TYPES_H 1
8447c478bd9Sstevel@tonic-gate 
8457c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <sys/un.h> header file. */
8467c478bd9Sstevel@tonic-gate #define	HAVE_SYS_UN_H 1
8477c478bd9Sstevel@tonic-gate 
8487c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `tcgetpgrp' function. */
8497c478bd9Sstevel@tonic-gate #define	HAVE_TCGETPGRP 1
8507c478bd9Sstevel@tonic-gate 
8517c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `time' function. */
8527c478bd9Sstevel@tonic-gate #define	HAVE_TIME 1
8537c478bd9Sstevel@tonic-gate 
8547c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <time.h> header file. */
8557c478bd9Sstevel@tonic-gate #define	HAVE_TIME_H 1
8567c478bd9Sstevel@tonic-gate 
8577c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <tmpdir.h> header file. */
8587c478bd9Sstevel@tonic-gate /* #undef HAVE_TMPDIR_H */
8597c478bd9Sstevel@tonic-gate 
8607c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `truncate' function. */
8617c478bd9Sstevel@tonic-gate #define	HAVE_TRUNCATE 1
8627c478bd9Sstevel@tonic-gate 
8637c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <ttyent.h> header file. */
8647c478bd9Sstevel@tonic-gate /* #undef HAVE_TTYENT_H */
8657c478bd9Sstevel@tonic-gate 
86626ba1984Sjp161948 /* Define to 1 if you have the <ucred.h> header file. */
86726ba1984Sjp161948 #define	HAVE_UCRED_H 1
86826ba1984Sjp161948 
8697c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <unistd.h> header file. */
8707c478bd9Sstevel@tonic-gate #define	HAVE_UNISTD_H 1
8717c478bd9Sstevel@tonic-gate 
8727c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `updwtmp' function. */
8737c478bd9Sstevel@tonic-gate #define	HAVE_UPDWTMP 1
8747c478bd9Sstevel@tonic-gate 
8757c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <usersec.h> header file. */
8767c478bd9Sstevel@tonic-gate /* #undef HAVE_USERSEC_H */
8777c478bd9Sstevel@tonic-gate 
8787c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <util.h> header file. */
8797c478bd9Sstevel@tonic-gate /* #undef HAVE_UTIL_H */
8807c478bd9Sstevel@tonic-gate 
8817c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `utimes' function. */
8827c478bd9Sstevel@tonic-gate #define	HAVE_UTIMES 1
8837c478bd9Sstevel@tonic-gate 
8847c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <utime.h> header file. */
8857c478bd9Sstevel@tonic-gate #define	HAVE_UTIME_H 1
8867c478bd9Sstevel@tonic-gate 
8877c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `utmpname' function. */
8887c478bd9Sstevel@tonic-gate #define	HAVE_UTMPNAME 1
8897c478bd9Sstevel@tonic-gate 
8907c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `utmpxname' function. */
8917c478bd9Sstevel@tonic-gate #define	HAVE_UTMPXNAME 1
8927c478bd9Sstevel@tonic-gate 
8937c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <utmpx.h> header file. */
8947c478bd9Sstevel@tonic-gate #define	HAVE_UTMPX_H 1
8957c478bd9Sstevel@tonic-gate 
8967c478bd9Sstevel@tonic-gate /* Define to 1 if you have the <utmp.h> header file. */
8977c478bd9Sstevel@tonic-gate #define	HAVE_UTMP_H 1
8987c478bd9Sstevel@tonic-gate 
89990685d2cSjp161948 /* Define to 1 if you have the `vasprintf' function. */
900d0983205SRoger A. Faulkner #define	HAVE_VASPRINTF 1
90190685d2cSjp161948 
9027c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `vhangup' function. */
9037c478bd9Sstevel@tonic-gate #define	HAVE_VHANGUP 1
9047c478bd9Sstevel@tonic-gate 
9057c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `vsnprintf' function. */
9067c478bd9Sstevel@tonic-gate #define	HAVE_VSNPRINTF 1
9077c478bd9Sstevel@tonic-gate 
9087c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `waitpid' function. */
9097c478bd9Sstevel@tonic-gate #define	HAVE_WAITPID 1
9107c478bd9Sstevel@tonic-gate 
9117c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `_getpty' function. */
9127c478bd9Sstevel@tonic-gate /* #undef HAVE__GETPTY */
9137c478bd9Sstevel@tonic-gate 
9147c478bd9Sstevel@tonic-gate /* Define to 1 if you have the `__b64_ntop' function. */
9157c478bd9Sstevel@tonic-gate /* #undef HAVE___B64_NTOP */
9167c478bd9Sstevel@tonic-gate 
9177c478bd9Sstevel@tonic-gate /* Define to the address where bug reports for this package should be sent. */
9187c478bd9Sstevel@tonic-gate #define	PACKAGE_BUGREPORT ""
9197c478bd9Sstevel@tonic-gate 
9207c478bd9Sstevel@tonic-gate /* Define to the full name of this package. */
9217c478bd9Sstevel@tonic-gate #define	PACKAGE_NAME ""
9227c478bd9Sstevel@tonic-gate 
9237c478bd9Sstevel@tonic-gate /* Define to the full name and version of this package. */
9247c478bd9Sstevel@tonic-gate #define	PACKAGE_STRING ""
9257c478bd9Sstevel@tonic-gate 
9267c478bd9Sstevel@tonic-gate /* Define to the one symbol short name of this package. */
9277c478bd9Sstevel@tonic-gate #define	PACKAGE_TARNAME ""
9287c478bd9Sstevel@tonic-gate 
9297c478bd9Sstevel@tonic-gate /* Define to the version of this package. */
9307c478bd9Sstevel@tonic-gate #define	PACKAGE_VERSION ""
9317c478bd9Sstevel@tonic-gate 
9327c478bd9Sstevel@tonic-gate /* The size of a `char', as computed by sizeof. */
9337c478bd9Sstevel@tonic-gate #define	SIZEOF_CHAR 1
9347c478bd9Sstevel@tonic-gate 
9357c478bd9Sstevel@tonic-gate /* The size of a `int', as computed by sizeof. */
9367c478bd9Sstevel@tonic-gate #define	SIZEOF_INT 4
9377c478bd9Sstevel@tonic-gate 
9387c478bd9Sstevel@tonic-gate /* The size of a `long int', as computed by sizeof. */
9397c478bd9Sstevel@tonic-gate #define	SIZEOF_LONG_INT 4
9407c478bd9Sstevel@tonic-gate 
9417c478bd9Sstevel@tonic-gate /* The size of a `long long int', as computed by sizeof. */
9427c478bd9Sstevel@tonic-gate #define	SIZEOF_LONG_LONG_INT 8
9437c478bd9Sstevel@tonic-gate 
9447c478bd9Sstevel@tonic-gate /* The size of a `short int', as computed by sizeof. */
9457c478bd9Sstevel@tonic-gate #define	SIZEOF_SHORT_INT 2
9467c478bd9Sstevel@tonic-gate 
9477c478bd9Sstevel@tonic-gate /* Define to 1 if you have the ANSI C header files. */
9487c478bd9Sstevel@tonic-gate #define	STDC_HEADERS 1
9497c478bd9Sstevel@tonic-gate 
9506b82a780Sjp161948 /*
9516b82a780Sjp161948  * Define to 1 if your processor stores words with the most significant byte
9526b82a780Sjp161948  * first (like Motorola and SPARC, unlike Intel and VAX).
9536b82a780Sjp161948  */
9547c478bd9Sstevel@tonic-gate #define	WORDS_BIGENDIAN 1
9557c478bd9Sstevel@tonic-gate 
9567c478bd9Sstevel@tonic-gate /* Number of bits in a file offset, on hosts where this is settable. */
9577c478bd9Sstevel@tonic-gate #define	_FILE_OFFSET_BITS 64
9587c478bd9Sstevel@tonic-gate 
9597c478bd9Sstevel@tonic-gate /* Define for large files, on AIX-style hosts. */
9607c478bd9Sstevel@tonic-gate /* #undef _LARGE_FILES */
9617c478bd9Sstevel@tonic-gate 
9626b82a780Sjp161948 /*
9636b82a780Sjp161948  * Define as `__inline' if that's what the C compiler calls it, or to nothing if
9646b82a780Sjp161948  * it is not supported.
9656b82a780Sjp161948  */
9667c478bd9Sstevel@tonic-gate /* #undef inline */
9677c478bd9Sstevel@tonic-gate 
9687c478bd9Sstevel@tonic-gate /* type to use in place of socklen_t if not defined */
9697c478bd9Sstevel@tonic-gate /* #undef socklen_t */
9707c478bd9Sstevel@tonic-gate 
9717c478bd9Sstevel@tonic-gate /* Define for BSM auditing (Solaris) support */
9727c478bd9Sstevel@tonic-gate #define	HAVE_BSM 1
9737c478bd9Sstevel@tonic-gate 
9747c478bd9Sstevel@tonic-gate /* Define if compiling in ON */
9757c478bd9Sstevel@tonic-gate #define	SUNW_SSH 1
9767c478bd9Sstevel@tonic-gate 
9777c478bd9Sstevel@tonic-gate /* ******************* Shouldn't need to edit below this line ************** */
9787c478bd9Sstevel@tonic-gate 
9797c478bd9Sstevel@tonic-gate #ifdef __cplusplus
9807c478bd9Sstevel@tonic-gate }
9817c478bd9Sstevel@tonic-gate #endif
9827c478bd9Sstevel@tonic-gate 
9837c478bd9Sstevel@tonic-gate #endif /* _CONFIG_H */
984