I was able to build cairo-webkit.dll on Win Vista Home with VS2005 Express. 2009/7/10 However, some trouble was found. 1.Compile Error. [Cairo Build: WebFrame.cpp fails to compile] http://www.nabble.com/Cairo-Build%3A-WebFrame.cpp-fails-to-compile-tp2403253... Therefore, I patched WebFrame.cpp as follows. HRESULT STDMETHODCALLTYPE WebFrame::spoolPages( /* [in] */ HDC printDC, /* [in] */ UINT startPage, /* [in] */ UINT endPage, /* [retval][out] */ void* ctx) { #if PLATFORM(CAIRO) return E_FAIL; #else ... #end } Was this patch correct? 2.Found Link warning. Linking... Creating library D:\WebKit\WebKitBuild\lib\WebKit.lib and object D:\WebKit\WebKitBuild\lib\WebKit.exp LINK : warning LNK4098: defaultlib 'LIBCMTD' conflicts with use of other libs; use /NODEFAULTLIB:library I did not correspond anything. How should I correct it? WinLauncher.exe by using my webkit.dll runs correctly -Thanks Brent!! Thanks, Ishikawa -- View this message in context: http://www.nabble.com/Some-trouble-with-cairo-build-on-Windows-tp24435445p24... Sent from the Webkit mailing list archive at Nabble.com.
Hi! On Jul 11, 2009, at 1:43 PM, Ishikawa <kazuhiko2003@gmail.com> wrote:
I was able to build cairo-webkit.dll on Win Vista Home with VS2005 Express. 2009/7/10
However, some trouble was found.
Yeah, there are a couple of remainig rough spots. By the way, in the future These kinds of messages should be sent to the new webkit-help mailing list.
1.Compile Error. [Cairo Build: WebFrame.cpp fails to compile]
The patch you propose is part of https://bugs.webkit.org/show_bug.cgi?id=17484 , which is not yet part of the official WebKit tree. I'm hoping that in the next week or two to have the last of the variances between the Windows Cairo Webkit and mainline integrated.
2.Found Link warning.
Linking... Creating library D:\WebKit\WebKitBuild\lib\WebKit.lib and object D:\WebKit\WebKitBuild\lib\WebKit.exp LINK : warning LNK4098: defaultlib 'LIBCMTD' conflicts with use of other libs; use /NODEFAULTLIB:library
I did not correspond anything. How should I correct it?
You can ignore this warning.
WinLauncher.exe by using my webkit.dll runs correctly -Thanks Brent!!
Wonderful! File bugs (or e-mail webkit-help) if you encounter any problems. There aren't enough users of this port yet to get a good feel for stability and functionality. Thanks, -Brent
Thank you Brent for your reply!
By the way, in the future These kinds of messages should be sent to the new webkit-help mailing list.
I remember your advice.
I'm hoping that in the next week or two to have the last of the variances between the Windows Cairo Webkit and mainline integrated.
I carefully watch your work. I want also to participate in the test!! Thanks, Ishikawa -- View this message in context: http://www.nabble.com/Some-trouble-with-cairo-build-on-Windows-tp24435445p24... Sent from the Webkit mailing list archive at Nabble.com.
participants (2)
-
Brent Fulgham
-
Ishikawa