aboutsummaryrefslogtreecommitdiffstats
path: root/japanese
diff options
context:
space:
mode:
authornork <nork@FreeBSD.org>2010-02-18 00:08:48 +0800
committernork <nork@FreeBSD.org>2010-02-18 00:08:48 +0800
commit71b19a0b233a195607717f7f26e235dfefe6dc81 (patch)
treebdd932f18c66324644dcac31d7fcdcb8c455a72e /japanese
parent20099424ea9609cf8b0177cc1a2e6c53c71520b4 (diff)
downloadfreebsd-ports-gnome-71b19a0b233a195607717f7f26e235dfefe6dc81.tar.gz
freebsd-ports-gnome-71b19a0b233a195607717f7f26e235dfefe6dc81.tar.zst
freebsd-ports-gnome-71b19a0b233a195607717f7f26e235dfefe6dc81.zip
Remove all patch files.
PR: ports/144028, ports/144029 Pointed out by: Hiroto Kagotani hiroto kagotani at gmail com Tsurutani Naoki turutani at scphys kyoto-u ac jp Pointy hat: myself Feature safe: yes
Diffstat (limited to 'japanese')
-rw-r--r--japanese/p5-nkf/files/patch-NKF.xs33
-rw-r--r--japanese/p5-nkf/files/patch-nkf.c46
2 files changed, 0 insertions, 79 deletions
diff --git a/japanese/p5-nkf/files/patch-NKF.xs b/japanese/p5-nkf/files/patch-NKF.xs
deleted file mode 100644
index 60472da4840d..000000000000
--- a/japanese/p5-nkf/files/patch-NKF.xs
+++ /dev/null
@@ -1,33 +0,0 @@
---- NKF.xs.orig 2009-01-20 18:49:31.000000000 +0900
-+++ NKF.xs 2009-04-12 22:34:31.574328548 +0900
-@@ -95,7 +95,10 @@
-
- #define PERL_XS 1
- #include "../utf8tbl.c"
-+#undef SP
- #include "../nkf.c"
-+#undef SP
-+#define SP sp /* perl's CORE/pp.h */
-
- /* package defenition */
-
-@@ -134,9 +137,6 @@
- data = SvPV(ST(argc),i_len);
- input_ctr = 0;
-
-- if(x0201_f == WISH_TRUE)
-- x0201_f = ((!iso2022jp_f)? TRUE : NO_X0201);
--
- /* allocate the result buffer */
-
- /* During conversion, stirngs length may grow. This is the unit */
-@@ -178,9 +178,6 @@
- data = SvPV(ST(0),i_len);
- input_ctr = 0;
-
-- if(x0201_f == WISH_TRUE)
-- x0201_f = ((!iso2022jp_f)? TRUE : NO_X0201);
--
- /* allocate the result buffer */
-
- /* During conversion, stirngs length may grow. This is the unit */
diff --git a/japanese/p5-nkf/files/patch-nkf.c b/japanese/p5-nkf/files/patch-nkf.c
deleted file mode 100644
index 26b9d9054c68..000000000000
--- a/japanese/p5-nkf/files/patch-nkf.c
+++ /dev/null
@@ -1,46 +0,0 @@
---- ../nkf.c.orig 2009-01-20 18:49:31.000000000 +0900
-+++ ../nkf.c 2009-04-27 22:46:26.602103993 +0900
-@@ -21,7 +21,7 @@
- * 3. This notice may not be removed or altered from any source distribution.
- */
- #define NKF_VERSION "2.0.9"
--#define NKF_RELEASE_DATE "2009-01-20"
-+#define NKF_RELEASE_DATE "2009-02-21"
- #define COPY_RIGHT \
- "Copyright (C) 1987, FUJITSU LTD. (I.Ichikawa).\n" \
- "Copyright (C) 1996-2009, The nkf Project."
-@@ -468,6 +468,8 @@
- {"Shift_JIS", 0, 0, 0, {0, 0, 0}, s_status, s_iconv, 0},
- #ifdef UTF8_INPUT_ENABLE
- {"UTF-8", 0, 0, 0, {0, 0, 0}, w_status, w_iconv, 0},
-+ {"UTF-16", 0, 0, 0, {0, 0, 0}, NULL, w_iconv16, 0},
-+ {"UTF-32", 0, 0, 0, {0, 0, 0}, NULL, w_iconv32, 0},
- #endif
- {0}
- };
-@@ -1426,6 +1428,7 @@
- output_endian = ENDIAN_LITTLE;
- output_bom_f = TRUE;
- break;
-+ case UTF_32:
- case UTF_32BE_BOM:
- output_bom_f = TRUE;
- break;
-@@ -6159,9 +6162,6 @@
- output_endian = ENDIAN_LITTLE;
- } else if (cp[0] == 'B') {
- cp++;
-- } else {
-- output_encoding = nkf_enc_from_index(enc_idx);
-- continue;
- }
- if (cp[0] == '0'){
- cp++;
-@@ -6232,6 +6232,7 @@
- while ('0'<= *cp && *cp <='9') {
- alpha_f |= 1 << (*cp++ - '0');
- }
-+ if (alpha_f & ((1 << 2) | (1 << 3))) alpha_f |= 1;
- if (!alpha_f) alpha_f = 1;
- continue;
- case 'x': /* Convert X0201 kana to X0208 or X0201 Conversion */