[webkit-dev] flash player on Linux?

2008-07-08 Thread leslie lige

Hi all,

is it possible  to play flash in a webkit browser under x86-Linux ? how to do 
that?

I'm trying to use Qt 4.4.0 's demo browser, but I can't find any suitable 
flashplayer plugin for it.

thanks  with regards,

Leslie
_
Connect to the next generation of MSN Messenger 
http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-ussource=wlmailtagline
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread Michael Seydl
Hi!

Not sure if qtwebkit has nspluginapi support yet, but I don't think so. 

Greets, 
Michael

On Tuesday 08 July 2008 08:39:23 leslie lige wrote:
 Hi all,

 is it possible  to play flash in a webkit browser under x86-Linux ? how to
 do that?

 I'm trying to use Qt 4.4.0 's demo browser, but I can't find any suitable
 flashplayer plugin for it.

 thanks  with regards,

 Leslie
 _
 Connect to the next generation of MSN Messenger 
 http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-ussource=
wlmailtagline ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread Ye Xu
hi all,

the same situation here, no flash or multimedia support. and there are other
things that I find out pretty interesting.

the qtwebkit HTTP_USER_AGENT ist like the following
Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/523.15 (KHTML, like Gecko,
Safari/419.3) QtLauncher/0.1

but the same webkit nightly tarball built with gtkwebkit, it has the
following string

Browser: Mozilla/5.0 (X11; U; Linux x86_64; zh-cn) AppleWebKit/525.1+
(KHTML, like Gecko, Safari/525.1+)

greets

Ye

On Tue, Jul 8, 2008 at 8:47 AM, Michael Seydl [EMAIL PROTECTED]
wrote:

 Hi!

 Not sure if qtwebkit has nspluginapi support yet, but I don't think so.

 Greets,
 Michael

 On Tuesday 08 July 2008 08:39:23 leslie lige wrote:
  Hi all,
 
  is it possible  to play flash in a webkit browser under x86-Linux ? how
 to
  do that?
 
  I'm trying to use Qt 4.4.0 's demo browser, but I can't find any suitable
  flashplayer plugin for it.
 
  thanks  with regards,
 
  Leslie
  _
  Connect to the next generation of MSN Messenger
 
 http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-ussource=
 wlmailtagline ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread Ye Xu
so that means, even though the user agent string is different from qtwebkit
and gtkwebkit, but they still share the same webkit core, right?

On Tue, Jul 8, 2008 at 10:47 AM, Michael Seydl [EMAIL PROTECTED]
wrote:

 On Tuesday 08 July 2008 10:26:35 you wrote:
  hi all,
 
  the same situation here, no flash or multimedia support. and there are
  other things that I find out pretty interesting.
 
  the qtwebkit HTTP_USER_AGENT ist like the following
  Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/523.15 (KHTML, like Gecko,
  Safari/419.3) QtLauncher/0.1
 
  but the same webkit nightly tarball built with gtkwebkit, it has the
  following string

 The construction of the user-agent string happens in
 QWebPage::userAgentForUrl(const QUrl url). The function's implementation
 of
 the webkit used in the Qt 4.4.0 snapshot differs from the one in the repo.

 Ofc it's possible to override this function and supply one's own string.

 Greets,
 Michael

 
  Browser: Mozilla/5.0 (X11; U; Linux x86_64; zh-cn) AppleWebKit/525.1+
  (KHTML, like Gecko, Safari/525.1+)
 
  greets
 
  Ye
 
  On Tue, Jul 8, 2008 at 8:47 AM, Michael Seydl [EMAIL PROTECTED]
 
  wrote:
   Hi!
  
   Not sure if qtwebkit has nspluginapi support yet, but I don't think so.
  
   Greets,
   Michael
  
   On Tuesday 08 July 2008 08:39:23 leslie lige wrote:
Hi all,
   
is it possible  to play flash in a webkit browser under x86-Linux ?
 how
  
   to
  
do that?
   
I'm trying to use Qt 4.4.0 's demo browser, but I can't find any
suitable flashplayer plugin for it.
   
thanks  with regards,
   
Leslie
_
Connect to the next generation of MSN Messenger
  
  
 http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-ussourc
  e=
  
   wlmailtagline ___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
  
   ___
   webkit-dev mailing list
   webkit-dev@lists.webkit.org
   http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread Ye Xu
thx for your helpful answer, michael,

and this implementation's difference caused the current qtwebkit can only
get 96 point from acid 3 test, but gtkwebkit can pass all the test, although
they shared a same core, right?

On Tue, Jul 8, 2008 at 11:09 AM, Michael Seydl [EMAIL PROTECTED]
wrote:

 exactly. the logical (html and dom stuff) part remains the same the only
 differ in there platform-dependend implementations (e.g. drawing and
 networking-code).

 This also implicates that different implementation does not always
 guarantee
 that they show the excact same behavior when rendering a page, if that's
 what
 you are up to.

 Greets,
 mingy

 On Tuesday 08 July 2008 11:04:17 you wrote:
  so that means, even though the user agent string is different from
 qtwebkit
  and gtkwebkit, but they still share the same webkit core, right?
 
  On Tue, Jul 8, 2008 at 10:47 AM, Michael Seydl [EMAIL PROTECTED]
 
  wrote:
   On Tuesday 08 July 2008 10:26:35 you wrote:
hi all,
   
the same situation here, no flash or multimedia support. and there
 are
other things that I find out pretty interesting.
   
the qtwebkit HTTP_USER_AGENT ist like the following
Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/523.15 (KHTML, like
Gecko, Safari/419.3) QtLauncher/0.1
   
but the same webkit nightly tarball built with gtkwebkit, it has the
following string
  
   The construction of the user-agent string happens in
   QWebPage::userAgentForUrl(const QUrl url). The function's
 implementation
   of
   the webkit used in the Qt 4.4.0 snapshot differs from the one in the
   repo.
  
   Ofc it's possible to override this function and supply one's own
 string.
  
   Greets,
   Michael
  
Browser: Mozilla/5.0 (X11; U; Linux x86_64; zh-cn)
 AppleWebKit/525.1+
(KHTML, like Gecko, Safari/525.1+)
   
greets
   
Ye
   
On Tue, Jul 8, 2008 at 8:47 AM, Michael Seydl 
 [EMAIL PROTECTED]
   
wrote:
 Hi!

 Not sure if qtwebkit has nspluginapi support yet, but I don't think
 so.

 Greets,
 Michael

 On Tuesday 08 July 2008 08:39:23 leslie lige wrote:
  Hi all,
 
  is it possible  to play flash in a webkit browser under x86-Linux
 ?
  
   how
  
 to

  do that?
 
  I'm trying to use Qt 4.4.0 's demo browser, but I can't find any
  suitable flashplayer plugin for it.
 
  thanks  with regards,
 
  Leslie
  _
  Connect to the next generation of MSN Messenger
  
  
 http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-ussourc
  
e=

 wlmailtagline ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread Ye Xu
LOL. :D

On Tue, Jul 8, 2008 at 11:21 AM, Michael Seydl [EMAIL PROTECTED]
wrote:

 Actually this shouldn't happen but i'm afraid so :)

 On Tuesday 08 July 2008 11:18:13 you wrote:
  thx for your helpful answer, michael,
 
  and this implementation's difference caused the current qtwebkit can only
  get 96 point from acid 3 test, but gtkwebkit can pass all the test,
  although they shared a same core, right?
 
  On Tue, Jul 8, 2008 at 11:09 AM, Michael Seydl [EMAIL PROTECTED]
 
  wrote:
   exactly. the logical (html and dom stuff) part remains the same the
   only differ in there platform-dependend implementations (e.g. drawing
   and networking-code).
  
   This also implicates that different implementation does not always
   guarantee
   that they show the excact same behavior when rendering a page, if
 that's
   what
   you are up to.
  
   Greets,
   mingy
  
   On Tuesday 08 July 2008 11:04:17 you wrote:
so that means, even though the user agent string is different from
  
   qtwebkit
  
and gtkwebkit, but they still share the same webkit core, right?
   
On Tue, Jul 8, 2008 at 10:47 AM, Michael Seydl
[EMAIL PROTECTED]
   
wrote:
 On Tuesday 08 July 2008 10:26:35 you wrote:
  hi all,
 
  the same situation here, no flash or multimedia support. and
 there
  
   are
  
  other things that I find out pretty interesting.
 
  the qtwebkit HTTP_USER_AGENT ist like the following
  Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/523.15 (KHTML,
 like
  Gecko, Safari/419.3) QtLauncher/0.1
 
  but the same webkit nightly tarball built with gtkwebkit, it has
  the following string

 The construction of the user-agent string happens in
 QWebPage::userAgentForUrl(const QUrl url). The function's
  
   implementation
  
 of
 the webkit used in the Qt 4.4.0 snapshot differs from the one in
 the
 repo.

 Ofc it's possible to override this function and supply one's own
  
   string.
  
 Greets,
 Michael

  Browser: Mozilla/5.0 (X11; U; Linux x86_64; zh-cn)
  
   AppleWebKit/525.1+
  
  (KHTML, like Gecko, Safari/525.1+)
 
  greets
 
  Ye
 
  On Tue, Jul 8, 2008 at 8:47 AM, Michael Seydl 
  
   [EMAIL PROTECTED]
  
  wrote:
   Hi!
  
   Not sure if qtwebkit has nspluginapi support yet, but I don't
   think so.
  
   Greets,
   Michael
  
   On Tuesday 08 July 2008 08:39:23 leslie lige wrote:
Hi all,
   
is it possible  to play flash in a webkit browser under
x86-Linux
  
   ?
  
 how

   to
  
do that?
   
I'm trying to use Qt 4.4.0 's demo browser, but I can't find
any suitable flashplayer plugin for it.
   
thanks  with regards,
   
Leslie
   
 ___
   __ Connect to the next generation of MSN Messenger
  
  
 http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-ussourc
  
  e=
  
   wlmailtagline ___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
  
   ___
   webkit-dev mailing list
   webkit-dev@lists.webkit.org
   http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Ye Xu
hi all,

sorry, this question may unrelated with webkit dev,
and I had asked a similar question on arora's google group,
but no body answer me. so I will try to ask it here.


at the following page,
http://code.google.com/p/arora/wiki/source?tm=4
there is one short description at the bottom to tell us how to build
arora with the latest webkit trunk. but I just can't get the idea

$ export QT_WEBKIT=webkit_trunk
$ export WEBKITHOME=/path/to/webkit

what the WEBKITHOME constant should be, can somebody give me an example
path, where I shall point it to, maybe the webkit lib path like /usr/
lib/ or something else ?
and for constant QT_WEBKIT I shall simply point it to the webkit
trunk/tarball source
path, like /home/username/webkit-tarball/compilewebkithere,
if I had compiled webkit at that path, right?

ps, system spec
xubuntu 8.06. amd64

thx and regards

Ye
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread marcoil
Hi,

El dt 08 de 07 del 2008 a les 06:39 +, en/na leslie lige va
escriure:
 is it possible  to play flash in a webkit browser under x86-Linux ? how to do 
 that?
 I'm trying to use Qt 4.4.0 's demo browser, but I can't find any suitable 
 flashplayer plugin for it.
 

Yes, support for the flash player and other NPAPI plugins has been in
QtWebKit for a while now. You'll need to install the latest stable
version of adobe's flash player, which you can find at
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlashP2_Platform=Linux

If it doesn't work, it could be because Qt 4.4.0 includes an old
snapshot of QtWebKit, you'll need to try a more recent one.

Good luck,
marcoil

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] HTTP status code for Web Inspector

2008-07-08 Thread Sebastian Winkler
Hi Everybody

Not sure if this is the right place to request this, but I would very  
much like to see HTTP status code information included in the Web  
Inspector; presumably along with the response headers in the Resources  
tab.
Do you think that could be arranged?

Thanks,
Sebastian
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] flash player on Linux?

2008-07-08 Thread Benjamin Meyer
On Tuesday 08 July 2008 08:39:23 leslie lige wrote:
 Hi all,

 is it possible  to play flash in a webkit browser under x86-Linux ? how to
 do that?

 I'm trying to use Qt 4.4.0 's demo browser, but I can't find any suitable
 flashplayer plugin for it.

 thanks  with regards,

 Leslie

Qt 4.4.0 doesn't contain support for flash, To get flash support with Qt you 
have to either wait for Qt 4.5 or you can use webkit trunk.  The flash 
support in trunk is still ongoing development and not finished.  An example 
of using webkit trunk with Qt 4.4 can be found on the Arora wiki page (and in 
the arora source's)
http://code.google.com/p/arora/wiki/source?tm=4

-Benjamin Meyer


signature.asc
Description: This is a digitally signed message part.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Benjamin Meyer
On Tuesday 08 July 2008 11:48:22 Ye Xu wrote:
 hi all,

 sorry, this question may unrelated with webkit dev,
 and I had asked a similar question on arora's google group,
 but no body answer me. so I will try to ask it here.

Hmm, I replied there, but my e-mail still hasn't posted to the mailinglist...  
odd

 at the following page,
 http://code.google.com/p/arora/wiki/source?tm=4
 there is one short description at the bottom to tell us how to build
 arora with the latest webkit trunk. but I just can't get the idea

 $ export QT_WEBKIT=webkit_trunk
 $ export WEBKITHOME=/path/to/webkit

 what the WEBKITHOME constant should be, can somebody give me an example
 path, where I shall point it to, maybe the webkit lib path like /usr/
 lib/ or something else ?

For example I have my webkit checked out in /home/ben/dev/webkit so I point it 
to that location.

 and for constant QT_WEBKIT I shall simply point it to the webkit
 trunk/tarball source
 path, like /home/username/webkit-tarball/compilewebkithere,
 if I had compiled webkit at that path, right?

Nope, QT_WEBKIT you simply set to 'webkit_trunk', it is a flag for qmake.  You 
could probably merge these two defines into 1, but I wasn't sure how using 
qmake.

You can check out the src/webkittrunk.pri in Arora for the exact details of 
how they are used.

-Benjamin Meyer


signature.asc
Description: This is a digitally signed message part.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Ye Xu

 Hmm, I replied there, but my e-mail still hasn't posted to the
 mailinglist...

odd


yeah, sometimes google group just behave odd or the reply appears on it with
huge delay.

For example I have my webkit checked out in /home/ben/dev/webkit so I point
 it
 to that location.


QT_WEBKIT you simply set to 'webkit_trunk', it is a flag for qmake.  You
 could probably merge these two defines into 1, but I wasn't sure how using
 qmake.


thx for your hints, I had done the following

export QT_WEBKIT=webkit_trunk
export WEBKITHOME=/home/seen/build/WebKit
qmake
make clean
make

but it seems that arora still don't use the latest qtwebkit, or how can I
find out, arora actually used it? or can I use qmake-qt4 instead of qmake?


You can check out the src/webkittrunk.pri in Arora for the exact details of
 how they are used.


I had checked out that file to make sure the WEBKITHOME set to the right
path.


regards.

Ye


On Tue, Jul 8, 2008 at 1:32 PM, Benjamin Meyer [EMAIL PROTECTED]
wrote:

 On Tuesday 08 July 2008 11:48:22 Ye Xu wrote:
  hi all,
 
  sorry, this question may unrelated with webkit dev,
  and I had asked a similar question on arora's google group,
  but no body answer me. so I will try to ask it here.

 Hmm, I replied there, but my e-mail still hasn't posted to the
 mailinglist...
 odd

  at the following page,
  http://code.google.com/p/arora/wiki/source?tm=4
  there is one short description at the bottom to tell us how to build
  arora with the latest webkit trunk. but I just can't get the idea
 
  $ export QT_WEBKIT=webkit_trunk
  $ export WEBKITHOME=/path/to/webkit
 
  what the WEBKITHOME constant should be, can somebody give me an example
  path, where I shall point it to, maybe the webkit lib path like /usr/
  lib/ or something else ?

 For example I have my webkit checked out in /home/ben/dev/webkit so I point
 it
 to that location.

  and for constant QT_WEBKIT I shall simply point it to the webkit
  trunk/tarball source
  path, like /home/username/webkit-tarball/compilewebkithere,
  if I had compiled webkit at that path, right?

 Nope, QT_WEBKIT you simply set to 'webkit_trunk', it is a flag for qmake.
  You
 could probably merge these two defines into 1, but I wasn't sure how using
 qmake.

 You can check out the src/webkittrunk.pri in Arora for the exact details of
 how they are used.

 -Benjamin Meyer

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Ye Xu

 If you run ldd arora it will tell you which library Arora is linked
 against.


get into the arora building path
ldd arora give back the following output, it seems that it still use the
system libs, so how can I solve the problem? maybe manuelly replace that
/usr/lib/libqtwebkit.so.4 with the trunk compiled version?

[EMAIL PROTECTED]:~/build/arora$ ldd arora
 linux-vdso.so.1 =  (0x7fff133fe000)
 *libQtWebKit.so.4 = /usr/lib/libQtWebKit.so.4 (0x7f460a4c7000)*
 libQtGui.so.4 = /usr/lib/libQtGui.so.4 (0x7f460996a000)
 libQtNetwork.so.4 = /usr/lib/libQtNetwork.so.4 (0x7f4609662000)
 libQtCore.so.4 = /usr/lib/libQtCore.so.4 (0x7f460922)
 libpthread.so.0 = /lib/libpthread.so.0 (0x7f4609004000)
 libstdc++.so.6 = /usr/lib/libstdc++.so.6 (0x7f4608cf9000)
 libm.so.6 = /lib/libm.so.6 (0x7f4608a78000)
 libgcc_s.so.1 = /lib/libgcc_s.so.1 (0x7f460886a000)
 libc.so.6 = /lib/libc.so.6 (0x7f4608508000)
 libsqlite3.so.0 = /usr/lib/libsqlite3.so.0 (0x7f46082a4000)
 libaudio.so.2 = /usr/lib/libaudio.so.2 (0x7f460808b000)
 libpng12.so.0 = /usr/lib/libpng12.so.0 (0x7f4607e64000)
 libSM.so.6 = /usr/lib/libSM.so.6 (0x7f4607c5c000)
 libICE.so.6 = /usr/lib/libICE.so.6 (0x7f4607a41000)
 libz.so.1 = /usr/lib/libz.so.1 (0x7f460782a000)
 libglib-2.0.so.0 = /usr/lib/libglib-2.0.so.0 (0x7f460756a000)
 libXi.so.6 = /usr/lib/libXi.so.6 (0x7f4607361000)
 libXrender.so.1 = /usr/lib/libXrender.so.1 (0x7f4607158000)
 libXrandr.so.2 = /usr/lib/libXrandr.so.2 (0x7f4606f51000)
 libfreetype.so.6 = /usr/lib/libfreetype.so.6 (0x7f4606cd2000)
 libfontconfig.so.1 = /usr/lib/libfontconfig.so.1 (0x7f4606aa1000)
 libXext.so.6 = /usr/lib/libXext.so.6 (0x7f460689)
 libX11.so.6 = /usr/lib/libX11.so.6 (0x7f460658d000)
 libgthread-2.0.so.0 = /usr/lib/libgthread-2.0.so.0
 (0x7f4606389000)
 librt.so.1 = /lib/librt.so.1 (0x7f460618)
 libdl.so.2 = /lib/libdl.so.2 (0x7f4605f7c000)
 /lib64/ld-linux-x86-64.so.2 (0x7f460b13b000)
 libXt.so.6 = /usr/lib/libXt.so.6 (0x7f4605d18000)
 libpcre.so.3 = /usr/lib/libpcre.so.3 (0x7f4605af2000)
 libselinux.so.1 = /lib/libselinux.so.1 (0x7f46058d6000)
 libexpat.so.1 = /usr/lib/libexpat.so.1 (0x7f46056b2000)
 libXau.so.6 = /usr/lib/libXau.so.6 (0x7f46054b)
 libxcb-xlib.so.0 = /usr/lib/libxcb-xlib.so.0 (0x7f46052af000)
 libxcb.so.1 = /usr/lib/libxcb.so.1 (0x7f4605094000)
 libXdmcp.so.6 = /usr/lib/libXdmcp.so.6 (0x7f4604e8f000)




On Tue, Jul 8, 2008 at 4:18 PM, Benjamin Meyer [EMAIL PROTECTED]
wrote:

  thx for your hints, I had done the following
 
  export QT_WEBKIT=webkit_trunk
  export WEBKITHOME=/home/seen/build/WebKit
  qmake
  make clean
  make
 
  but it seems that arora still don't use the latest qtwebkit, or how can I
  find out, arora actually used it? or can I use qmake-qt4 instead of
 qmake?

 If you run ldd arora it will tell you which library Arora is linked
 against.

 -Benjamin Meyer

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Benjamin Meyer
On Tuesday 08 July 2008 16:26:27 Ye Xu wrote:
  If you run ldd arora it will tell you which library Arora is linked
  against.

 get into the arora building path
 ldd arora give back the following output, it seems that it still use the
 system libs, so how can I solve the problem? maybe manuelly replace that
 /usr/lib/libqtwebkit.so.4 with the trunk compiled version?

 [EMAIL PROTECTED]:~/build/arora$ ldd arora

  linux-vdso.so.1 =  (0x7fff133fe000)
  *libQtWebKit.so.4 = /usr/lib/libQtWebKit.so.4 (0x7f460a4c7000)*

Looks like it is still using the old Makefile.  Run 'make distclean' and then 
qmake (qmake-qt4 on Debian) and then make.  You shouldn't need to replace the 
system libraries.

-Benjamin Meyer

P.S. You can join the arora room on irc.freenode for faster question 
turnaround :)


signature.asc
Description: This is a digitally signed message part.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Gustavo Noronha Silva
On Tue, 2008-07-08 at 16:39 +0200, Benjamin Meyer wrote:
  get into the arora building path
  ldd arora give back the following output, it seems that it still use the
  system libs, so how can I solve the problem? maybe manuelly replace that
  /usr/lib/libqtwebkit.so.4 with the trunk compiled version?
 
  [EMAIL PROTECTED]:~/build/arora$ ldd arora
 
   linux-vdso.so.1 =  (0x7fff133fe000)
   *libQtWebKit.so.4 = /usr/lib/libQtWebKit.so.4 (0x7f460a4c7000)*
 
 Looks like it is still using the old Makefile.  Run 'make distclean' and then 
 qmake (qmake-qt4 on Debian) and then make.  You shouldn't need to replace the 
 system libraries.

The problem here is actually that ldd is looking for the library
in /usr/lib first, and since it finds it there, it uses it (as does
arora). Linking with a library in a different directory doesn't mean
that the system search path for libraries will be ignored at runtime. 

You still need to use LD_LIBRARY_PATH or LD_PRELOAD (as suggested by
another poster) to force your custom build of the library to be used
when the program is executed.

You can even build the program using the system library and use the
custom built later by setting LD_LIBRARY_PATH.

See you,

-- 
Gustavo Noronha Silva [EMAIL PROTECTED]
GNOME contributor: http://www.gnome.org/

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to build arora with latest qtwebkit

2008-07-08 Thread Ye Xu
thx all the guys here answering me questions.

the problem had been solved.

greets

Ye
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev