diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-02-25 01:24:44 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-02-25 01:24:44 +0100 |
commit | 03978c61f32935b31337844aa25d87dc0edd39d2 (patch) | |
tree | 9467a076b7d4fcf741a3f59bf08096f393bf27d0 /ssh-gss.h | |
parent | welcome to 2013 (diff) | |
download | openssh-03978c61f32935b31337844aa25d87dc0edd39d2.tar.xz openssh-03978c61f32935b31337844aa25d87dc0edd39d2.zip |
- (dtucker) [configure.ac ssh-gss.h] bz#2073: additional #includes needed
to use Solaris native GSS libs. Patch from Pierre Ossman.
Diffstat (limited to 'ssh-gss.h')
-rw-r--r-- | ssh-gss.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -42,12 +42,13 @@ # include <gssapi/gssapi_generic.h> # endif -/* MIT Kerberos doesn't seem to define GSS_NT_HOSTBASED_SERVICE */ +/* Old MIT Kerberos doesn't seem to define GSS_NT_HOSTBASED_SERVICE */ -#ifndef GSS_C_NT_HOSTBASED_SERVICE -#define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name -#endif /* GSS_C_NT_... */ -#endif /* !HEIMDAL */ +# if !HAVE_DECL_GSS_C_NT_HOSTBASED_SERVICE +# define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name +# endif /* !HAVE_DECL_GSS_C_NT_... */ + +# endif /* !HEIMDAL */ #endif /* KRB5 */ /* draft-ietf-secsh-gsskeyex-06 */ |