summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-10-18 10:45:34 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-10-18 10:45:34 +0000
commit49972ed336f403df90504fee87c3f85c9f54ee00 (patch)
tree2c0b08bec9ccdee3cd8ae97666c3a6f309f2f75f /security
parentPatch mkmf-gnome2.rb for Ruby 1.6. This should fix the build failure (diff)
- new option WITHOUT_KERBEROS
PR: 58156 Submitted by: matt@peterson.org
Notes
Notes: svn path=/head/; revision=91564
Diffstat (limited to 'security')
-rw-r--r--security/hpn-ssh/Makefile2
-rw-r--r--security/openssh-portable/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/security/hpn-ssh/Makefile b/security/hpn-ssh/Makefile
index 5dd81a234f67..d81f25cf4980 100644
--- a/security/hpn-ssh/Makefile
+++ b/security/hpn-ssh/Makefile
@@ -80,7 +80,7 @@ CONFLICTS+= openssh-portable-*
CONFIGURE_ARGS+= --with-kerberos5=${KRB5_HOME}
.else
CONFLICTS+= openssh-gssapi-*
-.if exists(/usr/include/krb5.h)
+.if !defined(WITHOUT_KERBEROS) && exists(/usr/include/krb5.h)
CONFIGURE_ARGS+= --with-kerberos5
EXTRA_PATCHES+= ${FILESDIR}/gss-serv.c.patch
.endif
diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile
index 5dd81a234f67..d81f25cf4980 100644
--- a/security/openssh-portable/Makefile
+++ b/security/openssh-portable/Makefile
@@ -80,7 +80,7 @@ CONFLICTS+= openssh-portable-*
CONFIGURE_ARGS+= --with-kerberos5=${KRB5_HOME}
.else
CONFLICTS+= openssh-gssapi-*
-.if exists(/usr/include/krb5.h)
+.if !defined(WITHOUT_KERBEROS) && exists(/usr/include/krb5.h)
CONFIGURE_ARGS+= --with-kerberos5
EXTRA_PATCHES+= ${FILESDIR}/gss-serv.c.patch
.endif