diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-10-10 03:52:03 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-10-10 03:52:03 +0000 |
commit | 8fd78e5ad91d5c4f891b3ae16ef9d7971e308268 (patch) | |
tree | 0d59c8ca2d5ab45ffa147c917aa4f727a584e0fd /security/hpn-ssh | |
parent | 540858f8fb2fd7089eeb8bc0271a39f58b8aa0a3 (diff) | |
download | FreeBSD-ports-8fd78e5ad91d5c4f891b3ae16ef9d7971e308268.zip FreeBSD-ports-8fd78e5ad91d5c4f891b3ae16ef9d7971e308268.tar.gz |
- GSSAPI patch improved for kerbers5 and hemidal
Submitted by: bg@sics.se
Diffstat (limited to 'security/hpn-ssh')
-rw-r--r-- | security/hpn-ssh/Makefile | 5 | ||||
-rw-r--r-- | security/hpn-ssh/files/gss-serv.c.patch | 18 |
2 files changed, 23 insertions, 0 deletions
diff --git a/security/hpn-ssh/Makefile b/security/hpn-ssh/Makefile index 083c281..7e4e565 100644 --- a/security/hpn-ssh/Makefile +++ b/security/hpn-ssh/Makefile @@ -88,6 +88,11 @@ pre-configure: @${ECHO_MSG} !!!! Warning this option uses autoreconf !!! (cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOCONF_ENV} ${AUTORECONF} \ ${AUTOCONF_ARGS}) +.else +.if exists(/usr/include/krb5.h) +CONFIGURE_ARGS+= --with-kerberos5 +EXTRA_PATCHES+= ${FILESDIR}/gss-serv.c.patch +.endif .endif post-configure: diff --git a/security/hpn-ssh/files/gss-serv.c.patch b/security/hpn-ssh/files/gss-serv.c.patch new file mode 100644 index 0000000..434f71e --- /dev/null +++ b/security/hpn-ssh/files/gss-serv.c.patch @@ -0,0 +1,18 @@ +--- gss-serv.c.DIST Tue Sep 2 14:56:42 2003 ++++ gss-serv.c Mon Oct 6 17:56:23 2003 +@@ -138,6 +138,15 @@ + OM_uint32 offset; + OM_uint32 oidl; + ++#if defined(HEIMDAL) ++ if (strcmp(heimdal_version, "Heimdal 0.6") < 0) { ++ name->length = ename->length; ++ name->value = xmalloc(name->length+1); ++ memcpy(name->value,ename->value,name->length); ++ ((char *)name->value)[name->length] = 0; ++ return GSS_S_COMPLETE; ++ } ++#endif + tok=ename->value; + + /* |