summaryrefslogtreecommitdiff
path: root/archivers/unalz/patches
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2005-05-17 16:11:42 +0000
committerminskim <minskim@pkgsrc.org>2005-05-17 16:11:42 +0000
commitb85370e6dc25d56aaf4abb24aabe82efd15da6f2 (patch)
tree85c8b944e8f783695dc047b08fe54217bf60392d /archivers/unalz/patches
parent0932ec2ef62be81ec4b1f28233923179d7dc40c0 (diff)
downloadpkgsrc-b85370e6dc25d56aaf4abb24aabe82efd15da6f2.tar.gz
Use const char*, instead of char*, for the second parameter of iconv()
on Darwin.
Diffstat (limited to 'archivers/unalz/patches')
-rw-r--r--archivers/unalz/patches/patch-ab4
1 files changed, 2 insertions, 2 deletions
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;