Hi, just posting here in case anyone is having trouble with compiling
tvtime. I just figured this out today, after giving up on 5 different
releases of tvtime and then finally deciding to look into what was
going wrong. It *is* quite a hack, but it works ;)
In lines 648 and 707, it says this:
cd = iconv_open( mycodeset, "UTF-8" );
and this:
ret = iconv( cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft );
change them to:
cd = 0;
and:
ret = 0;
Like i said, it *is* quite a hack, but it works.
Sincerely etc,
Ed.