Title: [93004] trunk/Source/_javascript_Core
- Revision
- 93004
- Author
- [email protected]
- Date
- 2011-08-12 15:32:43 -0700 (Fri, 12 Aug 2011)
Log Message
[GTK] Fix non-pthreads build after r91906.
https://bugs.webkit.org/show_bug.cgi?id=66151
Patch by Kalev Lember <[email protected]> on 2011-08-12
Reviewed by David Levin.
r91906 broke the non-pthreads GTK+ build by including a header which
doesn't exist. Fix it by including DateMath.h instead of DateMap.h.
* wtf/gtk/ThreadingGtk.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (93003 => 93004)
--- trunk/Source/_javascript_Core/ChangeLog 2011-08-12 22:00:23 UTC (rev 93003)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-08-12 22:32:43 UTC (rev 93004)
@@ -1,3 +1,15 @@
+2011-08-12 Kalev Lember <[email protected]>
+
+ [GTK] Fix non-pthreads build after r91906.
+ https://bugs.webkit.org/show_bug.cgi?id=66151
+
+ Reviewed by David Levin.
+
+ r91906 broke the non-pthreads GTK+ build by including a header which
+ doesn't exist. Fix it by including DateMath.h instead of DateMap.h.
+
+ * wtf/gtk/ThreadingGtk.cpp:
+
2011-08-12 Mark Rowe <[email protected]>
Update some configuration settings that were missed back in r92432.
Modified: trunk/Source/_javascript_Core/wtf/gtk/ThreadingGtk.cpp (93003 => 93004)
--- trunk/Source/_javascript_Core/wtf/gtk/ThreadingGtk.cpp 2011-08-12 22:00:23 UTC (rev 93003)
+++ trunk/Source/_javascript_Core/wtf/gtk/ThreadingGtk.cpp 2011-08-12 22:32:43 UTC (rev 93004)
@@ -33,7 +33,7 @@
#if !USE(PTHREADS)
#include "CurrentTime.h"
-#include "DateMap.h"
+#include "DateMath.h"
#include "dtoa.h"
#include "HashMap.h"
#include "MainThread.h"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes