diff options
author | minskim <minskim@pkgsrc.org> | 2005-05-17 16:11:42 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-05-17 16:11:42 +0000 |
commit | b85370e6dc25d56aaf4abb24aabe82efd15da6f2 (patch) | |
tree | 85c8b944e8f783695dc047b08fe54217bf60392d /archivers/unalz | |
parent | 0932ec2ef62be81ec4b1f28233923179d7dc40c0 (diff) | |
download | pkgsrc-b85370e6dc25d56aaf4abb24aabe82efd15da6f2.tar.gz |
Use const char*, instead of char*, for the second parameter of iconv()
on Darwin.
Diffstat (limited to 'archivers/unalz')
-rw-r--r-- | archivers/unalz/distinfo | 4 | ||||
-rw-r--r-- | archivers/unalz/patches/patch-ab | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/archivers/unalz/distinfo b/archivers/unalz/distinfo index f212f0f4eaa..df64457e5fe 100644 --- a/archivers/unalz/distinfo +++ b/archivers/unalz/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2005/03/11 22:18:27 rillig Exp $ +$NetBSD: distinfo,v 1.5 2005/05/17 16:11:42 minskim Exp $ SHA1 (unalz-0.31.tgz) = 0d6f21b1fc9b00c5ca763b4e402c792ebe045fc9 RMD160 (unalz-0.31.tgz) = 23ccefe2b29b8127c15ebf4f93e313316ad34510 Size (unalz-0.31.tgz) = 129623 bytes SHA1 (patch-aa) = 35072979d009ff4a0d110e64aeac99e2f7a584cc -SHA1 (patch-ab) = 18d0cfe73125a91c671c70b5a523e9834fdc70e1 +SHA1 (patch-ab) = 0cef7822315c30d1f0f37155cb746ac014d5d382 diff --git a/archivers/unalz/patches/patch-ab b/archivers/unalz/patches/patch-ab index 9c6ffa5300c..53d9586cba6 100644 --- a/archivers/unalz/patches/patch-ab +++ b/archivers/unalz/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.2 2005/03/11 22:18:27 rillig Exp $ +$NetBSD: patch-ab,v 1.3 2005/05/17 16:11:42 minskim Exp $ This patch assumes that on NetBSD, every <iconv.h> has the non-const prototype argument for the second parameter of iconv(). This is true for @@ -32,7 +32,7 @@ package converters/libiconv is used or there's a current <iconv.h>. char inbuf[ICONV_BUF_SIZE];
char outbuf[ICONV_BUF_SIZE];
-#if defined(__FreeBSD__) || defined(__CYGWIN__)
-+#if defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__NetBSD__)
++#if defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__APPLE__) || defined(__NetBSD__)
const char *inptr = inbuf;
#else
char *inptr = inbuf;
|