Build libqtwebkit.so from this sources

Asked by Andrew

How do I build library from this sources. I've got libwebkitgtk-3.0.so.0.17.1, but not libqtwebkit4.so .
I did:
./autogen.sh
make && make install

thanks.

p.s. I know that I can download package and use it , but I need my own version of lib.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu qtwebkit-source Edit question
Assignee:
No assignee Edit question
Solved by:
Andrew
Solved:
Last query:
Last reply:
Revision history for this message
Manfred Hampl (m-hampl) said :
#1

As far as I know there is no libgtwebkit4.so

What you need most probably is libqtwebkit.so.4 and that should be created by building the qtwebkit-source package.

see http://packages.ubuntu.com/trusty/i386/libqtwebkit4/filelist and http://packages.ubuntu.com/trusty/amd64/libqtwebkit4/filelist

Revision history for this message
Andrew (andrey-1) said :
#2

Finally I have got the result with official QT snapshot:
http://download.qt-project.org/snapshots/qt/4.8/2014-01-23_453/
You need just download tar.gz and unpack

      # ./configure -webkit -nomake demos -nomake examples
      # make && make install

If you have problem with gold-liner you should comment this line in /src/3rdparty/webkit/Source/common.pri

      # QMAKE_LFLAGS+=-fuse-ld=gold

Have a happy development!