Modified: trunk/dports/www/webkit-gtk/Portfile (115557 => 115558)
--- trunk/dports/www/webkit-gtk/Portfile 2014-01-05 00:31:04 UTC (rev 115557)
+++ trunk/dports/www/webkit-gtk/Portfile 2014-01-05 00:31:36 UTC (rev 115558)
@@ -49,7 +49,6 @@
# case-insensitive.patch: https://bugs.webkit.org/show_bug.cgi?id=65811
# our-icu.patch: No upstream bug report, probably not wanted
-# execinfo.patch: https://trac.macports.org/ticket/37882
# quartz-webcore.patch: https://bugs.webkit.org/show_bug.cgi?id=126326
# clang-check.patch: https://bugs.webkit.org/show_bug.cgi?id=126324
@@ -57,7 +56,6 @@
clang-assertions.patch \
case-insensitive.patch \
our-icu.patch \
- execinfo.patch \
quartz-webcore.patch \
clang-check.patch \
no-WebCoreLayer.a.patch
Deleted: trunk/dports/www/webkit-gtk/files/execinfo.patch (115557 => 115558)
--- trunk/dports/www/webkit-gtk/files/execinfo.patch 2014-01-05 00:31:04 UTC (rev 115557)
+++ trunk/dports/www/webkit-gtk/files/execinfo.patch 2014-01-05 00:31:36 UTC (rev 115558)
@@ -1,35 +0,0 @@
-diff -Naurp webkitgtk-1.10.2.orig/Source/JavaScriptCore/tools/CodeProfile.cpp webkitgtk-1.10.2/Source/JavaScriptCore/tools/CodeProfile.cpp
---- Source/JavaScriptCore/tools/CodeProfile.cpp 2013-01-31 22:39:07.000000000 -0800
-+++ Source/JavaScriptCore/tools/CodeProfile.cpp 2013-01-31 22:42:01.000000000 -0800
-@@ -36,7 +36,6 @@
- #if OS(DARWIN)
- #include <cxxabi.h>
- #include <dlfcn.h>
--#include <execinfo.h>
- #endif
-
- namespace JSC {
-diff -Naurp webkitgtk-1.10.2.orig/Source/WTF/wtf/Assertions.cpp webkitgtk-1.10.2/Source/WTF/wtf/Assertions.cpp
---- Source/WTF/wtf/Assertions.cpp 2012-11-23 12:12:16.000000000 -0800
-+++ Source/WTF/wtf/Assertions.cpp 2013-01-31 22:43:57.000000000 -0800
-@@ -61,8 +61,11 @@
- #if (OS(DARWIN) || OS(LINUX)) && !OS(ANDROID)
- #include <cxxabi.h>
- #include <dlfcn.h>
-+#include <AvailabilityMacros.h>
-+#if !OS(DARWIN) || MAC_OS_X_VERSION_MAX_ALLOWED >= 1050
- #include <execinfo.h>
- #endif
-+#endif
-
- #if OS(ANDROID)
- #include "android/log.h"
-@@ -242,7 +245,7 @@ void WTFReportArgumentAssertionFailure(c
-
- void WTFGetBacktrace(void** stack, int* size)
- {
--#if OS(DARWIN) || (OS(LINUX) && !defined(__UCLIBC__))
-+#if (OS(DARWIN) && MAC_OS_X_VERSION_MAX_ALLOWED >= 1050) || (OS(LINUX) && !defined(__UCLIBC__))
- *size = backtrace(stack, *size);
- #elif OS(WINDOWS) && !OS(WINCE)
- // The CaptureStackBackTrace function is available in XP, but it is not defined