summaryrefslogtreecommitdiff
path: root/japanese
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2002-03-18 11:26:13 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2002-03-18 11:26:13 +0000
commit449a928eea07416fb2c4e7ce5f02faae8c31155d (patch)
tree32461f0eea9317c27ab59afa60d1e17c3884eefe /japanese
parentAdd a patch to fix a bug where iconv() did not return -1 properly on (diff)
Iconv cleanup, stage 2a: remove patches that only replacing <iconv.h> with
<giconv.h> or -liconv with -lgiconv.
Notes
Notes: svn path=/head/; revision=56293
Diffstat (limited to 'japanese')
-rw-r--r--japanese/mutt-devel/files/patch-aa20
-rw-r--r--japanese/mutt-devel/files/patch-ab11
-rw-r--r--japanese/mutt-devel/files/patch-ad11
-rw-r--r--japanese/mutt-devel/files/patch-ae11
-rw-r--r--japanese/mutt-devel/files/patch-af11
-rw-r--r--japanese/mutt-devel/files/patch-ah40
6 files changed, 0 insertions, 104 deletions
diff --git a/japanese/mutt-devel/files/patch-aa b/japanese/mutt-devel/files/patch-aa
deleted file mode 100644
index 8d206a96bddc..000000000000
--- a/japanese/mutt-devel/files/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
---- configure.in.orig Wed Feb 6 22:22:58 2002
-+++ configure.in Wed Feb 6 22:23:22 2002
-@@ -686,7 +686,7 @@
- mutt_save_LIBS="$LIBS"
- LIBS="$LIBS $LIBICONV"
- AC_TRY_RUN([
--#include <iconv.h>
-+#include <giconv.h>
- int main()
- {
- iconv_t cd;
-@@ -717,7 +717,7 @@
- mutt_save_LIBS="$LIBS"
- LIBS="$LIBS $LIBICONV"
- AC_TRY_RUN([
--#include <iconv.h>
-+#include <giconv.h>
- #include <string.h>
- int main()
- {
diff --git a/japanese/mutt-devel/files/patch-ab b/japanese/mutt-devel/files/patch-ab
deleted file mode 100644
index 1c2c8aa18e49..000000000000
--- a/japanese/mutt-devel/files/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
---- charset.c.orig Thu Feb 15 17:09:02 2001
-+++ charset.c Thu Mar 1 02:27:30 2001
-@@ -31,7 +31,7 @@
- #include <unistd.h>
- #include <errno.h>
-
--#include <iconv.h>
-+#include <giconv.h>
-
- #include "mutt.h"
- #include "charset.h"
diff --git a/japanese/mutt-devel/files/patch-ad b/japanese/mutt-devel/files/patch-ad
deleted file mode 100644
index 2607c43b8041..000000000000
--- a/japanese/mutt-devel/files/patch-ad
+++ /dev/null
@@ -1,11 +0,0 @@
---- gnupgparse.c.orig Tue Jan 9 07:21:51 2001
-+++ gnupgparse.c Sun Feb 4 21:07:30 2001
-@@ -44,7 +44,7 @@
- #include "mutt.h"
- #include "pgp.h"
- #include "charset.h"
--#include "iconv.h"
-+#include "giconv.h"
-
- /* for hexval */
- #include "mime.h"
diff --git a/japanese/mutt-devel/files/patch-ae b/japanese/mutt-devel/files/patch-ae
deleted file mode 100644
index f373a2c82598..000000000000
--- a/japanese/mutt-devel/files/patch-ae
+++ /dev/null
@@ -1,11 +0,0 @@
---- rfc2047.c.orig Sun Feb 4 21:04:05 2001
-+++ rfc2047.c Sun Feb 4 21:08:22 2001
-@@ -24,7 +24,7 @@
-
- #include <ctype.h>
- #include <errno.h>
--#include <iconv.h>
-+#include <giconv.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
diff --git a/japanese/mutt-devel/files/patch-af b/japanese/mutt-devel/files/patch-af
deleted file mode 100644
index 88ba7656f455..000000000000
--- a/japanese/mutt-devel/files/patch-af
+++ /dev/null
@@ -1,11 +0,0 @@
---- charset.h.orig Fri Dec 7 03:41:04 2001
-+++ charset.h Fri Dec 7 03:42:31 2001
-@@ -19,7 +19,7 @@
- #ifndef _CHARSET_H
- #define _CHARSET_H
-
--#include <iconv.h>
-+#include <giconv.h>
-
- int mutt_convert_string (char **, const char *, const char *, int);
- void mutt_sanitize_ja_chars (char *, size_t, int);
diff --git a/japanese/mutt-devel/files/patch-ah b/japanese/mutt-devel/files/patch-ah
deleted file mode 100644
index 422a151b8c42..000000000000
--- a/japanese/mutt-devel/files/patch-ah
+++ /dev/null
@@ -1,40 +0,0 @@
---- m4/iconv.m4.orig Fri Jun 15 00:44:35 2001
-+++ m4/iconv.m4 Fri Jun 15 00:45:30 2001
-@@ -19,16 +19,16 @@
- am_cv_func_iconv="no, consider installing GNU libiconv"
- am_cv_lib_iconv=no
- AC_TRY_LINK([#include <stdlib.h>
--#include <iconv.h>],
-+#include <giconv.h>],
- [iconv_t cd = iconv_open("","");
- iconv(cd,NULL,NULL,NULL,NULL);
- iconv_close(cd);],
- am_cv_func_iconv=yes)
- if test "$am_cv_func_iconv" != yes; then
- am_save_LIBS="$LIBS"
-- LIBS="$LIBS -liconv"
-+ LIBS="$LIBS -lgiconv"
- AC_TRY_LINK([#include <stdlib.h>
--#include <iconv.h>],
-+#include <giconv.h>],
- [iconv_t cd = iconv_open("","");
- iconv(cd,NULL,NULL,NULL,NULL);
- iconv_close(cd);],
-@@ -43,7 +43,7 @@
- AC_CACHE_VAL(am_cv_proto_iconv, [
- AC_TRY_COMPILE([
- #include <stdlib.h>
--#include <iconv.h>
-+#include <giconv.h>
- extern
- #ifdef __cplusplus
- "C"
-@@ -63,7 +63,7 @@
- fi
- LIBICONV=
- if test "$am_cv_lib_iconv" = yes; then
-- LIBICONV="-liconv"
-+ LIBICONV="-lgiconv"
- fi
- AC_SUBST(LIBICONV)
- ])