diff options
author | jlam <jlam@pkgsrc.org> | 2005-10-26 15:12:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-10-26 15:12:45 +0000 |
commit | b7a3391bc917f237a6ee5f1a1c82e881b6f20e9f (patch) | |
tree | a64d54346b8cd7166f740fbc15ec668504d56fe8 /security/heimdal/buildlink3.mk | |
parent | f6f9327f51c5b43e93e9efec8d0b0dbbe1653bad (diff) | |
download | pkgsrc-b7a3391bc917f237a6ee5f1a1c82e881b6f20e9f.tar.gz |
Update security/heimdal to 0.7.1 (approved by lha). We drop support
for the "db4" option and just rely on the appropriate BDB_* settings
via bdb.buildlink3.mk. Also, we tweak the builtin.mk file so use
krb5-config, if it's available, to check the version of the built-in
heimdal. Patches patch-ab, patch-ae and patch-af have been sent back
upstream and will be incorporated into future Heimdal releases.
Changes between version 0.6.5 and version 0.7.1 include:
* Support for KCM, a process based credential cache
* Support CCAPI credential cache
* SPNEGO support
* AES (and the gssapi conterpart, CFX) support
* Adding new and improve old documentation
* Bug fixes
Diffstat (limited to 'security/heimdal/buildlink3.mk')
-rw-r--r-- | security/heimdal/buildlink3.mk | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/security/heimdal/buildlink3.mk b/security/heimdal/buildlink3.mk index 2ea31252182..05445f58a99 100644 --- a/security/heimdal/buildlink3.mk +++ b/security/heimdal/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.25 2005/05/11 22:08:19 jlam Exp $ +# $NetBSD: buildlink3.mk,v 1.26 2005/10/26 15:12:45 jlam Exp $ BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ HEIMDAL_BUILDLINK3_MK:= ${HEIMDAL_BUILDLINK3_MK}+ @@ -27,11 +27,10 @@ MAKEFLAGS+= PKG_BUILD_OPTIONS.heimdal=${PKG_BUILD_OPTIONS.heimdal:Q} .endif MAKEVARS+= PKG_BUILD_OPTIONS.heimdal -.include "../../security/openssl/buildlink3.mk" -.if !empty(PKG_BUILD_OPTIONS.heimdal:Mdb4) -. include "../../databases/db4/buildlink3.mk" -.else -. include "../../mk/bdb.buildlink3.mk" +.if !empty(PKG_BUILD_OPTIONS.heimdal:Mldap) +. include "../../databases/openldap/buildlink3.mk" .endif +.include "../../security/openssl/buildlink3.mk" +.include "../../mk/bdb.buildlink3.mk" BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} |