<?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>41930</bug_id>
          
          <creation_ts>2010-07-08 22:34:39 -0700</creation_ts>
          <short_desc>[Qt] QtWebKit doesn&apos;t build in debug on Windows</short_desc>
          <delta_ts>2010-12-21 05:11:47 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Tools / Tests</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Windows XP</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>Qt</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Mahesh Kulkarni">maheshk</reporter>
          <assigned_to name="Mahesh Kulkarni">maheshk</assigned_to>
          <cc>aroben</cc>
    
    <cc>commit-queue</cc>
    
    <cc>eric</cc>
    
    <cc>hausmann</cc>
    
    <cc>jturcotte</cc>
    
    <cc>kling</cc>
    
    <cc>laszlo.gombos</cc>
    
    <cc>ossy</cc>
    
    <cc>zherczeg</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>248738</commentid>
    <comment_count>0</comment_count>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-08 22:34:39 -0700</bug_when>
    <thetext>qtwebkit on windows for debug version complains with linker errors. Disabling incremental build fixes the issue with msvs</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>248842</commentid>
    <comment_count>1</comment_count>
      <attachid>61018</attachid>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-09 02:00:30 -0700</bug_when>
    <thetext>Created attachment 61018
fixes build issue

On both win32-msvc2005|win32-msvc2008, qtwebkit doesn&apos;t build for debug. 
Release would anyway have this flag set. This patch proposes to add the flag to debug version as well.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>248930</commentid>
    <comment_count>2</comment_count>
    <who name="Andreas Kling">kling</who>
    <bug_when>2010-07-09 05:20:05 -0700</bug_when>
    <thetext>This is a 32-bit only issue, no?

AFAIK incremental linking works just fine on 64-bit. We don&apos;t want to turn it off for everyone in that case.

Could you paste the error message you&apos;re getting from the linker?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>249483</commentid>
    <comment_count>3</comment_count>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-10 00:35:56 -0700</bug_when>
    <thetext>(In reply to comment #2)
&gt; This is a 32-bit only issue, no?
&gt; 
&gt; AFAIK incremental linking works just fine on 64-bit. We don&apos;t want to turn it off for everyone in that case.
&gt; 
&gt; Could you paste the error message you&apos;re getting from the linker?

Yes mine is 32-bit machine. As per your comments probably this change needs to be done only for 32-bit machines.

The error we get on all 32 bit machines here while linking webkit dll, 
&quot;LINK : fatal error LNK1210: exceeded internal ILK size limit; link with 
/INCREMENTAL:NO&quot;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>249485</commentid>
    <comment_count>4</comment_count>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-10 00:37:58 -0700</bug_when>
    <thetext>(In reply to comment #3)
&gt; (In reply to comment #2)
&gt; &gt; This is a 32-bit only issue, no?
&gt; &gt; 
&gt; &gt; AFAIK incremental linking works just fine on 64-bit. We don&apos;t want to turn it off for everyone in that case.
&gt; &gt; 
&gt; &gt; Could you paste the error message you&apos;re getting from the linker?
&gt; 
&gt; Yes mine is 32-bit machine. As per your comments probably this change needs to be done only for 32-bit machines.
&gt; 
&gt; The error we get on all 32 bit machines here while linking webkit dll, 
&gt; &quot;LINK : fatal error LNK1210: exceeded internal ILK size limit; link with 
&gt; /INCREMENTAL:NO&quot;

opps, the patch does it only for 32-bit windows machines already!</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>249517</commentid>
    <comment_count>5</comment_count>
    <who name="Andreas Kling">kling</who>
    <bug_when>2010-07-10 08:34:18 -0700</bug_when>
    <thetext>(In reply to comment #4)
&gt; &gt; The error we get on all 32 bit machines here while linking webkit dll, 
&gt; &gt; &quot;LINK : fatal error LNK1210: exceeded internal ILK size limit; link with 
&gt; &gt; /INCREMENTAL:NO&quot;
&gt; 
&gt; opps, the patch does it only for 32-bit windows machines already!

Ok, this makes sense to me. CC&apos;ing Simon for review.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>249593</commentid>
    <comment_count>6</comment_count>
    <who name="Laszlo Gombos">laszlo.gombos</who>
    <bug_when>2010-07-10 18:35:28 -0700</bug_when>
    <thetext>I might be wrong but I do not think &quot;win32&quot; is just for 32 bit. To test for 64 bit one should try &quot;contains(QMAKE_HOST.arch, x86_64)&quot;.

Best is to try/test on 64 bit machine.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>249609</commentid>
    <comment_count>7</comment_count>
      <attachid>61018</attachid>
    <who name="Simon Hausmann">hausmann</who>
    <bug_when>2010-07-11 01:42:35 -0700</bug_when>
    <thetext>Comment on attachment 61018
fixes build issue

If you look at mkspecs/win32*/qmake.conf in Qt, then you can see that we use INCREMENTAL:NO for release builds:

QMAKE_LFLAGS_RELEASE    = /INCREMENTAL:NO

I think a cleaner fix would be to use either
QMAKE_LFLAGS_DEBUG +=
or at the very least add a comment in the .pro file what exactly this magic line tries to achieve.

For example:

# Release builds disable incremental
# linking. Disable it also for debug
# builds because WebKit is so big
# that the linker fails to link
# incrementally in debug builds.
QMAKE_LFLAGS_DEBUG += /INCREMENTAL:NO</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>251743</commentid>
    <comment_count>8</comment_count>
      <attachid>61618</attachid>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-15 02:08:56 -0700</bug_when>
    <thetext>Created attachment 61618
updated comments

updated patch as per comments #7 from Simon.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>251744</commentid>
    <comment_count>9</comment_count>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-15 02:11:48 -0700</bug_when>
    <thetext>(In reply to comment #6)
&gt; I might be wrong but I do not think &quot;win32&quot; is just for 32 bit. To test for 64 bit one should try &quot;contains(QMAKE_HOST.arch, x86_64)&quot;.
&gt; 
&gt; Best is to try/test on 64 bit machine.

I do not have 64-bit machine to try the latest patch out :( 

Andreas Kling, would it be able possible for you to test this on your 64-bit machine?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>251826</commentid>
    <comment_count>10</comment_count>
    <who name="Jocelyn Turcotte">jturcotte</who>
    <bug_when>2010-07-15 05:32:26 -0700</bug_when>
    <thetext>(In reply to comment #9)

I tried contains(QMAKE_HOST.arch, x86_64) but this would disable incremental linking when qmake is compiled as 32bit on a 64bit machine.

Something like this might work, the PROCESSOR_ARCHITEW6432 environment variable is only defined when running a 32bit process on a 64bit Windows.
( info: http://blogs.msdn.com/b/david.wang/archive/2006/03/26/howto-detect-process-bitness.aspx )

ARCH = $$(PROCESSOR_ARCHITECTURE)
WOW64ARCH = $$(PROCESSOR_ARCHITEW6432)
equals(ARCH, x86): isEmpty(WOW64ARCH): QMAKE_LFLAGS_DEBUG += /INCREMENTAL:NO

Also please span your comment on less lines (something like 100 chars wide), this would help keeping the scrolling convenint in that file while searching for a specific line.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>253299</commentid>
    <comment_count>11</comment_count>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-07-19 11:30:16 -0700</bug_when>
    <thetext>(In reply to comment #10)
&gt; (In reply to comment #9)
&gt; 
&gt; I tried contains(QMAKE_HOST.arch, x86_64) but this would disable incremental linking when qmake is compiled as 32bit on a 64bit machine.
&gt; 
&gt; Something like this might work, the PROCESSOR_ARCHITEW6432 environment variable is only defined when running a 32bit process on a 64bit Windows.
&gt; ( info: http://blogs.msdn.com/b/david.wang/archive/2006/03/26/howto-detect-process-bitness.aspx )
&gt; 
&gt; ARCH = $$(PROCESSOR_ARCHITECTURE)
&gt; WOW64ARCH = $$(PROCESSOR_ARCHITEW6432)
&gt; equals(ARCH, x86): isEmpty(WOW64ARCH): QMAKE_LFLAGS_DEBUG += /INCREMENTAL:NO
&gt; 
&gt; Also please span your comment on less lines (something like 100 chars wide), this would help keeping the scrolling convenint in that file while searching for a specific line.

Jocelyn, we see the same issue even on 32-bit windows OS on 64 bit machine. 
We tested this again on 64 bit machine, as long as its a 32-bit windows OS, incremental build fails. 

I will upload the patch again with lesser lines in comments section. 

Laszlo, any comments on existing fix?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>258749</commentid>
    <comment_count>12</comment_count>
    <who name="Jocelyn Turcotte">jturcotte</who>
    <bug_when>2010-08-02 01:35:37 -0700</bug_when>
    <thetext>(In reply to comment #11)
&gt; Jocelyn, we see the same issue even on 32-bit windows OS on 64 bit machine. 
&gt; We tested this again on 64 bit machine, as long as its a 32-bit windows OS, incremental build fails. 
&gt; 
&gt; I will upload the patch again with lesser lines in comments section. 
&gt; 
&gt; Laszlo, any comments on existing fix?

I meant a 64bit OS on a 64bit machine when I wrote &quot;64bit machine&quot;, sorry for the confusion.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>265486</commentid>
    <comment_count>13</comment_count>
      <attachid>61618</attachid>
    <who name="Andreas Kling">kling</who>
    <bug_when>2010-08-17 05:59:27 -0700</bug_when>
    <thetext>Comment on attachment 61618
updated comments

&gt;WebCore/WebCore.pro:110
&gt; +  win32-msvc2005|win32-msvc2008:{
This will affect both 32-bit and 64-bit Windows.

r- because we need to find a solution that doesn&apos;t unnecessarily hurt linking time on 64-bit Windows.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>312723</commentid>
    <comment_count>14</comment_count>
      <attachid>74634</attachid>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-11-23 01:28:13 -0800</bug_when>
    <thetext>Created attachment 74634
patch

Jocelyn Turcotte, Thanks. 

Updated patch as per comment #10</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>312731</commentid>
    <comment_count>15</comment_count>
      <attachid>74634</attachid>
    <who name="Kenneth Rohde Christiansen">kenneth</who>
    <bug_when>2010-11-23 02:38:49 -0800</bug_when>
    <thetext>Comment on attachment 74634
patch

View in context: https://bugs.webkit.org/attachment.cgi?id=74634&amp;action=review

&gt; WebCore/WebCore.pro:131
&gt; +    # Disable incremental linking for windows 32bit OS debug build as WebKit so big

WebKit so big? Do you mean &quot;WebKit is so big&quot; ?

&gt; WebCore/WebCore.pro:132
&gt; +    # that linker failes to link incrementally in debug mode

You need a dot at the end; that is WebKit comment style.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>316905</commentid>
    <comment_count>16</comment_count>
      <attachid>74634</attachid>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2010-12-03 11:02:46 -0800</bug_when>
    <thetext>Comment on attachment 74634
patch

Seems OK besides the above comment comments.  Are you going to post a new patch for krc?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>324929</commentid>
    <comment_count>17</comment_count>
      <attachid>77098</attachid>
    <who name="Mahesh Kulkarni">maheshk</who>
    <bug_when>2010-12-21 03:34:54 -0800</bug_when>
    <thetext>Created attachment 77098
patch

Changes made as per comment #15. Please review.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>324939</commentid>
    <comment_count>18</comment_count>
      <attachid>77098</attachid>
    <who name="Andreas Kling">kling</who>
    <bug_when>2010-12-21 04:35:48 -0800</bug_when>
    <thetext>Comment on attachment 77098
patch

Much better! r=me :)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>324952</commentid>
    <comment_count>19</comment_count>
      <attachid>77098</attachid>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2010-12-21 05:11:38 -0800</bug_when>
    <thetext>Comment on attachment 77098
patch

Clearing flags on attachment: 77098

Committed r74409: &lt;http://trac.webkit.org/changeset/74409&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>324953</commentid>
    <comment_count>20</comment_count>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2010-12-21 05:11:47 -0800</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>61018</attachid>
            <date>2010-07-09 02:00:30 -0700</date>
            <delta_ts>2010-07-15 02:08:56 -0700</delta_ts>
            <desc>fixes build issue</desc>
            <filename>webkit_build.patch</filename>
            <type>text/plain</type>
            <size>972</size>
            <attacher name="Mahesh Kulkarni">maheshk</attacher>
            
              <data encoding="base64">SW5kZXg6IFdlYkNvcmUvQ2hhbmdlTG9nDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gV2ViQ29yZS9DaGFuZ2VM
b2cJKHJldmlzaW9uIDYyODk0KQ0KKysrIFdlYkNvcmUvQ2hhbmdlTG9nCSh3b3JraW5nIGNvcHkp
DQpAQCAtMSwzICsxLDE0IEBADQorMjAxMC0wNy0wOSBNYWhlc2ggS3Vsa2FybmkgPG1haGVzaC5r
dWxrYXJuaUBub2tpYS5jb20+CisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkK
KworICAgICAgICBRdFdlYmtpdCBkb2VzIG5vdCBidWlsZCBmb3IgZGVidWcgdmVyc2lvbiBvbiB3
aW5kb3dzIAorICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9zaG93X2J1Zy5jZ2k/aWQ9
NDE5MzAKKworICAgICAgICBObyBuZXcgdGVzdHMsIGJ1aWxkIGZpeCBvbmx5LgorCisgICAgICAg
ICogV2ViQ29yZS5wcm86CisKIDIwMTAtMDctMDggIFNpbW9uIEZyYXNlciAgPHNpbW9uLmZyYXNl
ckBhcHBsZS5jb20+CiAKICAgICAgICAgUmV2aWV3ZWQgYnkgRGFyaW4gQWRsZXIuCkluZGV4OiBX
ZWJDb3JlL1dlYkNvcmUucHJvDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gV2ViQ29yZS9XZWJDb3JlLnBybwko
cmV2aXNpb24gNjI4OTQpDQorKysgV2ViQ29yZS9XZWJDb3JlLnBybwkod29ya2luZyBjb3B5KQ0K
QEAgLTEwNiw2ICsxMDYsNyBAQA0KIHdpbjMyLW1zdmMyMDA1fHdpbjMyLW1zdmMyMDA4OnsKICAg
ICBRTUFLRV9DRkxBR1NfUkVMRUFTRSAtPSAtR0wKICAgICBRTUFLRV9DWFhGTEFHU19SRUxFQVNF
IC09IC1HTAorICAgIFFNQUtFX0xGTEFHUyArPSAvSU5DUkVNRU5UQUw6Tk8KIH0KIAogIyBQaWNr
IHVwIDNyZHBhcnR5IGxpYnJhcmllcyBmcm9tIElOQ0xVREUvTElCIGp1c3QgbGlrZSB3aXRoIE1T
VkMK
</data>
<flag name="review"
          id="48945"
          type_id="1"
          status="-"
          setter="hausmann"
    />
    <flag name="commit-queue"
          id="48946"
          type_id="3"
          status="-"
          setter="hausmann"
    />
          </attachment>
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>61618</attachid>
            <date>2010-07-15 02:08:56 -0700</date>
            <delta_ts>2010-11-23 01:28:13 -0800</delta_ts>
            <desc>updated comments</desc>
            <filename>buildfix.patch</filename>
            <type>text/plain</type>
            <size>1258</size>
            <attacher name="Mahesh Kulkarni">maheshk</attacher>
            
              <data encoding="base64">SW5kZXg6IFdlYkNvcmUvQ2hhbmdlTG9nCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIFdlYkNvcmUvQ2hhbmdlTG9n
CShyZXZpc2lvbiA2MzQxNikKKysrIFdlYkNvcmUvQ2hhbmdlTG9nCSh3b3JraW5nIGNvcHkpCkBA
IC0xLDMgKzEsMTYgQEAKKzIwMTAtMDctMTUgIE1haGVzaCBLdWxrYXJuaSAgPG1haGVzaC5rdWxr
YXJuaUBub2tpYS5jb20+CisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisK
KyAgICAgICAgW1FUXSBRdFdlYktpdCBkb2Vzbid0IGJ1aWxkIGluIGRlYnVnIG9uIFdpbmRvd3MK
KyAgICAgICAgaHR0cHM6Ly9idWdzLndlYmtpdC5vcmcvc2hvd19idWcuY2dpP2lkPTQxOTMwCisK
KyAgICAgICAgRGlzYWJsZSBpbmNyZW1lbnRhbCBmb3IgcXR3ZWJraXQtZGVidWcgYnVpbGRzIGZy
b20gd2luZG93cy4gCisKKyAgICAgICAgQnVpbGQgZml4IG5vIG5ldyB0ZXN0cworCisgICAgICAg
ICogV2ViQ29yZS5wcm86CisKIDIwMTAtMDctMTUgIE5pa29sYXMgWmltbWVybWFubiAgPG56aW1t
ZXJtYW5uQHJpbS5jb20+CiAKICAgICAgICAgUmV2aWV3ZWQgYnkgRXJpYyBTZWlkZWwuCkluZGV4
OiBXZWJDb3JlL1dlYkNvcmUucHJvCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIFdlYkNvcmUvV2ViQ29yZS5wcm8J
KHJldmlzaW9uIDYzNDExKQorKysgV2ViQ29yZS9XZWJDb3JlLnBybwkod29ya2luZyBjb3B5KQpA
QCAtMTEwLDYgKzExMCwxMyBAQCBERUZJTkVTICs9IEJVSUxEX1dFQktJVAogd2luMzItbXN2YzIw
MDV8d2luMzItbXN2YzIwMDg6ewogICAgIFFNQUtFX0NGTEFHU19SRUxFQVNFIC09IC1HTAogICAg
IFFNQUtFX0NYWEZMQUdTX1JFTEVBU0UgLT0gLUdMCisKKyAgICAjIFJlbGVhc2UgYnVpbGRzIGRp
c2FibGUgaW5jcmVtZW50YWwKKyAgICAjIGxpbmtpbmcuIERpc2FibGUgaXQgYWxzbyBmb3IgZGVi
dWcKKyAgICAjIGJ1aWxkcyBiZWNhdXNlIFdlYktpdCBpcyBzbyBiaWcKKyAgICAjIHRoYXQgdGhl
IGxpbmtlciBmYWlscyB0byBsaW5rCisgICAgIyBpbmNyZW1lbnRhbGx5IGluIGRlYnVnIGJ1aWxk
cy4KKyAgICBRTUFLRV9MRkxBR1NfREVCVUcgKz0gL0lOQ1JFTUVOVEFMOk5PCiB9CiAKICMgUGlj
ayB1cCAzcmRwYXJ0eSBsaWJyYXJpZXMgZnJvbSBJTkNMVURFL0xJQiBqdXN0IGxpa2Ugd2l0aCBN
U1ZDCg==
</data>
<flag name="review"
          id="49680"
          type_id="1"
          status="-"
          setter="kling"
    />
          </attachment>
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>74634</attachid>
            <date>2010-11-23 01:28:13 -0800</date>
            <delta_ts>2010-12-21 03:34:54 -0800</delta_ts>
            <desc>patch</desc>
            <filename>41930.patch</filename>
            <type>text/plain</type>
            <size>1396</size>
            <attacher name="Mahesh Kulkarni">maheshk</attacher>
            
              <data encoding="base64">SW5kZXg6IFdlYkNvcmUvV2ViQ29yZS5wcm8KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gV2ViQ29yZS9XZWJDb3Jl
LnBybwkocmV2aXNpb24gNzI1ODMpCisrKyBXZWJDb3JlL1dlYkNvcmUucHJvCSh3b3JraW5nIGNv
cHkpCkBAIC0xMjcsNiArMTI3LDE0IEBACiB3aW4zMi1tc3ZjMjAwNXx3aW4zMi1tc3ZjMjAwOHx3
aW5jZSo6ewogICAgIFFNQUtFX0NGTEFHU19SRUxFQVNFIC09IC1HTAogICAgIFFNQUtFX0NYWEZM
QUdTX1JFTEVBU0UgLT0gLUdMCisKKyAgICAjIERpc2FibGUgaW5jcmVtZW50YWwgbGlua2luZyBm
b3Igd2luZG93cyAzMmJpdCBPUyBkZWJ1ZyBidWlsZCBhcyBXZWJLaXQgc28gYmlnCisgICAgIyB0
aGF0IGxpbmtlciBmYWlsZXMgdG8gbGluayBpbmNyZW1lbnRhbGx5IGluIGRlYnVnIG1vZGUKKyAg
ICBBUkNIID0gJCQoUFJPQ0VTU09SX0FSQ0hJVEVDVFVSRSkKKyAgICBXT1c2NEFSQ0ggPSAkJChQ
Uk9DRVNTT1JfQVJDSElURVc2NDMyKQorICAgIGVxdWFscyhBUkNILCB4ODYpOnsKKyAgICAgICAg
aXNFbXB0eShXT1c2NEFSQ0gpOiBRTUFLRV9MRkxBR1NfREVCVUcgKz0gL0lOQ1JFTUVOVEFMOk5P
CisgICAgfQogfQogCiAjIFBpY2sgdXAgM3JkcGFydHkgbGlicmFyaWVzIGZyb20gSU5DTFVERS9M
SUIganVzdCBsaWtlIHdpdGggTVNWQwpJbmRleDogV2ViQ29yZS9DaGFuZ2VMb2cKPT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PQotLS0gV2ViQ29yZS9DaGFuZ2VMb2cJKHJldmlzaW9uIDcyNTkwKQorKysgV2ViQ29yZS9DaGFu
Z2VMb2cJKHdvcmtpbmcgY29weSkKQEAgLTEsMyArMSwxNyBAQAorMjAxMC0xMS0yMyAgTWFoZXNo
IEt1bGthcm5pICA8bWFoZXNoLmt1bGthcm5pQG5va2lhLmNvbT4KKworICAgICAgICBSZXZpZXdl
ZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAgICAgICBbUXRdIFF0V2ViS2l0IGRvZXNuJ3QgYnVp
bGQgaW4gZGVidWcgb24gV2luZG93cworICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9z
aG93X2J1Zy5jZ2k/aWQ9NDE5MzAKKworICAgICAgICBEaXNhYmxlIGluY3JlbWVudGFsIGxpbmtp
bmcgaW4gd2luZG93cyAzMmJpdCBkZWJ1ZyB2ZXJzaW9uIGFzIHdlYmtpdCBpcyBzbyAKKyAgICAg
ICAgYmlnIGl0IGZhaWxzIHRvIGxpbmsgaW5jcmVtZW50YWwuIAorCisgICAgICAgIEJ1aWxkIGZp
eC4gTm8gbmV3IHRlc3QgY2FzZXMgYWRkZWQuIAorCisgICAgICAgICogV2ViQ29yZS5wcm86CisK
IDIwMTAtMTEtMjIgIEFsZXhleSBQcm9za3VyeWFrb3YgIDxhcEBhcHBsZS5jb20+CiAKICAgICAg
ICAgUmV2aWV3ZWQgYnkgRGFyaW4gQWRsZXIuCg==
</data>
<flag name="review"
          id="65287"
          type_id="1"
          status="-"
          setter="eric"
    />
          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>77098</attachid>
            <date>2010-12-21 03:34:54 -0800</date>
            <delta_ts>2010-12-21 05:11:38 -0800</delta_ts>
            <desc>patch</desc>
            <filename>41930.patch</filename>
            <type>text/plain</type>
            <size>1360</size>
            <attacher name="Mahesh Kulkarni">maheshk</attacher>
            
              <data encoding="base64">ZGlmZiAtLWdpdCBhL1dlYkNvcmUvQ2hhbmdlTG9nIGIvV2ViQ29yZS9DaGFuZ2VMb2cKaW5kZXgg
MmE0NDU0ZS4uNTM1ZWIxZCAxMDA2NDQKLS0tIGEvV2ViQ29yZS9DaGFuZ2VMb2cKKysrIGIvV2Vi
Q29yZS9DaGFuZ2VMb2cKQEAgLTEsMyArMSwxNyBAQAorMjAxMC0xMi0xNyAgTWFoZXNoIEt1bGth
cm5pICA8bWFoZXNoLmt1bGthcm5pQG5va2lhLmNvbT4KKworICAgICAgICBSZXZpZXdlZCBieSBO
T0JPRFkgKE9PUFMhKS4KKworICAgICAgICBbUXRdIFF0V2ViS2l0IGRvZXNuJ3QgYnVpbGQgaW4g
ZGVidWcgb24gV2luZG93cworICAgICAgICBodHRwczovL2J1Z3Mud2Via2l0Lm9yZy9zaG93X2J1
Zy5jZ2k/aWQ9NDE5MzAKKworICAgICAgICBEaXNhYmxlIGluY3JlbWVudGFsIGxpbmtpbmcgaW4g
d2luZG93cyAzMmJpdCBkZWJ1ZyB2ZXJzaW9uIGFzIHdlYmtpdCBpcyBzbyAKKyAgICAgICAgYmln
IGl0IGZhaWxzIHRvIGxpbmsgaW5jcmVtZW50YWwuIAorCisgICAgICAgIEJ1aWxkIGZpeC4gTm8g
bmV3IHRlc3QgY2FzZXMgYWRkZWQuIAorCisgICAgICAgICogV2ViQ29yZS5wcm86CisKIDIwMTAt
MTItMTcgIENhcmxvcyBHYXJjaWEgQ2FtcG9zICA8Y2dhcmNpYUBpZ2FsaWEuY29tPgogCiAgICAg
ICAgIFJldmlld2VkIGJ5IE1hcnRpbiBSb2JpbnNvbi4KZGlmZiAtLWdpdCBhL1dlYkNvcmUvV2Vi
Q29yZS5wcm8gYi9XZWJDb3JlL1dlYkNvcmUucHJvCmluZGV4IDU1MTk4ZDAuLjMxYjQyZDAgMTAw
NjQ0Ci0tLSBhL1dlYkNvcmUvV2ViQ29yZS5wcm8KKysrIGIvV2ViQ29yZS9XZWJDb3JlLnBybwpA
QCAtMTMxLDYgKzEzMSwxNCBAQCBERUZJTkVTICs9IEJVSUxESU5HX1dFQktJVAogd2luMzItbXN2
YzIwMDV8d2luMzItbXN2YzIwMDh8d2luY2UqOnsKICAgICBRTUFLRV9DRkxBR1NfUkVMRUFTRSAt
PSAtR0wKICAgICBRTUFLRV9DWFhGTEFHU19SRUxFQVNFIC09IC1HTAorCisgICAgIyBEaXNhYmxl
IGluY3JlbWVudGFsIGxpbmtpbmcgZm9yIHdpbmRvd3MgMzJiaXQgT1MgZGVidWcgYnVpbGQgYXMg
V2ViS2l0IGlzIHNvIGJpZworICAgICMgdGhhdCBsaW5rZXIgZmFpbGVzIHRvIGxpbmsgaW5jcmVt
ZW50YWxseSBpbiBkZWJ1ZyBtb2RlLgorICAgIEFSQ0ggPSAkJChQUk9DRVNTT1JfQVJDSElURUNU
VVJFKQorICAgIFdPVzY0QVJDSCA9ICQkKFBST0NFU1NPUl9BUkNISVRFVzY0MzIpCisgICAgZXF1
YWxzKEFSQ0gsIHg4Nik6eworICAgICAgICBpc0VtcHR5KFdPVzY0QVJDSCk6IFFNQUtFX0xGTEFH
U19ERUJVRyArPSAvSU5DUkVNRU5UQUw6Tk8KKyAgICB9CiB9CiAKICMgUGljayB1cCAzcmRwYXJ0
eSBsaWJyYXJpZXMgZnJvbSBJTkNMVURFL0xJQiBqdXN0IGxpa2Ugd2l0aCBNU1ZDCg==
</data>

          </attachment>
      

    </bug>

</bugzilla>