diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-06-09 01:42:58 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-06-09 01:42:58 +0000 |
commit | afc8d2a1d4290e86a5f575688bc9cb32b8595244 (patch) | |
tree | b4fc9ab6d4ebbe39d93c042ac36104457c610b59 | |
parent | c5ed5424909db8d66c9330d6f7fc31d4f68f5828 (diff) | |
download | ports-afc8d2a1d4290e86a5f575688bc9cb32b8595244.tar.gz ports-afc8d2a1d4290e86a5f575688bc9cb32b8595244.zip |
Notes
-rw-r--r-- | mail/mutt-devel/files/patch-09 | 11 | ||||
-rw-r--r-- | mail/mutt-devel/files/patch-10 | 11 | ||||
-rw-r--r-- | mail/mutt-devel/files/patch-11 | 11 | ||||
-rw-r--r-- | mail/mutt-devel/files/patch-12 | 40 |
4 files changed, 73 insertions, 0 deletions
diff --git a/mail/mutt-devel/files/patch-09 b/mail/mutt-devel/files/patch-09 new file mode 100644 index 000000000000..2607c43b8041 --- /dev/null +++ b/mail/mutt-devel/files/patch-09 @@ -0,0 +1,11 @@ +--- 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/mail/mutt-devel/files/patch-10 b/mail/mutt-devel/files/patch-10 new file mode 100644 index 000000000000..f373a2c82598 --- /dev/null +++ b/mail/mutt-devel/files/patch-10 @@ -0,0 +1,11 @@ +--- 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/mail/mutt-devel/files/patch-11 b/mail/mutt-devel/files/patch-11 new file mode 100644 index 000000000000..9dc05d9d2c05 --- /dev/null +++ b/mail/mutt-devel/files/patch-11 @@ -0,0 +1,11 @@ +--- charset.h.orig Tue Mar 6 00:03:04 2001 ++++ charset.h Tue Mar 6 00:04:22 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/mail/mutt-devel/files/patch-12 b/mail/mutt-devel/files/patch-12 new file mode 100644 index 000000000000..611e7df938b9 --- /dev/null +++ b/mail/mutt-devel/files/patch-12 @@ -0,0 +1,40 @@ +--- m4/iconv.m4.orig Thu Jun 7 22:00:05 2001 ++++ m4/iconv.m4 Fri Jun 8 12:45:23 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) + ]) |