Hi
I cannot compile 1.1.0 with charset-guesser-enabled.
it stops with some message like " char[23] and char[2] not compatible
for binary + "
Problem were at line 924 in file charsets.cpp with "path = CONF_DIR +
"/" + file;"
patch follows:
925,935d924
< /*
< if (dir[0] != '/')
< {
< path = CONF_DIR;
< path +="/";
< path += dir;
< }
< else
< path = dir;
< */
<
940,946c929
< {
< // path = CONF_DIR + "/" + file;
< path = CONF_DIR;
< path +="/";
< path += file;
< }
<
---
> path = CONF_DIR + "/" + file;
--
Jan Karabina mailto:[EMAIL PROTECTED]