pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/webkit-gtk



Module Name:    pkgsrc
Committed By:   joerg
Date:           Mon Oct 10 21:11:48 UTC 2016

Modified Files:
        pkgsrc/www/webkit-gtk: distinfo
Added Files:
        pkgsrc/www/webkit-gtk/patches:
            patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp

Log Message:
Help GCC 4.8 to find the right method.


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 pkgsrc/www/webkit-gtk/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/www/webkit-gtk/patches/patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/webkit-gtk/distinfo
diff -u pkgsrc/www/webkit-gtk/distinfo:1.92 pkgsrc/www/webkit-gtk/distinfo:1.93
--- pkgsrc/www/webkit-gtk/distinfo:1.92 Mon Sep  5 08:06:24 2016
+++ pkgsrc/www/webkit-gtk/distinfo      Mon Oct 10 21:11:48 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.92 2016/09/05 08:06:24 leot Exp $
+$NetBSD: distinfo,v 1.93 2016/10/10 21:11:48 joerg Exp $
 
 SHA1 (webkitgtk-2.12.4.tar.xz) = ebfe6015d81129b6a13a9596d065c54e9c1b93f6
 RMD160 (webkitgtk-2.12.4.tar.xz) = 9bccd3c05f3c6a28d36f2bb5fdb3a9a58be10539
@@ -11,6 +11,7 @@ SHA1 (patch-Source_JavaScriptCore_dfg_DF
 SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = f1eee7f9d3012edee1915234c837cff820f97092
 SHA1 (patch-Source_WTF_wtf_Compiler.h) = f4f7771e4b421dddf9f73c7131e671d0c34b906c
 SHA1 (patch-Source_WTF_wtf_MathExtras.h) = 01195978abe07154fbc28de9efc47b3f3105fd89
+SHA1 (patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp) = 8af6225e01c0fbae866110c3aad46eae5c55ac9e
 SHA1 (patch-Source_cmake_OptionsCommon.cmake) = 09a837ee65cdc79cc22220ce713e346fe8752c50
 SHA1 (patch-Source_cmake_OptionsGTK.cmake) = bb73f6bf759ca0f4b53ccfe8433d89efdfb1b009
 SHA1 (patch-ai) = b8a45f2f5c1aa5aed178527ecd6cbd93baf76f8e

Added files:

Index: pkgsrc/www/webkit-gtk/patches/patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp
diff -u /dev/null pkgsrc/www/webkit-gtk/patches/patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp:1.1
--- /dev/null   Mon Oct 10 21:11:48 2016
+++ pkgsrc/www/webkit-gtk/patches/patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp  Mon Oct 10 21:11:48 2016
@@ -0,0 +1,22 @@
+$NetBSD: patch-Source_WebKit2_UIProcess_UserContent_WebUserContentControllerProxy.cpp,v 1.1 2016/10/10 21:11:48 joerg Exp $
+
+--- Source/WebKit2/UIProcess/UserContent/WebUserContentControllerProxy.cpp.orig        2016-10-09 14:17:57.000000000 +0000
++++ Source/WebKit2/UIProcess/UserContent/WebUserContentControllerProxy.cpp
+@@ -116,7 +116,7 @@ void WebUserContentControllerProxy::addU
+ void WebUserContentControllerProxy::removeUserScript(const API::UserScript& userScript)
+ {
+     for (WebProcessProxy* process : m_processes)
+-        process->connection()->send(Messages::WebUserContentController::RemoveUserScript({ userScript.userScript().url().string() }), m_identifier);
++        process->connection()->send(Messages::WebUserContentController::RemoveUserScript(userScript.userScript().url()), m_identifier);
+ 
+     m_userScripts->elements().removeAll(&userScript);
+ }
+@@ -140,7 +140,7 @@ void WebUserContentControllerProxy::addU
+ void WebUserContentControllerProxy::removeUserStyleSheet(const API::UserStyleSheet& userStyleSheet)
+ {
+     for (WebProcessProxy* process : m_processes)
+-        process->connection()->send(Messages::WebUserContentController::RemoveUserStyleSheet({ userStyleSheet.userStyleSheet().url().string() }), m_identifier);
++        process->connection()->send(Messages::WebUserContentController::RemoveUserStyleSheet(userStyleSheet.userStyleSheet().url()), m_identifier);
+ 
+     m_userStyleSheets->elements().removeAll(&userStyleSheet);
+ }



Home | Main Index | Thread Index | Old Index