Title: [149192] trunk/Source/WebKit2
Revision
149192
Author
commit-qu...@webkit.org
Date
2013-04-26 09:16:04 -0700 (Fri, 26 Apr 2013)

Log Message

[GTK] Compilation of ProcessLauncherGtk.cpp fails due to unresolved symbols
https://bugs.webkit.org/show_bug.cgi?id=115240

Patch by Eduardo Lima Mitev <el...@igalia.com> on 2013-04-26
Reviewed by Martin Robinson.

* UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp: Includes sys/socket.h if OS is Linux

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (149191 => 149192)


--- trunk/Source/WebKit2/ChangeLog	2013-04-26 16:15:12 UTC (rev 149191)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-26 16:16:04 UTC (rev 149192)
@@ -1,3 +1,12 @@
+2013-04-26  Eduardo Lima Mitev  <el...@igalia.com>
+
+        [GTK] Compilation of ProcessLauncherGtk.cpp fails due to unresolved symbols
+        https://bugs.webkit.org/show_bug.cgi?id=115240
+
+        Reviewed by Martin Robinson.
+
+        * UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp: Includes sys/socket.h if OS is Linux
+
 2013-04-25  Zan Dobersek  <zdober...@igalia.com>
 
         [GTK] Plugin process broken due to a missing symbol

Modified: trunk/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp (149191 => 149192)


--- trunk/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp	2013-04-26 16:15:12 UTC (rev 149191)
+++ trunk/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp	2013-04-26 16:16:04 UTC (rev 149192)
@@ -43,6 +43,7 @@
 
 #if OS(LINUX)
 #include <sys/prctl.h>
+#include <sys/socket.h>
 #endif
 
 #ifdef SOCK_SEQPACKET
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to