diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-06-09 01:53:19 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-06-09 01:53:19 +0000 |
commit | e38e9d390243aa65032885aeaf3b36932f49f0df (patch) | |
tree | 5169bdc51c6e4ac58253688f3d90fa4a0924ea57 | |
parent | b718988ce76bcaaff18a0b3a5a477534435a31d3 (diff) | |
download | ports-e38e9d390243aa65032885aeaf3b36932f49f0df.tar.gz ports-e38e9d390243aa65032885aeaf3b36932f49f0df.zip |
Notes
-rw-r--r-- | mail/mutt-devel/files/patch-06 | 11 | ||||
-rw-r--r-- | mail/mutt-devel/files/patch-07 | 29 |
2 files changed, 40 insertions, 0 deletions
diff --git a/mail/mutt-devel/files/patch-06 b/mail/mutt-devel/files/patch-06 new file mode 100644 index 000000000000..1c2c8aa18e49 --- /dev/null +++ b/mail/mutt-devel/files/patch-06 @@ -0,0 +1,11 @@ +--- 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/mail/mutt-devel/files/patch-07 b/mail/mutt-devel/files/patch-07 new file mode 100644 index 000000000000..e6f1c79255c7 --- /dev/null +++ b/mail/mutt-devel/files/patch-07 @@ -0,0 +1,29 @@ +--- aclocal.m4.orig Thu Jun 7 22:10:27 2001 ++++ aclocal.m4 Fri Jun 8 12:38:06 2001 +@@ -1302,7 +1302,7 @@ + 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);], +@@ -1311,7 +1311,7 @@ + am_save_LIBS="$LIBS" + LIBS="$LIBS -liconv" + 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);], +@@ -1326,7 +1326,7 @@ + AC_CACHE_VAL(am_cv_proto_iconv, [ + AC_TRY_COMPILE([ + #include <stdlib.h> +-#include <iconv.h> ++#include <giconv.h> + extern + #ifdef __cplusplus + "C" |