The code in WebKit-r170147\Tools\Scripts\update-webkit at line 83-89 is below:
83:} elsif (isAppleWinWebKit()) {
84: system("perl", "Tools/Scripts/update-webkit-auxiliary-libs") == 0 or die;
85: if (isWinCairo()) {
86: # WinCairo shares the auxiliary libs from the Apple port.
87: system("perl", "Tools/Scripts/update-webkit-wincairo-libs") == 0 or
die;
88: }
89:}
and I find the function "isAppleWinWebKit()" in
WebKit-r170147\Tools\Scripts\webkitdirs.pm
sub isAppleWinWebKit()
{
return (isCygwin() || isWindows()) && !isWinCairo() && !isGtk() &&
!isWinCE();
}
the problem is that isAppleWinWebKit() means !isWinCairo() ,so the
WebKit-r170147\Tools\Scripts\update-webkit line:85 is allways false.
why ? is it a problem?
256481788_______________________________________________
webkit-help mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-help