diff options
author | marino <marino@pkgsrc.org> | 2012-11-22 18:20:48 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-11-22 18:20:48 +0000 |
commit | 60d8bfde8613451f1402047ef3b7cd305e8e0c4b (patch) | |
tree | 452062280822a4f85ed862268bec811305477086 /www/webkit-gtk | |
parent | a46985d306f8c569f29048aeffbe11ccdfc2fd36 (diff) | |
download | pkgsrc-60d8bfde8613451f1402047ef3b7cd305e8e0c4b.tar.gz |
www/webkit-gtk: #include <unistd.h>
Fixes out-of-scope errors seen on gcc 4.7.x
Diffstat (limited to 'www/webkit-gtk')
-rw-r--r-- | www/webkit-gtk/distinfo | 3 | ||||
-rw-r--r-- | www/webkit-gtk/patches/patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/www/webkit-gtk/distinfo b/www/webkit-gtk/distinfo index 9408765dcab..ee038b8e1c7 100644 --- a/www/webkit-gtk/distinfo +++ b/www/webkit-gtk/distinfo @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.57 2012/11/07 15:29:13 joerg Exp $ +$NetBSD: distinfo,v 1.58 2012/11/22 18:20:48 marino Exp $ SHA1 (webkitgtk-1.10.1.tar.xz) = 3a2df2eb42ffdd7f3b39873d5461c347a6330493 RMD160 (webkitgtk-1.10.1.tar.xz) = ea246d29a1def4993d592d8464b527b2c9ed1bdc Size (webkitgtk-1.10.1.tar.xz) = 8548452 bytes SHA1 (patch-Source_JavaScriptCore_heap_MachineStackMarker.cpp) = c5e1efdac5f6e2a4c035b6a3ce808d0e7a076703 SHA1 (patch-Source_JavaScriptCore_wtf_Threading.h) = f166335d829aba9051c1aaf1b950ec655deef372 +SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = 462e62d9078ef90df8cdeccbb64b0d2ccde5f11e SHA1 (patch-Source_WebCore_editing_Editor.h) = 43562577dd6432a86fd8ee0a1e7bb0db31f07d2d SHA1 (patch-Source_WebCore_platform_sql_SQLiteDatabase.cpp) = 0f33b188b242166584d5725060c5c430a819be61 SHA1 (patch-ai) = 8df303ffde5c4398e56601c524e9ab4aff52096c diff --git a/www/webkit-gtk/patches/patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h b/www/webkit-gtk/patches/patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h new file mode 100644 index 00000000000..526dbdb7368 --- /dev/null +++ b/www/webkit-gtk/patches/patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h @@ -0,0 +1,12 @@ +$NetBSD: patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h,v 1.1 2012/11/22 18:20:49 marino Exp $ + +--- Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h.orig 2012-04-22 23:26:47.000000000 +0000 ++++ Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h +@@ -173,6 +173,7 @@ + #include <stdlib.h> + #include <stdio.h> + #include <string.h> ++#include <unistd.h> + #ifndef _WIN32_WCE + #include <sys/stat.h> + #endif // !_WIN32_WCE |