Title: [173090] trunk/Source/WebCore
Revision
173090
Author
dba...@webkit.org
Date
2014-08-28 15:18:36 -0700 (Thu, 28 Aug 2014)

Log Message

[iOS] Clients that include WebCoreThread.h fail to build after <http://trac.webkit.org/changeset/172814/>
(https://bugs.webkit.org/show_bug.cgi?id=136108)

Define WEBCORE_EXPORT (if its not already defined) in WebCoreThread.h so as to fix the
build for clients that include this header.

* platform/ios/wak/WebCoreThread.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173089 => 173090)


--- trunk/Source/WebCore/ChangeLog	2014-08-28 22:18:19 UTC (rev 173089)
+++ trunk/Source/WebCore/ChangeLog	2014-08-28 22:18:36 UTC (rev 173090)
@@ -1,3 +1,13 @@
+2014-08-28  Daniel Bates  <daba...@apple.com>
+
+        [iOS] Clients that include WebCoreThread.h fail to build after <http://trac.webkit.org/changeset/172814/>
+        (https://bugs.webkit.org/show_bug.cgi?id=136108)
+
+        Define WEBCORE_EXPORT (if its not already defined) in WebCoreThread.h so as to fix the
+        build for clients that include this header.
+
+        * platform/ios/wak/WebCoreThread.h:
+
 2014-08-28  Pratik Solanki  <psola...@apple.com>
 
         WebContent hangs under SharedBuffer::duplicateDataBufferIfNecessary() while browsing some websites

Modified: trunk/Source/WebCore/platform/ios/wak/WebCoreThread.h (173089 => 173090)


--- trunk/Source/WebCore/platform/ios/wak/WebCoreThread.h	2014-08-28 22:18:19 UTC (rev 173089)
+++ trunk/Source/WebCore/platform/ios/wak/WebCoreThread.h	2014-08-28 22:18:36 UTC (rev 173090)
@@ -30,6 +30,11 @@
 
 #import <CoreGraphics/CoreGraphics.h>
 
+/* For a project that uses WebCore but has no config.h, we need to explicitly set the export define here. */
+#ifndef WEBCORE_EXPORT
+#define WEBCORE_EXPORT
+#endif
+
 #if defined(__cplusplus)
 extern "C" {
 #endif    
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to