summaryrefslogtreecommitdiff
path: root/crypto/openssh/config.h
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2009-10-01 17:12:52 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2009-10-01 17:12:52 +0000
commit7aee6ffee0748c4c6bd9d11bb2a90c7531244d63 (patch)
tree927d2417c80c4c448ee45c25269ecab7af8f482e /crypto/openssh/config.h
parenta45bff047cd880a268962395477bee8c982f51ba (diff)
parente5e752b5a70a672df97b5d7ca5c1e58c87a27234 (diff)
downloadsrc-test2-7aee6ffee0748c4c6bd9d11bb2a90c7531244d63.tar.gz
src-test2-7aee6ffee0748c4c6bd9d11bb2a90c7531244d63.zip
Notes
Diffstat (limited to 'crypto/openssh/config.h')
-rw-r--r--crypto/openssh/config.h27
1 files changed, 23 insertions, 4 deletions
diff --git a/crypto/openssh/config.h b/crypto/openssh/config.h
index d07ee699a020..543024490b6f 100644
--- a/crypto/openssh/config.h
+++ b/crypto/openssh/config.h
@@ -69,6 +69,9 @@
/* Define if your snprintf is busted */
/* #undef BROKEN_SNPRINTF */
+/* tcgetattr with ICANON may hang */
+/* #undef BROKEN_TCGETATTR_ICANON */
+
/* updwtmpx is broken (if present) */
/* #undef BROKEN_UPDWTMPX */
@@ -123,9 +126,12 @@
/* Builtin PRNG command timeout */
#define ENTROPY_TIMEOUT_MSEC 200
-/* f_fsid has members */
+/* fsid_t has member val */
/* #undef FSID_HAS_VAL */
+/* fsid_t has member __val */
+/* #undef FSID_HAS___VAL */
+
/* Define to 1 if the `getpgrp' function requires zero arguments. */
#define GETPGRP_VOID 1
@@ -519,6 +525,9 @@
/* Define to 1 if the system has the type `in_addr_t'. */
#define HAVE_IN_ADDR_T 1
+/* Define to 1 if the system has the type `in_port_t'. */
+#define HAVE_IN_PORT_T 1
+
/* Define to 1 if you have the <lastlog.h> header file. */
/* #undef HAVE_LASTLOG_H */
@@ -1227,6 +1236,9 @@
/* Define if X11 doesn't support AF_UNIX sockets on that system */
/* #undef NO_X11_UNIX_SOCKETS */
+/* Define if EVP_DigestUpdate returns void */
+/* #undef OPENSSL_EVP_DIGESTUPDATE_VOID */
+
/* libcrypto is missing AES 192 and 256 bit functions */
/* #undef OPENSSL_LOBOTOMISED_AES */
@@ -1310,6 +1322,9 @@
/* Use audit debugging module */
/* #undef SSH_AUDIT_EVENTS */
+/* Windows is sensitive to read buffer size */
+/* #undef SSH_IOBUFSZ */
+
/* non-privileged user for privilege separation */
#define SSH_PRIVSEP_USER "sshd"
@@ -1398,9 +1413,13 @@
/* Define if you want SELinux support. */
/* #undef WITH_SELINUX */
-/* 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 and VAX). */
+#if defined __BIG_ENDIAN__
+# define WORDS_BIGENDIAN 1
+#elif ! defined __LITTLE_ENDIAN__
+/* # undef WORDS_BIGENDIAN */
+#endif
/* Define if xauth is found in your path */
/* #undef XAUTH_PATH */