summaryrefslogtreecommitdiff
path: root/config.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in34
1 files changed, 30 insertions, 4 deletions
diff --git a/config.h.in b/config.h.in
index 84967a461..fc195bad5 100644
--- a/config.h.in
+++ b/config.h.in
@@ -1,5 +1,8 @@
1/* config.h.in. Generated from configure.ac by autoheader. */ 1/* config.h.in. Generated from configure.ac by autoheader. */
2 2
3/* Define if building universal (internal helper macro) */
4#undef AC_APPLE_UNIVERSAL_BUILD
5
3/* Define if you have a getaddrinfo that fails for the all-zeros IPv6 address 6/* Define if you have a getaddrinfo that fails for the all-zeros IPv6 address
4 */ 7 */
5#undef AIX_GETNAMEINFO_HACK 8#undef AIX_GETNAMEINFO_HACK
@@ -68,6 +71,9 @@
68/* Define if your snprintf is busted */ 71/* Define if your snprintf is busted */
69#undef BROKEN_SNPRINTF 72#undef BROKEN_SNPRINTF
70 73
74/* tcgetattr with ICANON may hang */
75#undef BROKEN_TCGETATTR_ICANON
76
71/* updwtmpx is broken (if present) */ 77/* updwtmpx is broken (if present) */
72#undef BROKEN_UPDWTMPX 78#undef BROKEN_UPDWTMPX
73 79
@@ -122,9 +128,12 @@
122/* Builtin PRNG command timeout */ 128/* Builtin PRNG command timeout */
123#undef ENTROPY_TIMEOUT_MSEC 129#undef ENTROPY_TIMEOUT_MSEC
124 130
125/* f_fsid has members */ 131/* fsid_t has member val */
126#undef FSID_HAS_VAL 132#undef FSID_HAS_VAL
127 133
134/* fsid_t has member __val */
135#undef FSID_HAS___VAL
136
128/* Define to 1 if the `getpgrp' function requires zero arguments. */ 137/* Define to 1 if the `getpgrp' function requires zero arguments. */
129#undef GETPGRP_VOID 138#undef GETPGRP_VOID
130 139
@@ -518,6 +527,9 @@
518/* Define to 1 if the system has the type `in_addr_t'. */ 527/* Define to 1 if the system has the type `in_addr_t'. */
519#undef HAVE_IN_ADDR_T 528#undef HAVE_IN_ADDR_T
520 529
530/* Define to 1 if the system has the type `in_port_t'. */
531#undef HAVE_IN_PORT_T
532
521/* Define to 1 if you have the <lastlog.h> header file. */ 533/* Define to 1 if you have the <lastlog.h> header file. */
522#undef HAVE_LASTLOG_H 534#undef HAVE_LASTLOG_H
523 535
@@ -1226,6 +1238,9 @@
1226/* Define if X11 doesn't support AF_UNIX sockets on that system */ 1238/* Define if X11 doesn't support AF_UNIX sockets on that system */
1227#undef NO_X11_UNIX_SOCKETS 1239#undef NO_X11_UNIX_SOCKETS
1228 1240
1241/* Define if EVP_DigestUpdate returns void */
1242#undef OPENSSL_EVP_DIGESTUPDATE_VOID
1243
1229/* libcrypto is missing AES 192 and 256 bit functions */ 1244/* libcrypto is missing AES 192 and 256 bit functions */
1230#undef OPENSSL_LOBOTOMISED_AES 1245#undef OPENSSL_LOBOTOMISED_AES
1231 1246
@@ -1309,6 +1324,9 @@
1309/* Use audit debugging module */ 1324/* Use audit debugging module */
1310#undef SSH_AUDIT_EVENTS 1325#undef SSH_AUDIT_EVENTS
1311 1326
1327/* Windows is sensitive to read buffer size */
1328#undef SSH_IOBUFSZ
1329
1312/* non-privileged user for privilege separation */ 1330/* non-privileged user for privilege separation */
1313#undef SSH_PRIVSEP_USER 1331#undef SSH_PRIVSEP_USER
1314 1332
@@ -1397,9 +1415,17 @@
1397/* Define if you want SELinux support. */ 1415/* Define if you want SELinux support. */
1398#undef WITH_SELINUX 1416#undef WITH_SELINUX
1399 1417
1400/* Define to 1 if your processor stores words with the most significant byte 1418/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1401 first (like Motorola and SPARC, unlike Intel and VAX). */ 1419 significant byte first (like Motorola and SPARC, unlike Intel). */
1402#undef WORDS_BIGENDIAN 1420#if defined AC_APPLE_UNIVERSAL_BUILD
1421# if defined __BIG_ENDIAN__
1422# define WORDS_BIGENDIAN 1
1423# endif
1424#else
1425# ifndef WORDS_BIGENDIAN
1426# undef WORDS_BIGENDIAN
1427# endif
1428#endif
1403 1429
1404/* Define if xauth is found in your path */ 1430/* Define if xauth is found in your path */
1405#undef XAUTH_PATH 1431#undef XAUTH_PATH