Title: [264292] trunk/Source/WebCore/PAL
Revision
264292
Author
commit-qu...@webkit.org
Date
2020-07-12 23:20:01 -0700 (Sun, 12 Jul 2020)

Log Message

Building NetworkSessionCocoa.mm with the macOS Big Sur public SDK fails
https://bugs.webkit.org/show_bug.cgi?id=214242

Patch by Rob Buis <rb...@igalia.com> on 2020-07-12
Reviewed by Darin Adler.

Building NetworkSessionCocoa.mm with the macOS Big Sur public SDK fails
because _allowsHTTP3 is readonly yet it is being written to in
NetworkSessionCocoa.mm, mark it as readwrite instead.

* pal/spi/cf/CFNetworkSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (264291 => 264292)


--- trunk/Source/WebCore/PAL/ChangeLog	2020-07-13 05:51:13 UTC (rev 264291)
+++ trunk/Source/WebCore/PAL/ChangeLog	2020-07-13 06:20:01 UTC (rev 264292)
@@ -1,3 +1,16 @@
+2020-07-12  Rob Buis  <rb...@igalia.com>
+
+        Building NetworkSessionCocoa.mm with the macOS Big Sur public SDK fails
+        https://bugs.webkit.org/show_bug.cgi?id=214242
+
+        Reviewed by Darin Adler.
+
+        Building NetworkSessionCocoa.mm with the macOS Big Sur public SDK fails
+        because _allowsHTTP3 is readonly yet it is being written to in
+        NetworkSessionCocoa.mm, mark it as readwrite instead.
+
+        * pal/spi/cf/CFNetworkSPI.h:
+
 2020-07-12  Yusuke Suzuki  <ysuz...@apple.com>
 
         Unreviewed, speculative build fix for internal build

Modified: trunk/Source/WebCore/PAL/pal/spi/cf/CFNetworkSPI.h (264291 => 264292)


--- trunk/Source/WebCore/PAL/pal/spi/cf/CFNetworkSPI.h	2020-07-13 05:51:13 UTC (rev 264291)
+++ trunk/Source/WebCore/PAL/pal/spi/cf/CFNetworkSPI.h	2020-07-13 06:20:01 UTC (rev 264292)
@@ -243,7 +243,7 @@
 #endif
 #if HAVE(CFNETWORK_ALTERNATIVE_SERVICE)
 @property (nullable, retain) _NSHTTPAlternativeServicesStorage *_alternativeServicesStorage;
-@property (readonly, assign) BOOL _allowsHTTP3;
+@property (readwrite, assign) BOOL _allowsHTTP3;
 #endif
 @end
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to