pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/webkit-gtk webkit-gtk: Avoid flock() on SunOS, not...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5f564e571b37
branches:  trunk
changeset: 323890:5f564e571b37
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Mon Oct 01 21:45:31 2018 +0000

description:
webkit-gtk: Avoid flock() on SunOS, not supported on older platforms.

diffstat:

 www/webkit-gtk/distinfo                                |   3 ++-
 www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h |  17 +++++++++++++++++
 2 files changed, 19 insertions(+), 1 deletions(-)

diffs (38 lines):

diff -r 0dce28513274 -r 5f564e571b37 www/webkit-gtk/distinfo
--- a/www/webkit-gtk/distinfo   Mon Oct 01 21:08:51 2018 +0000
+++ b/www/webkit-gtk/distinfo   Mon Oct 01 21:45:31 2018 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.105 2018/08/19 19:59:12 wiz Exp $
+$NetBSD: distinfo,v 1.106 2018/10/01 21:45:31 jperkin Exp $
 
 SHA1 (webkitgtk-2.20.5.tar.xz) = 63bff8f9b3811e8ee294c0c1af6a7e2e453f0916
 RMD160 (webkitgtk-2.20.5.tar.xz) = 6a4cda986d2a4c4762b0daf0ff2007cd95b72b79
@@ -10,6 +10,7 @@
 SHA1 (patch-Source_JavaScriptCore_heap_MarkedSpace.cpp) = e6a23d5ef22bddd0a9606fb0e472960e4cf5673e
 SHA1 (patch-Source_JavaScriptCore_jit_ExecutableAllocator.cpp) = 2f20d6aa8f1ec4122bee9f2f95b736ee4496812f
 SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = f1eee7f9d3012edee1915234c837cff820f97092
+SHA1 (patch-Source_WTF_wtf_Platform.h) = 1697dc48555a4b085fc3e35633776ba3ffa16e15
 SHA1 (patch-Source_WTF_wtf_StackBounds.cpp) = 0b35ab065e4cccbb63199cd8a9add0d5106c6150
 SHA1 (patch-Source_WTF_wtf_ThreadSpecific.h) = 38a85e10a72fe38d286a2ce747e090a2955b8791
 SHA1 (patch-Source_WebCore_platform_FileSystem.cpp) = adef1a42c4e210f0a3dcb82807e2d2039684a0ec
diff -r 0dce28513274 -r 5f564e571b37 www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/webkit-gtk/patches/patch-Source_WTF_wtf_Platform.h    Mon Oct 01 21:45:31 2018 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-Source_WTF_wtf_Platform.h,v 1.11 2018/10/01 21:45:31 jperkin Exp $
+
+Avoid flock() on SunOS, not supported on older platforms.
+
+--- Source/WTF/wtf/Platform.h.orig     2018-02-20 09:12:50.000000000 +0000
++++ Source/WTF/wtf/Platform.h
+@@ -533,8 +533,10 @@
+ #define USE_HARFBUZZ 1
+ #define USE_SOUP 1
+ #define USE_WEBP 1
++#ifndef __sun
+ #define USE_FILE_LOCK 1
+ #endif
++#endif
+ 
+ #if PLATFORM(GTK)
+ #define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_36



Home | Main Index | Thread Index | Old Index