summaryrefslogtreecommitdiff
path: root/config.h.in
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-01-24 22:46:54 +0000
committerColin Watson <cjwatson@debian.org>2010-01-24 22:46:54 +0000
commit59247ecde39f2d826a94ab07f6095ca1f6644e88 (patch)
tree5910d4a840352aafbf67e8a39fa63936e5529b26 /config.h.in
parent07d905b406c4ab64ea2f10a22f4f8f0d595269f6 (diff)
parent964476f91b66c475d5b8fa1e8b28d39a97a1b56e (diff)
* New upstream release.
* Update to GSSAPI patch from http://www.sxw.org.uk/computing/patches/openssh-5.3p1-gsskex-all-20100124.patch.
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 a1b719751..939840fc2 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
@@ -1229,6 +1241,9 @@
1229/* Adjust Linux out-of-memory killer */ 1241/* Adjust Linux out-of-memory killer */
1230#undef OOM_ADJUST 1242#undef OOM_ADJUST
1231 1243
1244/* Define if EVP_DigestUpdate returns void */
1245#undef OPENSSL_EVP_DIGESTUPDATE_VOID
1246
1232/* libcrypto is missing AES 192 and 256 bit functions */ 1247/* libcrypto is missing AES 192 and 256 bit functions */
1233#undef OPENSSL_LOBOTOMISED_AES 1248#undef OPENSSL_LOBOTOMISED_AES
1234 1249
@@ -1312,6 +1327,9 @@
1312/* Use audit debugging module */ 1327/* Use audit debugging module */
1313#undef SSH_AUDIT_EVENTS 1328#undef SSH_AUDIT_EVENTS
1314 1329
1330/* Windows is sensitive to read buffer size */
1331#undef SSH_IOBUFSZ
1332
1315/* non-privileged user for privilege separation */ 1333/* non-privileged user for privilege separation */
1316#undef SSH_PRIVSEP_USER 1334#undef SSH_PRIVSEP_USER
1317 1335
@@ -1406,9 +1424,17 @@
1406/* Define if you want SELinux support. */ 1424/* Define if you want SELinux support. */
1407#undef WITH_SELINUX 1425#undef WITH_SELINUX
1408 1426
1409/* Define to 1 if your processor stores words with the most significant byte 1427/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1410 first (like Motorola and SPARC, unlike Intel and VAX). */ 1428 significant byte first (like Motorola and SPARC, unlike Intel). */
1411#undef WORDS_BIGENDIAN 1429#if defined AC_APPLE_UNIVERSAL_BUILD
1430# if defined __BIG_ENDIAN__
1431# define WORDS_BIGENDIAN 1
1432# endif
1433#else
1434# ifndef WORDS_BIGENDIAN
1435# undef WORDS_BIGENDIAN
1436# endif
1437#endif
1412 1438
1413/* Define if xauth is found in your path */ 1439/* Define if xauth is found in your path */
1414#undef XAUTH_PATH 1440#undef XAUTH_PATH