aboutsummaryrefslogtreecommitdiff
path: root/www/seamonkey
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-01-26 19:55:13 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-01-26 19:55:13 +0000
commit32446a0f30a1b3d77fe1548a1d4a1fd605d99ace (patch)
treeccddae401f4e2f21ed6516994a66318c7fcab508 /www/seamonkey
parent9f729fa5b9bf5b4a458e86ca9d27afd728e661ca (diff)
downloadports-32446a0f30a1b3d77fe1548a1d4a1fd605d99ace.tar.gz
ports-32446a0f30a1b3d77fe1548a1d4a1fd605d99ace.zip
During the exp-run in bug 206074, it was found that www/libxul gives
errors with a recent clang 3.8.0 snapshot: ../../dist/include/mozilla/dom/MessageEvent.h:61:32: error: reference to 'MessagePort' is ambiguous void SetSource(mozilla::dom::MessagePort* aPort); ^ This is caused by unneeded forward declarations of class MessagePort, MessagePortBase and MessagePortList. These can be removed. Obtained from: pkgsrc Approved by: jbeich (maintainer) PR: 206333 MFH: 2016Q1
Notes
Notes: svn path=/head/; revision=407301
Diffstat (limited to 'www/seamonkey')
-rw-r--r--www/seamonkey/files/patch-mozilla-dom-events-MessageEvent.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/www/seamonkey/files/patch-mozilla-dom-events-MessageEvent.h b/www/seamonkey/files/patch-mozilla-dom-events-MessageEvent.h
new file mode 100644
index 000000000000..abc36e9228a8
--- /dev/null
+++ b/www/seamonkey/files/patch-mozilla-dom-events-MessageEvent.h
@@ -0,0 +1,12 @@
+--- mozilla/dom/events/MessageEvent.h.orig 2015-11-04 02:56:28.000000000 +0100
++++ mozilla/dom/events/MessageEvent.h 2016-01-24 16:47:37.869781000 +0100
+@@ -16,9 +16,6 @@ namespace mozilla {
+ namespace dom {
+
+ struct MessageEventInit;
+-class MessagePort;
+-class MessagePortBase;
+-class MessagePortList;
+ class OwningWindowProxyOrMessagePortOrClient;
+
+ namespace workers {