diff options
author | joerg <joerg> | 2005-10-29 18:12:10 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-10-29 18:12:10 +0000 |
commit | 668f3d43eaf274d7747ecbb75c8192f8bf11d563 (patch) | |
tree | f44b06e65a7d7784df03bfc8a91f5758cda047f8 /security | |
parent | 9276b4a03bd9286e788b36bada4fc6a76f8d5b9d (diff) | |
download | pkgsrc-668f3d43eaf274d7747ecbb75c8192f8bf11d563.tar.gz |
Fix Heimdal's LOCAL_PEERCRED on DragonFly by including
the necessary headers.
XXX Ask upstream, why this isn't a #if / #elif list
Reported-by: walt <wa1ter AT myrealbox DOT com> on tech-pkg
Diffstat (limited to 'security')
-rw-r--r-- | security/heimdal/distinfo | 3 | ||||
-rw-r--r-- | security/heimdal/patches/patch-ak | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/security/heimdal/distinfo b/security/heimdal/distinfo index cbfc9f06655..cff53571fe9 100644 --- a/security/heimdal/distinfo +++ b/security/heimdal/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2005/10/26 16:44:24 jlam Exp $ +$NetBSD: distinfo,v 1.17 2005/10/29 18:12:10 joerg Exp $ SHA1 (heimdal-0.7.1.tar.gz) = ab3e6f5fe6de86f7ba7413f8600f9b1ed956b620 RMD160 (heimdal-0.7.1.tar.gz) = 30373d227452e20187ca4bad1dc980c3f952be26 @@ -12,3 +12,4 @@ SHA1 (patch-ag) = 003307136227d75729fc4d7f95a7debc7e91136e SHA1 (patch-ah) = 797785f2f5f1530782d42393d2cc242f03fc20e6 SHA1 (patch-ai) = 55276d0becee47ae62ccfe5cd837b0fd4d7e6ff6 SHA1 (patch-aj) = ad30690ce7b7f11a80513df4d3e932bce095d863 +SHA1 (patch-ak) = 0667c72a591c79be30d77251cd231ea7e93da794 diff --git a/security/heimdal/patches/patch-ak b/security/heimdal/patches/patch-ak new file mode 100644 index 00000000000..5cff9ab277b --- /dev/null +++ b/security/heimdal/patches/patch-ak @@ -0,0 +1,14 @@ +$NetBSD: patch-ak,v 1.1 2005/10/29 18:12:10 joerg Exp $ + +--- kcm/connect.c.orig 2005-10-29 17:36:00.000000000 +0200 ++++ kcm/connect.c +@@ -32,4 +32,9 @@ + */ + ++#if defined(__DragonFly__) ++#include <sys/param.h> ++#include <sys/ucred.h> ++#endif ++ + #include "kcm_locl.h" + |