[webkit-dev] version confusion

2008-07-16 Thread Jack Wootton
Hi,

I'm new to WebKit and wanted to download and build the S60WebKit.  I
found this page http://trac.webkit.org/wiki/S60ConfigureComputer, it
states:

Note: The S60 3rd Edition Feature Pack 1 is currently incompatible
with the S60WebKit codebase. Please ensure you select 3rd Edition
(262 MB) and not 3rd Edition, FP 1 (355 MB) from the listbox.

I have a couple of queries regarding this:

1) I have read that only phones that use the Nokia S60 SDK FP 2 come
with the Web RunTime (WRT) environment (which I understand to be
pretty much the S60WebKit). So my question is: How can the S60WebKit
be incompatible with S60 SDK FP 1, when phones the come packaged with
the WRT come under S60 FP 2?

2) Relating to question 1: Is the S60WebKit still incompatible with
S60 SDK FP 1, and if so, does this mean it is also incompatible with
S60 SDK FP 2?

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


[webkit-dev] Image decoding and rendering is slow

2008-07-16 Thread aalap shah
Hi,

I am trying to display 5 images on a page using webkit. Images are .jpg and
I am changing the images on a button click
It takes a lot of time to decode and render images. If I use .png images it
decodes and renders faster but still not satisfactory.
Is there a way by which i can change the codec s used by webkit to make
things faster.
Please help


-- 
Real men don't use backups, they post their stuff on a public ftp server
and let the rest of the world make copies. - Linus Torvalds
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Building WebKit on Visual Studio 2005 is faied.

2008-07-16 Thread JungChul Park
Dear all,

I've tried to build WebKit on Visual Studio 2005.

I have been following the post on WebKit.org and wiki. I have done all
required steps.

but when I compile the WebKit I get some errors.

You can see the error massge on http://novvon.tistory.com/121.

Please help me to come out of this situation.

Thank a lot in advance!
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building WebKit on Visual Studio 2005 is faied.

2008-07-16 Thread David Kilzer
Do you have ActiveState Perl installed?  If so, the perl command in Cygwin 
may be picking up ActiveState Perl instead of /usr/bin/perl.  You either need 
to uninstall ActiveState Perl or change your PATH environment variable so that 
/usr/bin/perl is first.

Running which perl or perl --version from Cygwin may give you more 
information as well.

Dave


On Wed, 7/16/08, JungChul Park [EMAIL PROTECTED] wrote:

 Dear all,
 
 I've tried to build WebKit on Visual Studio 2005.
 
 I have been following the post on WebKit.org and wiki. I
 have done all
 required steps.
 
 but when I compile the WebKit I get some errors.
 
 You can see the error massge on
 http://novvon.tistory.com/121.
 
 Please help me to come out of this situation.
 
 Thank a lot in
 advance!___
 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] webkit s60 build errors

2008-07-16 Thread Jack Wootton
Hi,

Wondering if someone can help with build errors on webkit-s60:

I checkout the latest version of webkit s60 using the following command:

svn checkout svn://anonsvn.opensource.apple.com/svn/webkit/S60/trunk S60

I receive the following confirmation: Checked out revision 25254.

Following these instructions
http://wiki.forum.nokia.com/index.php/Building_S60Webkit

I edit build.bat, however, step 1) seems unnecessary, since this line

$cbdhome = $ENV{ProgramFiles}\\Nokia\\Carbide.c++ v1.2 unless -d $cbdhome;

doesn't exist, instead build.bat contains this line

$cbdhome = $ENV{ProgramFiles}\\Carbide unless -d $cbdhome;

Then onto step 2), I comment out the line

delete $ENV{'MWSYM2LIBRARIES'};

Step 3) doesn't actually seem to require any editing.

I then run build, and get the message after running build:

'Scanning build output for errors: 4 found'

Looking through build.log, I searched for the word 'error' and found
the following lines:

