diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-10-24 23:37:25 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-10-24 23:37:25 +0000 |
commit | 4acc6fb2a411b291c9c210d82bafe7c62e71c77d (patch) | |
tree | bc16420eb52d65511ceb520c00171d219210a473 /devel/doxygen | |
parent | 97dfcc1b41c5b4581b1d73128a866beec069c5bf (diff) | |
download | ports-4acc6fb2a411b291c9c210d82bafe7c62e71c77d.tar.gz ports-4acc6fb2a411b291c9c210d82bafe7c62e71c77d.zip |
Notes
Diffstat (limited to 'devel/doxygen')
-rw-r--r-- | devel/doxygen/files/patch-fix_with_libiconv-1.11 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/doxygen/files/patch-fix_with_libiconv-1.11 b/devel/doxygen/files/patch-fix_with_libiconv-1.11 new file mode 100644 index 000000000000..64c98676d9aa --- /dev/null +++ b/devel/doxygen/files/patch-fix_with_libiconv-1.11 @@ -0,0 +1,11 @@ +--- src/portable.cpp.orig 2007-10-11 14:27:23.000000000 -0500 ++++ src/portable.cpp 2007-10-11 14:28:15.000000000 -0500 +@@ -378,7 +378,7 @@ + #else + #define CASTNEEDED(x) (char **)(x) + #endif +- return iconv(cd,CASTNEEDED(inbuf),inbytesleft,outbuf,outbytesleft); ++ return iconv(cd,inbuf,inbytesleft,outbuf,outbytesleft); + } + + int portable_iconv_close (void *cd) |