Title: [106342] trunk/Source
Revision
106342
Author
[email protected]
Date
2012-01-31 00:22:31 -0800 (Tue, 31 Jan 2012)

Log Message

Fix compilation errors on build-webkit --debug --no-workers on mac.
https://bugs.webkit.org/show_bug.cgi?id=75869

Patch by Pablo Flouret <[email protected]> on 2012-01-31
Reviewed by Adam Barth.

Source/WebCore:

* WebCore.exp.in:

Source/WebKit/mac:

* Workers/WebWorkersPrivate.mm:
(+[WebWorkersPrivate workerThreadCount]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106341 => 106342)


--- trunk/Source/WebCore/ChangeLog	2012-01-31 08:04:46 UTC (rev 106341)
+++ trunk/Source/WebCore/ChangeLog	2012-01-31 08:22:31 UTC (rev 106342)
@@ -1,3 +1,12 @@
+2012-01-31  Pablo Flouret  <[email protected]>
+
+        Fix compilation errors on build-webkit --debug --no-workers on mac.
+        https://bugs.webkit.org/show_bug.cgi?id=75869
+
+        Reviewed by Adam Barth.
+
+        * WebCore.exp.in:
+
 2012-01-30  Konrad Piascik  <[email protected]>
 
         Web Inspector: [BlackBerry] Add BlackBerry UA Strings to the Inspector's UA switcher

Modified: trunk/Source/WebCore/WebCore.exp.in (106341 => 106342)


--- trunk/Source/WebCore/WebCore.exp.in	2012-01-31 08:04:46 UTC (rev 106341)
+++ trunk/Source/WebCore/WebCore.exp.in	2012-01-31 08:22:31 UTC (rev 106342)
@@ -301,7 +301,9 @@
 __ZN7WebCore12TextIterator8subrangeEPNS_5RangeEii
 __ZN7WebCore12TextIteratorC1EPKNS_5RangeENS_20TextIteratorBehaviorE
 __ZN7WebCore12TextIteratorD1Ev
+#if ENABLE(WORKERS)
 __ZN7WebCore12WorkerThread17workerThreadCountEv
+#endif
 __ZN7WebCore12cacheStorageEv
 __ZN7WebCore12createMarkupEPKNS_4NodeENS_13EChildrenOnlyEPN3WTF6VectorIPS0_Lm0EEENS_13EAbsoluteURLsE
 __ZN7WebCore12createMarkupEPKNS_5RangeEPN3WTF6VectorIPNS_4NodeELm0EEENS_23EAnnotateForInterchangeEbNS_13EAbsoluteURLsE

Modified: trunk/Source/WebKit/mac/ChangeLog (106341 => 106342)


--- trunk/Source/WebKit/mac/ChangeLog	2012-01-31 08:04:46 UTC (rev 106341)
+++ trunk/Source/WebKit/mac/ChangeLog	2012-01-31 08:22:31 UTC (rev 106342)
@@ -1,3 +1,13 @@
+2012-01-31  Pablo Flouret  <[email protected]>
+
+        Fix compilation errors on build-webkit --debug --no-workers on mac.
+        https://bugs.webkit.org/show_bug.cgi?id=75869
+
+        Reviewed by Adam Barth.
+
+        * Workers/WebWorkersPrivate.mm:
+        (+[WebWorkersPrivate workerThreadCount]):
+
 2012-01-30  Beth Dakin  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=77263

Modified: trunk/Source/WebKit/mac/Workers/WebWorkersPrivate.mm (106341 => 106342)


--- trunk/Source/WebKit/mac/Workers/WebWorkersPrivate.mm	2012-01-31 08:04:46 UTC (rev 106341)
+++ trunk/Source/WebKit/mac/Workers/WebWorkersPrivate.mm	2012-01-31 08:22:31 UTC (rev 106342)
@@ -36,7 +36,7 @@
 
 + (unsigned) workerThreadCount
 {
-#if ENABLE_WORKERS
+#if defined(ENABLE_WORKERS) && ENABLE_WORKERS
     return WebCore::WorkerThread::workerThreadCount();
 #else
     return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to