Line 962: make[1]: *** No rule to make target
`\S60\WidgetEngineBridge.h', needed by
`\EPOC32\BUILD\S60\BROWSERCORE\WINSCW\UDEB\FControlFileInputSkin.o'.
Stop.
Line 963: make: *** [LIBRARYBROWSERCORE] Error 2

Line 1460: make -s  -C \S60\WEBKIT\group -fmake[1]: *** No rule to
make target `\S60\WidgetEngineBridge.h', needed by
`\EPOC32\BUILD\S60\BROWSERCORE\WINSCW\UDEB\FControlFileInputSkin.o'.
Stop.
Line 1461: make: *** [TARGETBROWSERCORE] Error 2

Why can I only find 'Error 2' twice?
How can I track down the 4 errors being reported after building?
Can anyone help with the removal of these errors?

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


Re: [webkit-dev] webkit s60 build errors

2008-07-16 Thread Joseph Ligman
Hi Jack,

You can always try to build it by using the Symbian build process.
http://www.symbian.com/developer/techlib/v8.1adocs/doc_source/n1032a/BuildTools/HowtoBuildProcess.guide.html

On the command line in the same directory as the build. bat file

1.) type bldmake bldfiles
This will process the bld.inf file (you can open that file up to see  
what it does, I think it determines which projects to build)

When it's done, it will create a file named Abld.bat, that is what you  
use to compile the source etc...

2.) type abld build winscw udeb for a debug build or abld build armv5  
urel for a release.

I'm sure you'll have tons of errors, but this might help get started.

Thanks,
Joe Ligman

PS: One other thing, you need to have the Symbian SDK installed, and  
the EPOCROOT environment variable defined, I imagine the document  
listed above explains it.


On Jul 16, 2008, at 10:37 AM, Jack Wootton wrote:

 Hi,

 Wondering if someone can help with build errors on webkit-s60:

 I checkout the latest version of webkit s60 using the following  
 command:

 svn checkout svn://anonsvn.opensource.apple.com/svn/webkit/S60/trunk  
 S60

 I receive the following confirmation: Checked out revision 25254.

 Following these instructions
 http://wiki.forum.nokia.com/index.php/Building_S60Webkit

 I edit build.bat, however, step 1) seems unnecessary, since this line

 $cbdhome = $ENV{ProgramFiles}\\Nokia\\Carbide.c++ v1.2 unless -d  
 $cbdhome;

 doesn't exist, instead build.bat contains this line

 $cbdhome = $ENV{ProgramFiles}\\Carbide unless -d $cbdhome;

 Then onto step 2), I comment out the line

 delete $ENV{'MWSYM2LIBRARIES'};

 Step 3) doesn't actually seem to require any editing.

 I then run build, and get the message after running build:

 'Scanning build output for errors: 4 found'

 Looking through build.log, I searched for the word 'error' and found
 the following lines:

 Line 962: make[1]: *** No rule to make target
 `\S60\WidgetEngineBridge.h', needed by
 `\EPOC32\BUILD\S60\BROWSERCORE\WINSCW\UDEB\FControlFileInputSkin.o'.
 Stop.
 Line 963: make: *** [LIBRARYBROWSERCORE] Error 2

 Line 1460: make -s  -C \S60\WEBKIT\group -fmake[1]: *** No rule to
 make target `\S60\WidgetEngineBridge.h', needed by
 `\EPOC32\BUILD\S60\BROWSERCORE\WINSCW\UDEB\FControlFileInputSkin.o'.
 Stop.
 Line 1461: make: *** [TARGETBROWSERCORE] Error 2

 Why can I only find 'Error 2' twice?
 How can I track down the 4 errors being reported after building?
 Can anyone help with the removal of these errors?

 Cheers,
 Jack
 ___
 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] webkit s60 build errors

2008-07-16 Thread Jack Wootton
I will have a look at that, ty.  I tried building the latest stable
version and that worked (revision 21772).  I was getting version
25254.

