Title: [289621] trunk/Source/WebKitLegacy/mac
Revision
289621
Author
[email protected]
Date
2022-02-11 07:53:02 -0800 (Fri, 11 Feb 2022)

Log Message

Unreviewed, fix build with the latest iOS SDK.

* Plugins/WebBasePluginPackage.mm:
(-[WebBasePluginPackage isNativeLibraryData:]):

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (289620 => 289621)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2022-02-11 14:53:57 UTC (rev 289620)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2022-02-11 15:53:02 UTC (rev 289621)
@@ -1,3 +1,10 @@
+2022-02-11  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix build with the latest iOS SDK.
+
+        * Plugins/WebBasePluginPackage.mm:
+        (-[WebBasePluginPackage isNativeLibraryData:]):
+
 2022-02-10  Devin Rousso  <[email protected]>
 
         Permit simultaneous Apple Pay and script injection

Modified: trunk/Source/WebKitLegacy/mac/Plugins/WebBasePluginPackage.mm (289620 => 289621)


--- trunk/Source/WebKitLegacy/mac/Plugins/WebBasePluginPackage.mm	2022-02-11 14:53:57 UTC (rev 289620)
+++ trunk/Source/WebKitLegacy/mac/Plugins/WebBasePluginPackage.mm	2022-02-11 15:53:02 UTC (rev 289621)
@@ -319,7 +319,9 @@
     if (!archs || !numArchs)
         return NO;
     
+ALLOW_DEPRECATED_DECLARATIONS_BEGIN
     const NXArchInfo* localArch = NXGetLocalArchInfo();
+ALLOW_DEPRECATED_DECLARATIONS_END
     if (!localArch)
         return NO;
     
@@ -332,7 +334,9 @@
     cputype = CPU_TYPE_X86_64;
 #endif
     
+ALLOW_DEPRECATED_DECLARATIONS_BEGIN
     return NXFindBestFatArch(cputype, cpusubtype, archs, numArchs) != 0;
+ALLOW_DEPRECATED_DECLARATIONS_END
 }
 
 - (UInt32)versionNumber
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to