diff options
author | dholland <dholland> | 2011-08-01 04:08:51 +0000 |
---|---|---|
committer | dholland <dholland> | 2011-08-01 04:08:51 +0000 |
commit | 94f90a29c7a9c2105c47e6fa65183f24ca48544d (patch) | |
tree | 2e49b9f687dc5dc2ee5dc5d35f26f398abc314d2 /converters/mpack | |
parent | 4a3ecfc0ad643c710376d9565493f662d9331b60 (diff) | |
download | pkgsrc-94f90a29c7a9c2105c47e6fa65183f24ca48544d.tar.gz |
Fix broken clang build.
Diffstat (limited to 'converters/mpack')
-rw-r--r-- | converters/mpack/distinfo | 3 | ||||
-rw-r--r-- | converters/mpack/patches/patch-uudecode_c | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/converters/mpack/distinfo b/converters/mpack/distinfo index 2a07273915b..d6d4af79c2e 100644 --- a/converters/mpack/distinfo +++ b/converters/mpack/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2010/11/17 22:24:40 is Exp $ +$NetBSD: distinfo,v 1.13 2011/08/01 04:08:51 dholland Exp $ SHA1 (mpack-1.6.tar.gz) = 7fd3a73e0f131412920b6ff34872e7e7fa03e03b RMD160 (mpack-1.6.tar.gz) = a83330aa15437dc3ca6475cbf6e35b09ab9cef07 @@ -9,3 +9,4 @@ SHA1 (patch-ad) = 76f32d163021a81d73d8316f72b141ef3edf4f14 SHA1 (patch-ae) = 7cbc232a310d0aa2c18b8f2fc3dba0a3fae311b8 SHA1 (patch-af) = 2b38171d450ddbe1f9bb7a520d5e114a15afab9d SHA1 (patch-ag) = 9075ca42dd37e349284e5bb44bc15b740998a987 +SHA1 (patch-uudecode_c) = ca9ccf61afeef850fca198346105c437023ba4e3 diff --git a/converters/mpack/patches/patch-uudecode_c b/converters/mpack/patches/patch-uudecode_c new file mode 100644 index 00000000000..a008d1a9df5 --- /dev/null +++ b/converters/mpack/patches/patch-uudecode_c @@ -0,0 +1,15 @@ +$NetBSD: patch-uudecode_c,v 1.1 2011/08/01 04:08:51 dholland Exp $ + +Fix broken build with clang. + +--- uudecode.c~ 2003-07-21 20:46:37.000000000 +0000 ++++ uudecode.c +@@ -845,7 +845,7 @@ int uudecodeline(char *line, FILE *outfi + } + line += 4; + } +- return; ++ return 0; + } + + |