[webkit-dev] Patents on WebKit?

2008-07-01 Thread KwangYul Seo
Hello, Is there any possibility that I can accidentally infringe the patents of Apple if I create a browser based on WebKit? I know WebKit is licensed under LGPLv2, but it does not guarantee that the patents of Apple are automatically granted. So I am a bit worried. Regards, Kwang Yul Seo

Re: [webkit-dev] renaming ASSERT macro

2008-07-01 Thread Jörg Bornemann
Darin Adler wrote: Well, this is a small change but also a very bad idea. Not because of compilation time, but because of the crappy Windows headers which define *a* *lot* of global stuff. E.g. the XSLT parser of WebKit won't build because there's a #define ERROR somenumber which breaks an

Re: [webkit-dev] renaming ASSERT macro

2008-07-01 Thread Darin Adler
On Jul 1, 2008, at 1:45 AM, Jörg Bornemann wrote: This solution is easy to do, leads to the smallest source diff but is a very dirty hack, which will lead to problems on WinCE, because we will include windows.h in public headers. Adding windows.h to Assertions.h will not cause it to be

Re: [webkit-dev] renaming ASSERT macro

2008-07-01 Thread Darin Adler
On Jul 1, 2008, at 10:39 AM, Paul Pedriana wrote: On a related note, I would like to propose (possibly in a separate email) that the CRASH macro in Assertions.h that ASSERT uses be augmented to the following for improved debugging and portability across most platforms: That sounds like

[webkit-dev] How do do incremental build?

2008-07-01 Thread Joshua Chia
I made some changes to some GTK port-related code, specifically RenderThemeGtk.cpp. Simply running make did not cause it to be recompiled. How do I do incremental builds with proper dependency? The clean build takes forever. Josh ___ webkit-dev

Re: [webkit-dev] How do do incremental build?

2008-07-01 Thread Joshua Chia
The GTK page http://trac.webkit.org/wiki/BuildingGtk says to run autogen.sh and make. There's no mention of build-webkit. Also, when I try to run WebKitTools/Scripts/build-webkit, I get: Unsupported platform, can't determine built library locations. at

Re: [webkit-dev] How do do incremental build?

2008-07-01 Thread Mark Rowe
On 2008-07-01, at 14:57, Joshua Chia wrote: The GTK page http://trac.webkit.org/wiki/BuildingGtk says to run autogen.sh and make. There's no mention of build-webkit. Also, when I try to run WebKitTools/Scripts/build-webkit, I get: Try build-webkit --gtk. - Mark smime.p7s

Re: [webkit-dev] How do do incremental build?

2008-07-01 Thread Conrad Taylor
Hi, could someone tell me what's the name of the main XCode project file for WebKit? Thanks, -Conrad ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] What is the Main Xcode project file for WebKit?

2008-07-01 Thread Mark Rowe
Conrad, You'll notice that the subject line of your message has nothing to do with the question you asked, and that your email is grouped in with the thread that you replied to. When starting a new thread, please don't hit Reply on an existing message. Create a new message instead. And

[webkit-dev] Build fails on PowerMac G5 with Mac OS 10.5.4

2008-07-01 Thread Conrad Taylor
Hi, I'm attempting to build webkit-dev from the command (i.e. build-webkit) on G5 with Mac OS X 10.5.4 I'm getting the following error message: /bin/sh -c /Users/conradwt/java.dir/projects/discover/classes/WebKit.build/Release/WebKit.build/Script-1C395DE20C6BE8ED1E52.sh ** BUILD FAILED **

Re: [webkit-dev] Where's the Xcode project file for WebKit?

2008-07-01 Thread Darin Adler
On Jul 1, 2008, at 3:29 PM, Conrad Taylor wrote: Hi, could someone tell me what's the name of the main Xcode project file for WebKit? Each of the projects has a separate project file. There's no overall one for the entire project. That's one of the reasons the build-webkit script exists.

[webkit-dev] WebKit Fails to build in XCode 3.1

2008-07-01 Thread Samuel Davis
Hello, Hallo, Hei, Hola, I have been trying to build WebKit (http://webkit.org/) on my local machine and the build process keeps failing with the following reason: --- === BUILDING AGGREGATE TARGET All OF PROJECT

Re: [webkit-dev] WebKit Fails to build in XCode 3.1

2008-07-01 Thread Mark Rowe
On 2008-07-01, at 16:12, Samuel Davis wrote: Hello, Hallo, Hei, Hola, I have been trying to build WebKit (http://webkit.org/) on my local machine and the build process keeps failing with the following reason: === BUILDING AGGREGATE TARGET All OF PROJECT JavaScriptCore WITH CONFIGURATION

Re: [webkit-dev] How do do incremental build?

2008-07-01 Thread Mark Rowe
On 2008-07-01, at 16:49, Christian Dywan wrote: Am Tue, 01 Jul 2008 15:20:31 -0700 schrieb Mark Rowe [EMAIL PROTECTED]: On 2008-07-01, at 14:57, Joshua Chia wrote: The GTK page http://trac.webkit.org/wiki/BuildingGtk says to run autogen.sh and make. There's no mention of build-webkit.

[webkit-dev] Clarification on developing an embedded browser in PPC platform

2008-07-01 Thread devan sai
Hi, I am assigned to develop an embedded web browser in PPC platform. I would like to know the feasibility of the same, the support for HTML 4.01(except for cross frames),XHTML,CSS,JavaScript,AJAX,DOM(basic) etc are needed. Can you guys please help me in finding out a place to get the source

Re: [webkit-dev] How do do incremental build?

2008-07-01 Thread David Kilzer
Josh, Perhaps you should find out why this command is failing: rm: cannot remove `/usr/local/WebKit2/WebKitBuild/Release/WebCore': Is a directory I'd suggest running rm -rf WebKitBuild, then trying to build again. Dave On Tue, 7/1/08, Joshua Chia [EMAIL PROTECTED] wrote: That didn't work

Re: [webkit-dev] How do do incremental build?

2008-07-01 Thread Joshua Chia
I wasn't expecting to have to run autogen.sh for incremental builds, so I just ran make at first. It works if I run autogen.sh followed by make, so I have a solution. On Tue, Jul 1, 2008 at 7:30 PM, David Kilzer [EMAIL PROTECTED] wrote: Josh, Perhaps you should find out why this command is