diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-08 21:07:06 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-08 21:07:06 +0000 |
commit | 0f4566656c64e00b09e2b8fc6226d0fb6f692f78 (patch) | |
tree | b802ea9b322faf85cce8b3170964f635e9893d37 /net/yafc | |
parent | 664db0ab111655354c62877e718d127b78ddcf78 (diff) | |
download | pkgsrc-0f4566656c64e00b09e2b8fc6226d0fb6f692f78.tar.gz |
Fix errno.
Diffstat (limited to 'net/yafc')
-rw-r--r-- | net/yafc/distinfo | 3 | ||||
-rw-r--r-- | net/yafc/patches/patch-aa | 19 |
2 files changed, 21 insertions, 1 deletions
diff --git a/net/yafc/distinfo b/net/yafc/distinfo index b1bed87dbfd..2e88585de04 100644 --- a/net/yafc/distinfo +++ b/net/yafc/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 12:14:07 agc Exp $ +$NetBSD: distinfo,v 1.4 2006/01/08 21:07:06 joerg Exp $ SHA1 (yafc-0.7.10.tar.bz2) = a9a0cd2a86bb3e36b670c74fd348d68087cbe7b4 RMD160 (yafc-0.7.10.tar.bz2) = f785bc4e9cfbef7d3aa35714726dce7a484e2eed Size (yafc-0.7.10.tar.bz2) = 403013 bytes +SHA1 (patch-aa) = 91be0ade7cfb7fb72c452a6bd18c4dda353db71f diff --git a/net/yafc/patches/patch-aa b/net/yafc/patches/patch-aa new file mode 100644 index 00000000000..f636160b02c --- /dev/null +++ b/net/yafc/patches/patch-aa @@ -0,0 +1,19 @@ +$NetBSD: patch-aa,v 1.1 2006/01/08 21:07:06 joerg Exp $ + +--- lib/makepath.c.orig 2006-01-08 21:04:51.000000000 +0000 ++++ lib/makepath.c +@@ -54,13 +54,7 @@ char *alloca (); + # include <stdlib.h> + #endif + +-#if HAVE_ERRNO_H +-# include <errno.h> +-#endif +- +-#ifndef errno +-extern int errno; +-#endif ++#include <errno.h> + + #ifdef STDC_HEADERS /* HAVE_STRING_H */ + # include <string.h> |