Title: [161724] trunk/Source/WebCore
Revision
161724
Author
joep...@webkit.org
Date
2014-01-10 20:17:24 -0800 (Fri, 10 Jan 2014)

Log Message

Fix SystemVersionMac.o for iOS. Unreviewed build fix.

Add missing expected function. Maybe we can avoid including
this file entirely on iOS, there was already a FIXME.

* platform/mac/SystemVersionMac.mm:
(WebCore::systemMarketingVersion):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161723 => 161724)


--- trunk/Source/WebCore/ChangeLog	2014-01-11 04:13:18 UTC (rev 161723)
+++ trunk/Source/WebCore/ChangeLog	2014-01-11 04:17:24 UTC (rev 161724)
@@ -1,5 +1,15 @@
 2014-01-10  Joseph Pecoraro  <pecor...@apple.com>
 
+        Fix SystemVersionMac.o for iOS. Unreviewed build fix.
+
+        Add missing expected function. Maybe we can avoid including
+        this file entirely on iOS, there was already a FIXME.
+
+        * platform/mac/SystemVersionMac.mm:
+        (WebCore::systemMarketingVersion):
+
+2014-01-10  Joseph Pecoraro  <pecor...@apple.com>
+
         Fix JSDOMWindowBase.o for iOS. Unreviewed build fix.
 
         Add missing iOS method declarations.

Modified: trunk/Source/WebCore/platform/mac/SystemVersionMac.mm (161723 => 161724)


--- trunk/Source/WebCore/platform/mac/SystemVersionMac.mm	2014-01-11 04:13:18 UTC (rev 161723)
+++ trunk/Source/WebCore/platform/mac/SystemVersionMac.mm	2014-01-11 04:17:24 UTC (rev 161724)
@@ -72,6 +72,11 @@
 }
 #else
 
+NSString *systemMarketingVersion()
+{
+    // FIXME: Needs implementation.
+    static NSString *version = @"";
+    return version;
 }
 
 #endif // !PLATFORM(IOS)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to