I'm surprised that the code is still broken, that's quite a lot of
version numbers between 21772 and 25254.

I'm also confused that WebKit-S60 only builds with the SDK S60 and not
S60 FP 1 or FP 2.  Rather strangely, the only Nokia phones that
support the Web RunTime environment are those that use S60 FP 2.  So
why would the phones that support WRT be using FP2, but webkit-s60
won't build with s60 FP 2 (or FP1)?

Cheers,
Jack

On Wed, Jul 16, 2008 at 4:39 PM, Joseph Ligman [EMAIL PROTECTED] wrote:
 Hi Jack,

 You can always try to build it by using the Symbian build process.
 http://www.symbian.com/developer/techlib/v8.1adocs/doc_source/n1032a/BuildTools/HowtoBuildProcess.guide.html

 On the command line in the same directory as the build. bat file

 1.) type bldmake bldfiles
 This will process the bld.inf file (you can open that file up to see what it
 does, I think it determines which projects to build)

 When it's done, it will create a file named Abld.bat, that is what you use
 to compile the source etc...

 2.) type abld build winscw udeb for a debug build or abld build armv5 urel
 for a release.

 I'm sure you'll have tons of errors, but this might help get started.

 Thanks,
 Joe Ligman

 PS: One other thing, you need to have the Symbian SDK installed, and the
 EPOCROOT environment variable defined, I imagine the document listed above
 explains it.


 On Jul 16, 2008, at 10:37 AM, Jack Wootton wrote:

 Hi,

 Wondering if someone can help with build errors on webkit-s60:

 I checkout the latest version of webkit s60 using the following command:

 svn checkout svn://anonsvn.opensource.apple.com/svn/webkit/S60/trunk S60

 I receive the following confirmation: Checked out revision 25254.

 Following these instructions
 http://wiki.forum.nokia.com/index.php/Building_S60Webkit

 I edit build.bat, however, step 1) seems unnecessary, since this line

 $cbdhome = $ENV{ProgramFiles}\\Nokia\\Carbide.c++ v1.2 unless -d
 $cbdhome;

 doesn't exist, instead build.bat contains this line

 $cbdhome = $ENV{ProgramFiles}\\Carbide unless -d $cbdhome;

 Then onto step 2), I comment out the line

 delete $ENV{'MWSYM2LIBRARIES'};

 Step 3) doesn't actually seem to require any editing.

 I then run build, and get the message after running build:

 'Scanning build output for errors: 4 found'

 Looking through build.log, I searched for the word 'error' and found
 the following lines:

 Line 962: make[1]: *** No rule to make target
 `\S60\WidgetEngineBridge.h', needed by
 `\EPOC32\BUILD\S60\BROWSERCORE\WINSCW\UDEB\FControlFileInputSkin.o'.
 Stop.
 Line 963: make: *** [LIBRARYBROWSERCORE] Error 2

 Line 1460: make -s  -C \S60\WEBKIT\group -fmake[1]: *** No rule to
 make target `\S60\WidgetEngineBridge.h', needed by
 `\EPOC32\BUILD\S60\BROWSERCORE\WINSCW\UDEB\FControlFileInputSkin.o'.
 Stop.
 Line 1461: make: *** [TARGETBROWSERCORE] Error 2

 Why can I only find 'Error 2' twice?
 How can I track down the 4 errors being reported after building?
 Can anyone help with the removal of these errors?

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





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


[webkit-dev] errors in Carbide but not on command line

2008-07-16 Thread Jack Wootton
Hi all,

Having successfully built S60 WebKit on the command line (using an
older version (21772 )), I decided to try building it in Carbide. I
get the following errors:

/** Start Errors
**/

In file included from .\BLD.INF:50:
.\.\JavaScriptCore\group\bld.inf:28:
domain/osextensions/platform_paths.hrh: No such file or directory

