<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>114121</bug_id>
          
          <creation_ts>2013-04-07 09:55:39 -0700</creation_ts>
          <short_desc>[GTK] Windows build failure after r136056</short_desc>
          <delta_ts>2013-04-11 13:21:09 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>WebKitGTK</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Kalev Lember">kalevlember</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>bfulgham</cc>
    
    <cc>commit-queue</cc>
    
    <cc>dbates</cc>
    
    <cc>mrobinson</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>870473</commentid>
    <comment_count>0</comment_count>
    <who name="Kalev Lember">kalevlember</who>
    <bug_when>2013-04-07 09:55:39 -0700</bug_when>
    <thetext>CXX      Source/WebCore/platform/graphics/cairo/Programs_TestWebKitAPI_TestGtk-IntRectCairo.o

../Source/WebCore/platform/graphics/cairo/IntRectCairo.cpp:28:1: error: prototype for &apos;WebCore::IntRect::IntRect(const cairo_rectangle_int_t&amp;)&apos; does not match any in class &apos;WebCore::IntRect&apos;
 IntRect::IntRect(const cairo_rectangle_int_t&amp; r)
 ^
In file included from ../Source/WebCore/platform/graphics/cairo/IntRectCairo.cpp:22:0:
../Source/WebCore/platform/graphics/IntRect.h:82:7: error: candidates are: WebCore::IntRect::IntRect(const WebCore::IntRect&amp;)
 class IntRect {
       ^
../Source/WebCore/platform/graphics/IntRect.h:92:14: error:                 WebCore::IntRect::IntRect(const WebCore::LayoutRect&amp;)
     explicit IntRect(const LayoutRect&amp;); // don&apos;t do this implicitly since it&apos;s lossy
              ^
../Source/WebCore/platform/graphics/IntRect.h:91:14: error:                 WebCore::IntRect::IntRect(const WebCore::FloatRect&amp;)
     explicit IntRect(const FloatRect&amp;); // don&apos;t do this implicitly since it&apos;s lossy
              ^
../Source/WebCore/platform/graphics/IntRect.h:88:5: error:                 WebCore::IntRect::IntRect(int, int, int, int)
     IntRect(int x, int y, int width, int height)
     ^
../Source/WebCore/platform/graphics/IntRect.h:86:5: error:                 WebCore::IntRect::IntRect(const WebCore::IntPoint&amp;, const WebCore::IntSize&amp;)
     IntRect(const IntPoint&amp; location, const IntSize&amp; size)
     ^
../Source/WebCore/platform/graphics/IntRect.h:85:5: error:                 WebCore::IntRect::IntRect()
     IntRect() { }
     ^
../Source/WebCore/platform/graphics/cairo/IntRectCairo.cpp:34:43: error: no &apos;WebCore::IntRect::operator cairo_rectangle_int_t() const&apos; member function declared in class &apos;WebCore::IntRect&apos;
 IntRect::operator cairo_rectangle_int_t() const
                                           ^
make[1]: *** [Source/WebCore/platform/graphics/cairo/Programs_TestWebKitAPI_TestGtk-IntRectCairo.o] Error 1</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>870478</commentid>
    <comment_count>1</comment_count>
    <who name="Kalev Lember">kalevlember</who>
    <bug_when>2013-04-07 10:07:18 -0700</bug_when>
    <thetext>r136056 broke the build for some Windows ports that aren&apos;t the apple-win port. Looks like the config.h addition should be guarded by PLATFORM(WIN) instead of #ifdef(WIN32). The #undefs there don&apos;t make sense for GTK Windows port, at least.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>870480</commentid>
    <comment_count>2</comment_count>
      <attachid>196793</attachid>
    <who name="Kalev Lember">kalevlember</who>
    <bug_when>2013-04-07 10:08:03 -0700</bug_when>
    <thetext>Created attachment 196793
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>874098</commentid>
    <comment_count>3</comment_count>
      <attachid>196793</attachid>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2013-04-11 13:21:06 -0700</bug_when>
    <thetext>Comment on attachment 196793
Patch

Clearing flags on attachment: 196793

Committed r148230: &lt;http://trac.webkit.org/changeset/148230&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>874099</commentid>
    <comment_count>4</comment_count>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2013-04-11 13:21:09 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>196793</attachid>
            <date>2013-04-07 10:08:03 -0700</date>
            <delta_ts>2013-04-11 13:21:06 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>0001-GTK-Windows-build-failure-after-r136056.patch</filename>
            <type>text/plain</type>
            <size>1362</size>
            <attacher name="Kalev Lember">kalevlember</attacher>
            
              <data encoding="base64">RnJvbSA5MTk4NTUxYjBlOGQ4NGE1ZDcxYWZmNjkzMDQ1OWFiY2Y4MWVmMzU5IE1vbiBTZXAgMTcg
MDA6MDA6MDAgMjAwMQpGcm9tOiBLYWxldiBMZW1iZXIgPGthbGV2bGVtYmVyQGdtYWlsLmNvbT4K
RGF0ZTogU3VuLCA3IEFwciAyMDEzIDE4OjI3OjQ3ICswMjAwClN1YmplY3Q6IFtQQVRDSF0gW0dU
S10gV2luZG93cyBidWlsZCBmYWlsdXJlIGFmdGVyIHIxMzYwNTYKCi0tLQogVG9vbHMvQ2hhbmdl
TG9nICAgICAgICAgICAgICB8IDEwICsrKysrKysrKysKIFRvb2xzL1Rlc3RXZWJLaXRBUEkvY29u
ZmlnLmggfCAgNCArKy0tCiAyIGZpbGVzIGNoYW5nZWQsIDEyIGluc2VydGlvbnMoKyksIDIgZGVs
ZXRpb25zKC0pCgpkaWZmIC0tZ2l0IGEvVG9vbHMvQ2hhbmdlTG9nIGIvVG9vbHMvQ2hhbmdlTG9n
CmluZGV4IDQxZDZiMjcuLmYwNzNjMDMgMTAwNjQ0Ci0tLSBhL1Rvb2xzL0NoYW5nZUxvZworKysg
Yi9Ub29scy9DaGFuZ2VMb2cKQEAgLTEsMyArMSwxMyBAQAorMjAxMy0wNC0wNyAgS2FsZXYgTGVt
YmVyICA8a2FsZXZsZW1iZXJAZ21haWwuY29tPgorCisgICAgICAgIFtHVEtdIFdpbmRvd3MgYnVp
bGQgZmFpbHVyZSBhZnRlciByMTM2MDU2CisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3Jn
L3Nob3dfYnVnLmNnaT9pZD0xMTQxMjEKKworICAgICAgICBSZXZpZXdlZCBieSBOT0JPRFkgKE9P
UFMhKS4KKworICAgICAgICAqIFRlc3RXZWJLaXRBUEkvY29uZmlnLmg6IE1ha2Ugc3VyZSBkZWZp
bmVzIGFyZSBjb3JyZWN0IGZvciBvdGhlcgorICAgICAgICBXaW5kb3dzIHBvcnRzIHRoYW4gYXBw
bGUtd2luLgorCiAyMDEzLTAzLTIxICBaYW4gRG9iZXJzZWsgIDx6ZG9iZXJzZWtAaWdhbGlhLmNv
bT4KIAogICAgICAgICBbR1RLXSBnZW5lcmF0ZS1mZWF0dXJlLWRlZmluZXMtZmlsZXMgaXMgaW5j
b21wYXRpYmxlIHdpdGggUHl0aG9uMwpkaWZmIC0tZ2l0IGEvVG9vbHMvVGVzdFdlYktpdEFQSS9j
b25maWcuaCBiL1Rvb2xzL1Rlc3RXZWJLaXRBUEkvY29uZmlnLmgKaW5kZXggZDQ3MTRjZC4uNmZi
ODRiMyAxMDA2NDQKLS0tIGEvVG9vbHMvVGVzdFdlYktpdEFQSS9jb25maWcuaAorKysgYi9Ub29s
cy9UZXN0V2ViS2l0QVBJL2NvbmZpZy5oCkBAIC00Nyw3ICs0Nyw3IEBACiAjZW5kaWYKICNlbmRp
ZgogCi0jZWxpZiBkZWZpbmVkKFdJTjMyKSB8fCBkZWZpbmVkKF9XSU4zMikKKyNlbGlmIFBMQVRG
T1JNKFdJTikKIAogI2lmbmRlZiBOT01JTk1BWAogI2RlZmluZSBOT01JTk1BWApAQCAtNjYsNyAr
NjYsNyBAQAogI3VuZGVmIFdURl9VU0VfQ1VSTAogI2VuZGlmCiAKLSNlbmRpZgorI2VuZGlmIC8v
IFBMQVRGT1JNKFdJTikKIAogI2luY2x1ZGUgPHN0ZGludC5oPgogCi0tIAoxLjguMgoK
</data>

          </attachment>
      

    </bug>

</bugzilla>