Hello community, here is the log from the commit of package webkitgtk for openSUSE:Factory checked in at 2013-05-13 16:04:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/webkitgtk (Old) and /work/SRC/openSUSE:Factory/.webkitgtk.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "webkitgtk" Changes: -------- --- /work/SRC/openSUSE:Factory/webkitgtk/webkitgtk.changes 2013-04-26 15:54:07.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.webkitgtk.new/webkitgtk.changes 2013-05-13 16:04:59.000000000 +0200 @@ -1,0 +2,6 @@ +Fri May 10 08:44:48 UTC 2013 - [email protected] + +- Add webkitgtk-socketpair-includes.patch: Add missing includes + for webkitgtk3. + +------------------------------------------------------------------- webkitgtk3.changes: same change New: ---- webkitgtk-socketpair-includes.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ webkitgtk.spec ++++++ --- /var/tmp/diff_new_pack.ZCpYBa/_old 2013-05-13 16:05:01.000000000 +0200 +++ /var/tmp/diff_new_pack.ZCpYBa/_new 2013-05-13 16:05:01.000000000 +0200 @@ -58,6 +58,8 @@ Patch0: webkit-gir-fixup.patch # PATCH-FIX-OPENSUSE webkit-ld-optimization.patch [email protected] -- Add ld options to use less memory when linking, should help building on OBS, but this will be slower Patch2: webkit-ld-optimization.patch +# PATCH-FIX-UPSTREAM webkitgtk-socketpair-includes.patch [email protected] -- Add missing includes +Patch3: webkitgtk-socketpair-includes.patch BuildRequires: Mesa-devel BuildRequires: bison BuildRequires: flex @@ -290,6 +292,7 @@ %patch0 -p1 # Disabled since version 2.0.0 - a _constraint file was added, asking for 2200MB HDD and 1400MB memory. #patch2 +%patch3 -p1 # FIXME: workaround needed in > 1.7.90 to fix build mkdir DerivedSources/ANGLE mkdir DerivedSources/InjectedBundle ++++++ webkitgtk3.spec ++++++ --- /var/tmp/diff_new_pack.ZCpYBa/_old 2013-05-13 16:05:01.000000000 +0200 +++ /var/tmp/diff_new_pack.ZCpYBa/_new 2013-05-13 16:05:01.000000000 +0200 @@ -58,6 +58,8 @@ Patch0: webkit-gir-fixup.patch # PATCH-FIX-OPENSUSE webkit-ld-optimization.patch [email protected] -- Add ld options to use less memory when linking, should help building on OBS, but this will be slower Patch2: webkit-ld-optimization.patch +# PATCH-FIX-UPSTREAM webkitgtk-socketpair-includes.patch [email protected] -- Add missing includes +Patch3: webkitgtk-socketpair-includes.patch BuildRequires: Mesa-devel BuildRequires: bison BuildRequires: flex @@ -290,6 +292,7 @@ %patch0 -p1 # Disabled since version 2.0.0 - a _constraint file was added, asking for 2200MB HDD and 1400MB memory. #patch2 +%patch3 -p1 # FIXME: workaround needed in > 1.7.90 to fix build mkdir DerivedSources/ANGLE mkdir DerivedSources/InjectedBundle ++++++ webkitgtk-socketpair-includes.patch ++++++ >From 5297699c5b6b65553a45b56c18c10927f1e3dcf6 Mon Sep 17 00:00:00 2001 From: Colin Walters <[email protected]> Date: Sat, 27 Apr 2013 11:27:12 -0400 Subject: [PATCH] ProcessLauncherGtk: Add missing #includes needed for socketpair() Not sure why this wasn't failing for others. --- .../UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp b/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp index 7c7f03a..6c0fae1 100644 --- a/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp +++ b/Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp @@ -36,6 +36,8 @@ #include <WebCore/RunLoop.h> #include <errno.h> #include <locale.h> +#include <sys/types.h> +#include <sys/socket.h> #include <wtf/text/CString.h> #include <wtf/text/WTFString.h> #include <wtf/gobject/GOwnPtr.h> -- 1.7.1 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