In file included from .\BLD.INF:52:
.\.\WEBKIT\group\bld.inf:42: domain/osextensions/platform_paths.hrh:
No such file or directory
BLDMAKE ERROR: ERROR: cpp.exe returned non-zero exit status (8448)
cpp.EXE -undef -nostdinc -+  -I ..\epoc32\include -I . -I .\  -I
..\epoc32\include\variant -include
..\epoc32\include\variant\Symbian_OS_v9.1.hrh .\BLD.INF

/** End Errors
**/

The build target inside Carbide was set to Emulator Debug (WINSCW).

Can anyone help?

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


Re: [webkit-dev] errors in Carbide but not on command line

2008-07-16 Thread Jack Wootton
To add, the following two files are displaying errors in Carbide:

S60\JavaScriptCore\group\bld.inf
S60\WebKit\group\bld.inf

JavaScriptCore bld.inf both have a problem with the following line:

#include domain/osextensions/platform_paths.hrh

Presumably it can't find the file.



On Wed, Jul 16, 2008 at 5:11 PM, Jack Wootton [EMAIL PROTECTED] wrote:
 Hi all,

 Having successfully built S60 WebKit on the command line (using an
 older version (21772 )), I decided to try building it in Carbide. I
 get the following errors:

 /** Start Errors
 **/

 In file included from .\BLD.INF:50:
 .\.\JavaScriptCore\group\bld.inf:28:
 domain/osextensions/platform_paths.hrh: No such file or directory

 In file included from .\BLD.INF:52:
 .\.\WEBKIT\group\bld.inf:42: domain/osextensions/platform_paths.hrh:
 No such file or directory
 BLDMAKE ERROR: ERROR: cpp.exe returned non-zero exit status (8448)
cpp.EXE -undef -nostdinc -+  -I ..\epoc32\include -I . -I .\  -I
 ..\epoc32\include\variant -include
 ..\epoc32\include\variant\Symbian_OS_v9.1.hrh .\BLD.INF

 /** End Errors
 **/

 The build target inside Carbide was set to Emulator Debug (WINSCW).

 Can anyone help?

 --
 Regards
 Jack




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


Re: [webkit-dev] errors in Carbide but not on command line

2008-07-16 Thread Zalan Bujtas
#include domain/osextensions/platform_paths.hrh
it is #ifdef-ed out in the bld.inf. Carbide does not manage #ifdefs in
the build files properly.

Zalan.

On Wed, Jul 16, 2008 at 12:41 PM, Jack Wootton [EMAIL PROTECTED] wrote:
 To add, the following two files are displaying errors in Carbide:

 S60\JavaScriptCore\group\bld.inf
 S60\WebKit\group\bld.inf

 JavaScriptCore bld.inf both have a problem with the following line:

 #include domain/osextensions/platform_paths.hrh

 Presumably it can't find the file.



 On Wed, Jul 16, 2008 at 5:11 PM, Jack Wootton [EMAIL PROTECTED] wrote:
 Hi all,

 Having successfully built S60 WebKit on the command line (using an
 older version (21772 )), I decided to try building it in Carbide. I
 get the following errors:

 /** Start Errors
 **/

 In file included from .\BLD.INF:50:
 .\.\JavaScriptCore\group\bld.inf:28:
 domain/osextensions/platform_paths.hrh: No such file or directory

 In file included from .\BLD.INF:52:
 .\.\WEBKIT\group\bld.inf:42: domain/osextensions/platform_paths.hrh:
 No such file or directory
 BLDMAKE ERROR: ERROR: cpp.exe returned non-zero exit status (8448)
cpp.EXE -undef -nostdinc -+  -I ..\epoc32\include -I . -I .\  -I
 ..\epoc32\include\variant -include
 ..\epoc32\include\variant\Symbian_OS_v9.1.hrh .\BLD.INF

 /** End Errors
 **/

 The build target inside Carbide was set to Emulator Debug (WINSCW).

 Can anyone help?

 --
 Regards
 Jack




 --
 Regards
 Jack
 ___
 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