diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-03 18:30:16 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-03 18:30:16 +0000 |
commit | 652ac4f78cf22e310a28df98c989c7f564866fc1 (patch) | |
tree | ceedd19590873b0d173d05f9aea09eb732fff55c /mbone | |
parent | 4268bd8eb77ad241a1a6289b126f91ab21c32cba (diff) | |
download | pkgsrc-652ac4f78cf22e310a28df98c989c7f564866fc1.tar.gz |
Use system sys_errlist on DragonFly and FreeBSD as well.
Diffstat (limited to 'mbone')
-rw-r--r-- | mbone/imm/distinfo | 3 | ||||
-rw-r--r-- | mbone/imm/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mbone/imm/distinfo b/mbone/imm/distinfo index a229f4df01c..7db030b373c 100644 --- a/mbone/imm/distinfo +++ b/mbone/imm/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.6 2005/02/22 21:33:50 agc Exp $ +$NetBSD: distinfo,v 1.7 2006/01/03 18:30:16 joerg Exp $ SHA1 (imm36a1.tar.Z) = a3c0bd042ebed930739f22ebfec2bf28080a88f6 RMD160 (imm36a1.tar.Z) = d1a1de1cd7317278b5932b6cd1512ba5d66f6fca Size (imm36a1.tar.Z) = 87695 bytes +SHA1 (patch-aa) = 17679dadc252d391e4f2c30ddccb7008531f1cba SHA1 (patch-ad) = dc9bc795bc177f5e0087b1bb2bcb2f5d654bdb66 SHA1 (patch-ae) = b8133dd4ab0b25c9c6e5ae87ceca6ab7870a438b diff --git a/mbone/imm/patches/patch-aa b/mbone/imm/patches/patch-aa new file mode 100644 index 00000000000..bd650469511 --- /dev/null +++ b/mbone/imm/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.5 2006/01/03 18:30:16 joerg Exp $ + +--- xlopen.c.orig 2006-01-03 18:28:04.000000000 +0000 ++++ xlopen.c +@@ -37,7 +37,7 @@ extern char *optarg; + extern int optind, opterr; + extern int useimageloader; + extern struct hosttype *hosts_tail; +-#ifndef __NetBSD__ ++#if !defined(__NetBSD__) && !defined(__DragonFly__) && !defined(__FreeBSD__) + extern char *sys_errlist[]; + #endif + extern int fullscrflag; |