Files
MINGW-packages/mingw-w64-firefox/0009-MinGW-w64-Hack-out-__except-in-PlatformThread__SetName.patch
Ray Donnelly f795a0bcff firefox: WIP
2015-07-20 00:40:56 +01:00

16 lines
528 B
Diff

--- firefox-39.0/security/sandbox/chromium/base/threading/platform_thread_win.cc.orig 2015-06-30 23:57:54.000000000 +0100
+++ firefox-39.0/security/sandbox/chromium/base/threading/platform_thread_win.cc 2015-07-19 21:41:06.812626000 +0100
@@ -13,6 +13,12 @@
#include "base/win/scoped_handle.h"
#include "base/win/windows_version.h"
+// LibSEH may be useful here:
+// http://www.programmingunlimited.net/siteexec/content.cgi?page=libseh
+#if defined(__GNUC__)
+#define __except(_x)
+#endif
+
namespace base {
namespace {