summaryrefslogtreecommitdiff
path: root/includes.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2004-03-01 02:25:32 +0000
committerColin Watson <cjwatson@debian.org>2004-03-01 02:25:32 +0000
commitea8116a11e3de70036dbc665ccb0d486cf89cac9 (patch)
treed73ccdff78d8608e156465af42e6a1b3527fb2d6 /includes.h
parente39b311381a5609cc05acf298c42fba196dc524b (diff)
parentf5bda272678ec6dccaa5f29379cf60cb855018e8 (diff)
Merge 3.8p1 to the trunk. This builds and runs, but I haven't tested it
extensively yet. ProtocolKeepAlives is now just a compatibility alias for ServerAliveInterval.
Diffstat (limited to 'includes.h')
-rw-r--r--includes.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/includes.h b/includes.h
index 033cd91fa..ca943c7e6 100644
--- a/includes.h
+++ b/includes.h
@@ -134,6 +134,12 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
134#ifdef HAVE_SYS_STRTIO_H 134#ifdef HAVE_SYS_STRTIO_H
135#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */ 135#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
136#endif 136#endif
137#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
138# if defined(HAVE_SYS_STREAM_H)
139# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
140# endif
141#include <sys/ptms.h> /* for grantpt() and friends */
142#endif
137 143
138#include <netinet/in_systm.h> /* For typedefs */ 144#include <netinet/in_systm.h> /* For typedefs */
139#include <netinet/in.h> /* For IPv6 macros */ 145#include <netinet/in.h> /* For IPv6 macros */
@@ -147,7 +153,11 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
147# include <rpc/types.h> /* For INADDR_LOOPBACK */ 153# include <rpc/types.h> /* For INADDR_LOOPBACK */
148#endif 154#endif
149#ifdef USE_PAM 155#ifdef USE_PAM
156#if defined(HAVE_SECURITY_PAM_APPL_H)
150# include <security/pam_appl.h> 157# include <security/pam_appl.h>
158#elif defined (HAVE_PAM_PAM_APPL_H)
159# include <pam/pam_appl.h>
160#endif
151#endif 161#endif
152#ifdef HAVE_READPASSPHRASE_H 162#ifdef HAVE_READPASSPHRASE_H
153# include <readpassphrase.h> 163# include <readpassphrase.h>
@@ -165,6 +175,11 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
165# include <libutil.h> /* Openpty on FreeBSD at least */ 175# include <libutil.h> /* Openpty on FreeBSD at least */
166#endif 176#endif
167 177
178#if defined(KRB5) && defined(USE_AFS)
179# include <krb5.h>
180# include <kafs.h>
181#endif
182
168#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ 183#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
169 184
170#include "defines.h" 185#include "defines.h"