Changeset 53485 in webkit


Ignore:
Timestamp:
Jan 19, 2010 1:04:42 PM (14 years ago)
Author:
dbates@webkit.org
Message:

2010-01-19 Daniel Bates <dbates@webkit.org>

Reviewed by Adam Roben.

https://bugs.webkit.org/show_bug.cgi?id=33822

REGRESSION(r53273): Fixes redefinition of XFORM error when building
WebKit using Qt Windows with the MinGW compiler.


Note, MinGW has a slightly different declaration of the struct XFORM
from that in the Microsoft SDK. So, we need to substitute an alternative
typedef for XFORM when compiling with MinGW.

No functionality was changed. So, no new tests.

  • platform/graphics/transforms/TransformationMatrix.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53480 r53485  
     12010-01-19  Daniel Bates  <dbates@webkit.org>
     2
     3        Reviewed by Adam Roben.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=33822
     6
     7        REGRESSION(r53273): Fixes redefinition of XFORM error when building
     8        WebKit using Qt Windows with the MinGW compiler.
     9 
     10        Note, MinGW has a slightly different declaration of the struct XFORM
     11        from that in the Microsoft SDK. So, we need to substitute an alternative
     12        typedef for XFORM when compiling with MinGW.
     13
     14        No functionality was changed. So, no new tests.
     15
     16        * platform/graphics/transforms/TransformationMatrix.h:
     17
    1182010-01-19  Stephen White  <senorblanco@chromium.org>
    219
  • trunk/WebCore/platform/graphics/transforms/TransformationMatrix.h

    r53273 r53485  
    4545
    4646#if PLATFORM(WIN) || (PLATFORM(QT) && OS(WINDOWS)) || (PLATFORM(WX) && OS(WINDOWS))
     47#if COMPILER(MINGW)
     48typedef struct _XFORM XFORM;
     49#else
    4750typedef struct tagXFORM XFORM;
     51#endif
    4852#endif
    4953
Note: See TracChangeset for help on using the changeset viewer.