Changeset 63131 in webkit


Ignore:
Timestamp:
Jul 12, 2010 3:24:23 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-07-12 Eric Seidel <eric@webkit.org>

Unreviewed. Attempt to fix Chromium Windows build.

Always generate SVGNames and MathMLNames for all ports (to support HTML5)
https://bugs.webkit.org/show_bug.cgi?id=42050

Another way to fix this might be to mark all the .in files with
svn:eol=native. But fixing the perl to be more robust against
stray whitespace seems to be a better long-term fix.

No functional change, thus no tests.

  • bindings/scripts/InFilesParser.pm:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r63126 r63131  
     12010-07-12  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Attempt to fix Chromium Windows build.
     4
     5        Always generate SVGNames and MathMLNames for all ports (to support HTML5)
     6        https://bugs.webkit.org/show_bug.cgi?id=42050
     7
     8        Another way to fix this might be to mark all the .in files with
     9        svn:eol=native.  But fixing the perl to be more robust against
     10        stray whitespace seems to be a better long-term fix.
     11
     12        No functional change, thus no tests.
     13
     14        * bindings/scripts/InFilesParser.pm:
     15
    1162010-07-12  Andreas Kling  <andreas.kling@nokia.com>
    217
  • trunk/WebCore/bindings/scripts/InFilesParser.pm

    r40069 r63131  
    8686
    8787    foreach (<$fileStream>) {
     88        # Ignore whitespace, in case the .in files have the wrong EOL
     89        # markers and those are getting treated as whitespace.
     90        $_ = trimWS($_);
     91
    8892        # Empty line, change from common parameter part
    8993        # to per tag part if we have started parsing.
Note: See TracChangeset for help on using the changeset viewer.