[webkit-dev] How to build Webkit GTK on macos

2009-05-05 Thread Lucius Fox
>From http://trac.webkit.org/wiki/BuildingGtk, it said i need to install ATK Cairo cURL fontconfig freetype2 gettext gtk+ libjpeg libpng libtiff libxml2 libxslt pango SQLite My question is how to install these packages on Macos so that i can compile Webkit gtk on Macos? Thank you. _

Re: [webkit-dev] Re gular safari browser opens when you run Webkit/WebkitTools/Scripts/run-safari in cygwin

2009-05-05 Thread Mital Vora
these are some of the required dlls. by webkit. just install safari browser. you will get all the required dependencies. those dlls will be available in C:\Program Files\Safari Regeards, Mital Vora. On Wed, May 6, 2009 at 10:55 AM, Subramanya wrote: > > > Hi, > I am a newbie to webkit and web

Re: [webkit-dev] Re gular safari browser opens when you run Webkit/WebkitTools/Scripts/run-safari in cygwin

2009-05-05 Thread Subramanya
Hi, I am a newbie to webkit and web programming.I have installed the webkit framework on windows xp with visual studio 2005 sp1.I am looking for some small sample applications to explore the interfaces and features provided by the webkit framework and how they can be used along with visual studi

Re: [webkit-dev] How can I listen for a page load complete event

2009-05-05 Thread Darin Adler
On May 4, 2009, at 11:32 PM, Meryl Silverburgh wrote: Thank you. If implementating the 'didFinishLoadForFrame' method is to listen for browser finishing loading everything, then some please in webkit code must call the didFinishLoadForFrame' to tell the delegate that page load is done, righ

Re: [webkit-dev] Problem with building WebKit

2009-05-05 Thread Adam Roben
On May 5, 2009, at 11:13 AM, Seby wrote: Any good news? Yes: http://trac.webkit.org/changeset/43239 Sorry for the delay. Let us know if you have any more trouble! -Adam . Are you using VC++ Express? If so, you might be running into this bug: https://bugs.webkit.org/show_bug.cgi?id=25308

Re: [webkit-dev] Nitro-Extreme branch

2009-05-05 Thread Geoffrey Garen
Right now, the branch is about even with trunk on SunSpider. Geoff On May 5, 2009, at 6:11 AM, Zoltan Herczeg wrote: Hi, we have noticed that there is a new SquirellFish branch, called Nitro-Extreme. You mentioned before (perhaps a year ago), that you plan to change the JSNumber format to e

Re: [webkit-dev] Proposal for a new way to handle porting #ifdefs

2009-05-05 Thread Maciej Stachowiak
On May 4, 2009, at 5:21 AM, Mario Bensi wrote: We pursued the same goal for a couple of years. Since our porting targets are various middleware & CE platforms, we had to identify and adapt WebKit needs at a better grained level than platform. In order to do this we collected all dependencies in

Re: [webkit-dev] Proposal for a new way to handle porting #ifdefs

2009-05-05 Thread Maciej Stachowiak
On May 4, 2009, at 7:45 PM, George Staikos wrote: I really like this and it goes in the direction that I was hoping for as well. Hopefully we can get the WINCE port merged upstream before we make this change. :-) Some comments I have: 1) In some cases some things apply to more than one

Re: [webkit-dev] Problem with building WebKit

2009-05-05 Thread Seby
Good Morning Adam, Any good news? Best, Seby. > Are you using VC++ Express? If so, you might be running into this bug: > https://bugs.webkit.org/show_bug.cgi?id=25308 > > I'll try to land a fix for that bug today. > > -Adam > > On Fri, May 1, 2009 at 10:30 PM, Seby wrote: > >> Yes, That was the

Re: [webkit-dev] Proposal for a new way to handle porting #ifdefs

2009-05-05 Thread Darin Adler
On May 4, 2009, at 7:45 PM, George Staikos wrote: 1) In some cases some things apply to more than one OS so we have: #if OS(x) || OS(y) || OS(z) ... I think we should use: #if OS(x,y,z) How? Macros don’t have overloading with the same macro but different numbers of parameters. 3) I'm not s

Re: [webkit-dev] Proposal for a new way to handle porting #ifdefs

2009-05-05 Thread David Kilzer
> 1b) WINCE actually includes plenty of WIN but in some cases > does things differently. How to make this distinction without > lots of && and ||? There are various design patterns that may be used to alleviate macros, such as subclassing and use of delegates. Each case will probably require a

Re: [webkit-dev] ASSERT crashes on arm platform

2009-05-05 Thread Gustavo Chaves
> Hi, all. > > I'm yet another guy dealing with an arm box (set-top box), which has: > - XScale3 processor > - glibc 2.3.6 > - libstdc++ 6.0.3 > - all compiled with gcc 3.4.5 > > I'm working with the efl port of webkit and I have two bugs which only > happen on the arm box (never happened on > the

[webkit-dev] Nitro-Extreme branch

2009-05-05 Thread Zoltan Herczeg
Hi, we have noticed that there is a new SquirellFish branch, called Nitro-Extreme. You mentioned before (perhaps a year ago), that you plan to change the JSNumber format to eliminate number (double) allocations. This is the aim of this branch, isn't it? Do you have any results? Is it faster than t