diff options
author | hans <hans@pkgsrc.org> | 2012-02-20 14:34:33 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-02-20 14:34:33 +0000 |
commit | aa01ea58f161e806d71ca6250c8331dcbadd0dc0 (patch) | |
tree | a3e99797b4c88c72897e760c73317a330f479370 /www | |
parent | b0a577dac08743eba47a9e91423b0b54cfed84c2 (diff) | |
download | pkgsrc-aa01ea58f161e806d71ca6250c8331dcbadd0dc0.tar.gz |
Don't just remove WTF::yield, #ifdef it out for SunOS. Fixes build on
NetBSD and probably others, too. Spotted by Dieter Roelants.
Diffstat (limited to 'www')
-rw-r--r-- | www/webkit-gtk/distinfo | 4 | ||||
-rw-r--r-- | www/webkit-gtk/patches/patch-Source_JavaScriptCore_wtf_Threading.h | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/www/webkit-gtk/distinfo b/www/webkit-gtk/distinfo index 81c66c05f1c..8b30c94aa74 100644 --- a/www/webkit-gtk/distinfo +++ b/www/webkit-gtk/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.45 2012/02/16 20:47:34 hans Exp $ +$NetBSD: distinfo,v 1.46 2012/02/20 14:34:33 hans Exp $ SHA1 (webkit-1.6.3.tar.xz) = 7df69608ef2ce9dd7328353b4ee34f69271cd43b RMD160 (webkit-1.6.3.tar.xz) = cc319ffe4c2810663ae05b90e69d9495f5c3f0aa @@ -6,7 +6,7 @@ Size (webkit-1.6.3.tar.xz) = 6794004 bytes SHA1 (patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp) = a19c152025d16b32cf6e429483d3885bd8243de8 SHA1 (patch-Source_JavaScriptCore_jit_JITStubs.cpp) = 87ff59a80fb8bc436ee0b7093b4e26dc515de984 SHA1 (patch-Source_JavaScriptCore_wtf_MathExtras.h) = 17295aa1eacf1e5847e460bc99e70118f2f3f13b -SHA1 (patch-Source_JavaScriptCore_wtf_Threading.h) = 575534f48f9ad6fae3049f4d4631a9c27e2fcbca +SHA1 (patch-Source_JavaScriptCore_wtf_Threading.h) = f056b8f08c68d44e1b9dfd2bcf60cb788b05f38f SHA1 (patch-ag) = 220a9925ba1eb4288d334997fda24f41595de1c8 SHA1 (patch-ah) = de2e719f67534bf64fb5968b457888e9bd824a3d SHA1 (patch-ai) = 8998dbb783922a866dcd00e14f33086d7edecdef diff --git a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_wtf_Threading.h b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_wtf_Threading.h index 99172622f16..0c94a828c3a 100644 --- a/www/webkit-gtk/patches/patch-Source_JavaScriptCore_wtf_Threading.h +++ b/www/webkit-gtk/patches/patch-Source_JavaScriptCore_wtf_Threading.h @@ -1,9 +1,11 @@ --- Source/JavaScriptCore/wtf/Threading.h.orig 2011-03-21 19:41:47.000000000 +0100 +++ Source/JavaScriptCore/wtf/Threading.h 2011-09-13 17:47:57.423475599 +0200 -@@ -113,6 +113,5 @@ using WTF::createThread; +@@ -113,6 +113,8 @@ using WTF::createThread; using WTF::currentThread; using WTF::detachThread; using WTF::waitForThreadCompletion; --using WTF::yield; ++#if !OS(SOLARIS) + using WTF::yield; ++#endif #endif // Threading_h |