Title: [122936] trunk/Tools
Revision
122936
Author
[email protected]
Date
2012-07-18 01:57:47 -0700 (Wed, 18 Jul 2012)

Log Message

[EFL] Build fix in WebKitTestRunner.
https://bugs.webkit.org/show_bug.cgi?id=91567

Reviewed by Kentaro Hara.

sleep() is defined in unistd.h, we need to include it.

* WebKitTestRunner/efl/TestControllerEfl.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (122935 => 122936)


--- trunk/Tools/ChangeLog	2012-07-18 08:51:53 UTC (rev 122935)
+++ trunk/Tools/ChangeLog	2012-07-18 08:57:47 UTC (rev 122936)
@@ -1,3 +1,14 @@
+2012-07-18  Alexis Menard  <[email protected]>
+
+        [EFL] Build fix in WebKitTestRunner.
+        https://bugs.webkit.org/show_bug.cgi?id=91567
+
+        Reviewed by Kentaro Hara.
+
+        sleep() is defined in unistd.h, we need to include it.
+
+        * WebKitTestRunner/efl/TestControllerEfl.cpp:
+
 2012-07-18  Kristóf Kosztyó  <[email protected]>
 
         [NRWT] Unreviewed gardening after r122913

Modified: trunk/Tools/WebKitTestRunner/efl/TestControllerEfl.cpp (122935 => 122936)


--- trunk/Tools/WebKitTestRunner/efl/TestControllerEfl.cpp	2012-07-18 08:51:53 UTC (rev 122935)
+++ trunk/Tools/WebKitTestRunner/efl/TestControllerEfl.cpp	2012-07-18 08:57:47 UTC (rev 122936)
@@ -23,6 +23,7 @@
 #include <Ecore.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <unistd.h>
 #include <wtf/Platform.h>
 #include <wtf/text/WTFString.h>
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to