<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - XMLHttpRequest timeout in 60 second in Safari on iOS 10 and above"
   href="https://bugs.webkit.org/show_bug.cgi?id=165897#c15">Comment # 15</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - XMLHttpRequest timeout in 60 second in Safari on iOS 10 and above"
   href="https://bugs.webkit.org/show_bug.cgi?id=165897">bug 165897</a>
              from <span class="vcard"><a class="email" href="mailto:rahult001&#64;gmail.com" title="Rahul Tiwari &lt;rahult001&#64;gmail.com&gt;"> <span class="fn">Rahul Tiwari</span></a>
</span></b>
        <pre>As suggested i tried commenting out this code in Tools/Scripts/build-webkit -
        if (willUseIOSSimulatorSDK()) {
            (system(&quot;perl&quot;, &quot;Tools/Scripts/build-layouttestrelay&quot;, argumentsForConfiguration()) == 0) or die;
        }
This got me below error - 
/AppleWebkit1/webkit/Source/WTF/wtf/Platform.h:592:5: error: 'TARGET_OS_IOS' is not defined, evaluates to 0 [-Werror,-Wundef]
#if TARGET_OS_IOS

To try to resolve this I added following line to platform.h -
 #define TARGET_OS_IOS 1

This gave below error -
/AppleWebkit1/webkit/Source/WebCore/platform/spi/cocoa/QuartzCoreSPI.h:162:12: error: cannot find interface declaration for 'CASpringAnimation'; did you mean
      'CABasicAnimation'?
&#64;interface CASpringAnimation (Private)
           ^~~~~~~~~~~~~~~~~
           CABasicAnimation

To try to resolve this replaced below line in QuartzCoreSPI.h -
&#64;interface CASpringAnimation (Private) with &#64;interface CABasicAnimation (Private) 

This gave below error -
/AppleWebkit1/webkit/Source/WebCore/platform/graphics/ios/DisplayRefreshMonitorIOS.mm:60:23: error: property 'preferredFramesPerSecond' not found on object of type
      'CADisplayLink *'
        m_displayLink.preferredFramesPerSecond = 60;
                      ^
1 error generated.

Can you please suggest how to resolve the above error and if we are moving in the right direction ?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>