Hello,
I was able to compile html2xhtml in AIX 7.1. Took a few tries.
I can comment on how I did it if needed.
Issue I found:
I kept getting this error during execution:
iconv_open: invalid argument aix
After a ton of Google searches, I finally started looking at the code.
It turns out the case of the values of the charset_aliases struc was the issue. They do not match the case returned by "iconv -l" and therefore, I believe, causes the error.
To correct, I changed iso-5589-1 to ISO5589-1 and the conversion worked!!
So please update the values of charset_aliases.
Thank you,
Hello,
I was able to compile html2xhtml in AIX 7.1. Took a few tries.
I can comment on how I did it if needed.
Issue I found:
I kept getting this error during execution:
iconv_open: invalid argument aix
After a ton of Google searches, I finally started looking at the code.
It turns out the case of the values of the charset_aliases struc was the issue. They do not match the case returned by "iconv -l" and therefore, I believe, causes the error.
To correct, I changed iso-5589-1 to ISO5589-1 and the conversion worked!!
So please update the values of charset_aliases.
Thank you,