diff options
Diffstat (limited to 'config.h.in')
| -rw-r--r-- | config.h.in | 64 |
1 files changed, 38 insertions, 26 deletions
diff --git a/config.h.in b/config.h.in index 39d018f4cbdb..75e02ab45f52 100644 --- a/config.h.in +++ b/config.h.in @@ -1,5 +1,8 @@ /* config.h.in. Generated from configure.ac by autoheader. */ +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* Define if you have a getaddrinfo that fails for the all-zeros IPv6 address */ #undef AIX_GETNAMEINFO_HACK @@ -34,9 +37,6 @@ /* ia_uinfo routines not supported by OS yet */ #undef BROKEN_LIBIAF -/* Ultrix mmap can't map files */ -#undef BROKEN_MMAP - /* Define if your struct dirent expects you to allocate extra space for d_name */ #undef BROKEN_ONE_BYTE_DIRENT_D_NAME @@ -75,7 +75,7 @@ /* Define if your snprintf is busted */ #undef BROKEN_SNPRINTF -/* missing VIS_ALL */ +/* strnvis detected broken */ #undef BROKEN_STRNVIS /* tcgetattr with ICANON may hang */ @@ -790,9 +790,6 @@ /* Define to 1 if you have the `mkdtemp' function. */ #undef HAVE_MKDTEMP -/* Define to 1 if you have the `mmap' function. */ -#undef HAVE_MMAP - /* define if you have mode_t data type */ #undef HAVE_MODE_T @@ -1073,6 +1070,9 @@ /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H +/* Define to 1 if you have the `strcasestr' function. */ +#undef HAVE_STRCASESTR + /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP @@ -1130,28 +1130,28 @@ /* define if you have struct in6_addr data type */ #undef HAVE_STRUCT_IN6_ADDR -/* Define to 1 if `pw_change' is member of `struct passwd'. */ +/* Define to 1 if `pw_change' is a member of `struct passwd'. */ #undef HAVE_STRUCT_PASSWD_PW_CHANGE -/* Define to 1 if `pw_class' is member of `struct passwd'. */ +/* Define to 1 if `pw_class' is a member of `struct passwd'. */ #undef HAVE_STRUCT_PASSWD_PW_CLASS -/* Define to 1 if `pw_expire' is member of `struct passwd'. */ +/* Define to 1 if `pw_expire' is a member of `struct passwd'. */ #undef HAVE_STRUCT_PASSWD_PW_EXPIRE -/* Define to 1 if `pw_gecos' is member of `struct passwd'. */ +/* Define to 1 if `pw_gecos' is a member of `struct passwd'. */ #undef HAVE_STRUCT_PASSWD_PW_GECOS /* define if you have struct sockaddr_in6 data type */ #undef HAVE_STRUCT_SOCKADDR_IN6 -/* Define to 1 if `sin6_scope_id' is member of `struct sockaddr_in6'. */ +/* Define to 1 if `sin6_scope_id' is a member of `struct sockaddr_in6'. */ #undef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID /* define if you have struct sockaddr_storage data type */ #undef HAVE_STRUCT_SOCKADDR_STORAGE -/* Define to 1 if `st_blksize' is member of `struct stat'. */ +/* Define to 1 if `st_blksize' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLKSIZE /* Define to 1 if the system has the type `struct timespec'. */ @@ -1214,6 +1214,9 @@ /* Define to 1 if you have the <sys/ptms.h> header file. */ #undef HAVE_SYS_PTMS_H +/* Define to 1 if you have the <sys/ptrace.h> header file. */ +#undef HAVE_SYS_PTRACE_H + /* Define to 1 if you have the <sys/select.h> header file. */ #undef HAVE_SYS_SELECT_H @@ -1455,19 +1458,9 @@ /* String used in /etc/passwd to denote locked account */ #undef LOCKED_PASSWD_SUBSTR -/* Some versions of /bin/login need the TERM supplied on the commandline */ -#undef LOGIN_NEEDS_TERM - /* Some systems need a utmpx entry for /bin/login to work */ #undef LOGIN_NEEDS_UTMPX -/* Define if your login program cannot handle end of options ("--") */ -#undef LOGIN_NO_ENDOPT - -/* If your header files don't define LOGIN_PROGRAM, then use this (detected) - from environment and PATH */ -#undef LOGIN_PROGRAM_FALLBACK - /* Set this to your mail directory if you do not have _PATH_MAILDIR */ #undef MAIL_DIRECTORY @@ -1525,6 +1518,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -1614,6 +1610,9 @@ /* Define if sshd somehow reacquires a controlling TTY after setsid() */ #undef SSHD_ACQUIRES_CTTY +/* sshd PAM service name */ +#undef SSHD_PAM_SERVICE + /* Define if pam_chauthtok wants real uid set to the unpriv'ed user */ #undef SSHPAM_CHAUTHTOK_NEEDS_RUID @@ -1720,13 +1719,26 @@ /* include SSH protocol version 1 support */ #undef WITH_SSH1 -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -#undef WORDS_BIGENDIAN +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif /* Define if xauth is found in your path */ #undef XAUTH_PATH +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS |
