Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-17 Thread Bo Yang
I have came across this error, too. The problem is , webkit need is 2.24 or later. But the libsoup 2.4 is not suitable, and webkit can't build with it because libsoup 2.4 miss the SoupCookieJar and something which exist in 2.24. Install libsoup 2.24 , it will work! Regards! Bo

[webkit-dev] BREW Webkit port?

2009-02-17 Thread Ed Nurse
Hi all, Does anybody know if there has been an attempt to port Webkit to a BREW device? And if so, how successful it was? Regards, Ed. This message, including attachments, is intended solely for the addressee indicated in this message and is strictly confidential or otherwise Privileged.

Re: [webkit-dev] Quick Look at Gtk+ test failures

2009-02-17 Thread Gustavo Noronha
Yo! On Tue, 2009-02-17 at 01:05 +0100, Holger Freyther wrote: I just had a quick look at the dom/svg test failures (actually one result) and my first idea is that we transmit the wrong mimetype for the GIO based local file handling. I plan to find some time to tomorrow... Thought it

Re: [webkit-dev] Queries on Bug: 23310

2009-02-17 Thread David Kilzer
I don't think modifying KURL to parse JavaScript syntax is the correct approach. I have a fix for this in my local tree. I will try to post a patch for it today for review. Dave From: Vikram Hegde vhegd...@yahoo.com To: webkit-dev@lists.webkit.org Sent:

Re: [webkit-dev] Thank you very much! I edited configure.ac and...

2009-02-17 Thread David Kilzer
Hi Hai, I'm glad I was able to help you get past this particular build error, but I've never built the Gtk+ or Qt builds of WebKit before, so I can't help you any further. Please continue using the webkit-dev mailing list or the #webkit IRC channel on irc.freenode.net for additional

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-17 Thread x yz
libsoup 2.23 is newer than 2.4. On Fedora9 only 2.4 is available, on FC10 2.24 is available. You need to changed the required version 2.23 in configure.ac to 2.4 then you can build. I have not completed the build yet. FC has older libs than ubuntu or so, when I try to compile openembbed flash I

Re: [webkit-dev] error: Cannot find icu-config. The ICU library is needed.

2009-02-17 Thread x yz
Pls read build requirements, there are a few devel lib needed and you can download rpm to update missed lib --- On Mon, 2/16/09, nguyen hai deuxliq...@yahoo.com wrote: From: nguyen hai deuxliq...@yahoo.com Subject: [webkit-dev] error: Cannot find icu-config. The ICU library is needed. To:

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-17 Thread x yz
when I changed requirements to 2.4 there are build error: WebCore/platform/network/soup/CookieJarSoup.h:34: error: expected constructor, destructor, or type conversion before ‘*’ token WebCore/platform/network/soup/CookieJarSoup.cpp:28: error: expected constructor, destructor, or type

Re: [webkit-dev] checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 = 2.23) were not met:

2009-02-17 Thread David Kilzer
Dave, may I suggest that lib version requirements to consider Fedora9? I mean can we loose the requirements, or use OS specific one so FC9 just needs 2.4? Sure. I'd suggest filing a bug on https://bugs.webkit.org/ with a patch for review. I don't use the Linux port of WebKit--was just trying

Re: [webkit-dev] Quick Look at Gtk+ test failures

2009-02-17 Thread Holger Freyther
On Tuesday 17 February 2009 15:08:15 Gustavo Noronha wrote: Yo! On Tue, 2009-02-17 at 01:05 +0100, Holger Freyther wrote: I just had a quick look at the dom/svg test failures (actually one result) and my first idea is that we transmit the wrong mimetype for the GIO based local file

Re: [webkit-dev] Error Handling in webkit

2009-02-17 Thread Jenson Lui
Hello all, Here is one of the ways to send the error signal to the upper layer from the webkit core codes. Basically I just comment out the ASSERT code in DocumentLoader::mainReceiveError() and emit a GTK signal (error-load-page) in the FrameLoaderClientGtk::shouldFallBack. with the

[webkit-dev] network resources in webkit

2009-02-17 Thread abhas saroha
hi all, am i right when i say ResourceHandle class does the communication, ResourceRequest represents requested resource from some remote url, ResourceResponse is a response(by the remote server) to the requested data and ResourceError is for error encountered in communication. Thnx in advance