summaryrefslogtreecommitdiff
path: root/devel/dmake
diff options
context:
space:
mode:
authorminskim <minskim>2006-06-27 15:36:04 +0000
committerminskim <minskim>2006-06-27 15:36:04 +0000
commit2d8149834bff825e93f7bc7a8a45ad35a4e3f25b (patch)
tree10d967b5ba302407a3acb2a3718a1713b265e578 /devel/dmake
parent3ad1ff6ef41221bbb365b1692191f9d08805475e (diff)
downloadpkgsrc-2d8149834bff825e93f7bc7a8a45ad35a4e3f25b.tar.gz
Do not declare (conflicting) sys_errlist on Linux; it is already in
sys_errlist.h.
Diffstat (limited to 'devel/dmake')
-rw-r--r--devel/dmake/distinfo4
-rw-r--r--devel/dmake/patches/patch-aa4
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/dmake/distinfo b/devel/dmake/distinfo
index 02e4d16ccd8..e9e2625c9b8 100644
--- a/devel/dmake/distinfo
+++ b/devel/dmake/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2005/12/15 21:58:25 joerg Exp $
+$NetBSD: distinfo,v 1.5 2006/06/27 15:36:04 minskim Exp $
SHA1 (dmake-v4.1-src-export.all-unknown-all.tar.gz) = 6262a38d58fdb69242ddfe663be9caada1882d64
RMD160 (dmake-v4.1-src-export.all-unknown-all.tar.gz) = ba76d48a6057b6af01b8abd7c72cc7521f60a983
Size (dmake-v4.1-src-export.all-unknown-all.tar.gz) = 473427 bytes
-SHA1 (patch-aa) = 56686bc1156d803dab5c7dc39a87041581c70810
+SHA1 (patch-aa) = 589a7187dc7e83c84588fd5a110b790877693edb
diff --git a/devel/dmake/patches/patch-aa b/devel/dmake/patches/patch-aa
index bda40e0979b..88f5e159b28 100644
--- a/devel/dmake/patches/patch-aa
+++ b/devel/dmake/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.2 2005/12/15 21:58:25 joerg Exp $
+$NetBSD: patch-aa,v 1.3 2006/06/27 15:36:04 minskim Exp $
--- unix/runargv.c.orig 1997-07-15 16:02:34.000000000 +0000
+++ unix/runargv.c
@@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.2 2005/12/15 21:58:25 joerg Exp $
char *cmd;
{
- extern int errno;
-+#if (!defined(BSD) || BSD < 199306)
++#if !defined(__linux__) && (!defined(BSD) || BSD < 199306)
extern char *sys_errlist[];
+#endif
int pid;