diff options
author | bland <bland@FreeBSD.org> | 2006-12-19 17:00:18 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2006-12-19 17:00:18 +0800 |
commit | 4bc2eb313101c73598fc73ae4b1e4f568a422d69 (patch) | |
tree | aaa979c413838d03ca03e58c9d7c1a91d0706d9b /converters | |
parent | 8f672372fc549c6e4c41c645dcb4e6e1967e5ed6 (diff) | |
download | freebsd-ports-gnome-4bc2eb313101c73598fc73ae4b1e4f568a422d69.tar.gz freebsd-ports-gnome-4bc2eb313101c73598fc73ae4b1e4f568a422d69.tar.zst freebsd-ports-gnome-4bc2eb313101c73598fc73ae4b1e4f568a422d69.zip |
Pacify gcc42 build.
Reported by: krismail
Diffstat (limited to 'converters')
-rw-r--r-- | converters/iconv-extra/files/patch-gcc41 | 34 | ||||
-rw-r--r-- | converters/iconv/files/patch-gcc41 | 93 |
2 files changed, 127 insertions, 0 deletions
diff --git a/converters/iconv-extra/files/patch-gcc41 b/converters/iconv-extra/files/patch-gcc41 new file mode 100644 index 000000000000..dbaaacec85e2 --- /dev/null +++ b/converters/iconv-extra/files/patch-gcc41 @@ -0,0 +1,34 @@ +Index: ces/unicode-1-1-utf-7.c +=================================================================== +RCS file: /home/bbcvs/iconv/ces/unicode-1-1-utf-7.c,v +retrieving revision 1.2 +diff -u -r1.2 unicode-1-1-utf-7.c +--- ces/unicode-1-1-utf-7.c 22 Mar 2005 16:41:03 -0000 1.2 ++++ ces/unicode-1-1-utf-7.c 14 Dec 2006 22:47:58 -0000 +@@ -233,7 +233,7 @@ + if (*inbytesleft < 2) + return UCS_CHAR_NONE; + needbytes = 1; +- ch = char_type(*(++((unsigned char *)*inbuf))); ++ ch = char_type(*(++*inbuf)); + (*inbytesleft) --; + case utf7_printable: + utf7_state[0] = 0; +@@ -249,7 +249,7 @@ + (*inbytesleft) += needbytes; + return UCS_CHAR_NONE; + } +- switch (char_type(*(++(unsigned char *)*inbuf))) { ++ switch (char_type(*(++*inbuf))) { + case utf7_shift_out: + (*inbuf) ++; + (*inbytesleft) -= 2; +@@ -267,7 +267,7 @@ + return UCS_CHAR_INVALID; + } + (*inbytesleft) --; +- return *((unsigned char *)*inbuf) ++; ++ return *(*inbuf)++; + #undef utf7_state + } + diff --git a/converters/iconv/files/patch-gcc41 b/converters/iconv/files/patch-gcc41 new file mode 100644 index 000000000000..9098e7b92a86 --- /dev/null +++ b/converters/iconv/files/patch-gcc41 @@ -0,0 +1,93 @@ +--- ces/ucs-2-internal.c 26 Nov 2003 01:51:45 -0000 1.3 ++++ ces/ucs-2-internal.c 14 Dec 2006 22:46:01 -0000 +@@ -39,7 +39,7 @@ + return -1; /* No corresponding character in UCS-2 */ + if (*outbytesleft < sizeof(ucs2_t)) + return 0; /* No space in the output buffer */ +- *((ucs2_t *)(*outbuf))++ = in; ++ *(*(ucs2_t **)outbuf)++ = in; + (*outbytesleft) -= sizeof(ucs2_t); + return 1; + } +@@ -51,7 +51,7 @@ + if (*inbytesleft < sizeof(ucs2_t)) + return UCS_CHAR_NONE; /* Not enough bytes in the input buffer */ + (*inbytesleft) -= sizeof(ucs2_t); +- return *((const ucs2_t *)(*inbuf))++; ++ return *(*(const ucs2_t **)inbuf)++; + } + + ICONV_CES_STATELESS_MODULE_DECL(ucs_2_internal); +--- ces/ucs-4-internal.c 26 Nov 2003 01:51:45 -0000 1.3 ++++ ces/ucs-4-internal.c 14 Dec 2006 22:46:30 -0000 +@@ -37,7 +37,7 @@ + return 1; /* No state reinitialization for table charsets */ + if (*outbytesleft < sizeof(ucs4_t)) + return 0; /* No space in the output buffer */ +- *((ucs4_t *)(*outbuf))++ = in; ++ *(*(ucs4_t **)outbuf)++ = in; + (*outbytesleft) -= sizeof(ucs4_t); + return 1; + } +@@ -49,7 +49,7 @@ + if (*inbytesleft < sizeof(ucs4_t)) + return UCS_CHAR_NONE; /* Not enough bytes in the input buffer */ + (*inbytesleft) -= sizeof(ucs4_t); +- return *((const ucs4_t *)(*inbuf))++; ++ return *(*(const ucs4_t **)inbuf)++; + } + + ICONV_CES_STATELESS_MODULE_DECL(ucs_4_internal); +--- lib/ces_euc.c 26 Nov 2003 01:51:46 -0000 1.3 ++++ lib/ces_euc.c 16 Dec 2006 18:41:08 -0000 +@@ -61,7 +61,7 @@ + } + } + state->nccs = num; +- (iconv_ces_euc_state *)*data = state; ++ *(iconv_ces_euc_state **)data = state; + return 0; + } + +--- lib/ces_iso2022.c 11 Mar 2004 01:23:22 -0000 1.5 ++++ lib/ces_iso2022.c 16 Dec 2006 18:41:36 -0000 +@@ -90,7 +90,7 @@ + } + state->nccs = num; + iconv_iso2022_reset(state); +- (iconv_ces_iso2022_state *)*data = state; ++ *(iconv_ces_iso2022_state **)data = state; + return 0; + } + +--- lib/ces_table.c 26 Nov 2003 01:51:46 -0000 1.3 ++++ lib/ces_table.c 16 Dec 2006 18:42:00 -0000 +@@ -43,7 +43,7 @@ + if (res) + free(ccs); + else +- (struct iconv_ccs *)(*data) = ccs; ++ *(struct iconv_ccs **)data = ccs; + return res; + } + +--- util/iconv_stream.c.orig Fri Dec 15 08:13:58 2006 ++++ util/iconv_stream.c Fri Dec 15 08:32:50 2006 +@@ -114,7 +114,7 @@ + if (left > size) + left = size; + memcpy(stream->buf_ptr, buf, left); +- (const char *)buf += left; ++ buf = (const char *)buf + left; + size -= left; + stream->buf_ptr += left; + res = iconv_write(handle, stream->buffer, +@@ -141,7 +141,7 @@ + return -1; + res = 0; + } +- (const char *)buf += res; ++ buf = (const char *)buf + res; + size -= res; + } while (size && res); + if (!size) |