How build qtwebkit with ICU ?
-
I am trying to build QtWebKit with icu.
It builds with qt_unicode as a default.. but I want to make it use icu as a unicode codec.
As the page ( "http://trac.webkit.org/wiki/BuildingQtOnLinux":http://trac.webkit.org/wiki/BuildingQtOnLinux ) says, it can be done by giving the option CONFIG+=use_system_icu as an extra build-webkit argument.so, I tried to build it with the command
$ Tools/Scripts/build-webkit --qt --release --qmake=which qmake-qt4
--qmakearg="CONFIG+=use_system_icu"but still it uses the qt unicode codec.. so I have a problem for parsing with some encodings which are not standard like 'x-sjis', 'x-euc-jp'.
Do you know how to build with icu ?
do I have to try to modify qtmake .pro file ?
if you know how to do, please let me know.Thanks in advance.
-
Is using Qt5 an option? I think ICU is used there by default.
-
I don't know. It was just a suggestion.