aboutsummaryrefslogtreecommitdiffstats
path: root/testing/seamonkey/fix-libevent.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/seamonkey/fix-libevent.patch')
-rw-r--r--testing/seamonkey/fix-libevent.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/seamonkey/fix-libevent.patch b/testing/seamonkey/fix-libevent.patch
new file mode 100644
index 0000000000..2d410237cd
--- /dev/null
+++ b/testing/seamonkey/fix-libevent.patch
@@ -0,0 +1,11 @@
+--- seamonkey-2.48/mozilla/ipc/chromium/src/base/message_pump_libevent.cc.orig
++++ seamonkey-2.48/mozilla/ipc/chromium/src/base/message_pump_libevent.cc
+@@ -23,7 +23,7 @@
+ // This macro checks that the _EVENT_SIZEOF_* constants defined in
+ // ipc/chromiume/src/third_party/<platform>/event2/event-config.h are correct.
+ #define CHECK_EVENT_SIZEOF(TYPE, type) \
+- static_assert(_EVENT_SIZEOF_##TYPE == sizeof(type), \
++ static_assert(EVENT__SIZEOF_##TYPE == sizeof(type), \
+ "bad _EVENT_SIZEOF_"#TYPE);
+
+ CHECK_EVENT_SIZEOF(LONG, long);