Files
pkgsrc-ng/security/mit-krb5/patches/patch-al
2016-11-18 22:39:22 +01:00

23 lines
489 B
Plaintext

$NetBSD: patch-al,v 1.7 2016/03/15 15:16:39 tez Exp $
Add DragonFly support. Fallback to LINE_MAX if BUFSIZ is not defined.
--- lib/gssapi/krb5/import_name.c.orig Sat Dec 11 20:12:52 2010
+++ lib/gssapi/krb5/import_name.c Sat Dec 11 20:13:40 2010
@@ -28,10 +28,15 @@
#include "gssapiP_krb5.h"
#ifndef NO_PASSWORD
+#include <limits.h>
#include <pwd.h>
#include <stdio.h>
#endif
+#ifndef BUFSIZ
+#define BUFSIZ LINE_MAX
+#endif
+
#ifdef HAVE_STRING_H
#include <string.h>
#else