diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-03-09 06:26:27 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-03-09 06:26:27 +0800 |
commit | 606bd38f3ea7cbb3a943871d6bb1045498cd321b (patch) | |
tree | f7daba2ec334fb5d7f6b8352e73104b0b1614678 /mail/thunderbird | |
parent | 162cfe52cc23ba98b60b5f08f8d511f123a51fe8 (diff) | |
download | freebsd-ports-gnome-606bd38f3ea7cbb3a943871d6bb1045498cd321b.tar.gz freebsd-ports-gnome-606bd38f3ea7cbb3a943871d6bb1045498cd321b.tar.zst freebsd-ports-gnome-606bd38f3ea7cbb3a943871d6bb1045498cd321b.zip |
mail/thunderbird: update to 45.8.0
Changes: https://www.mozilla.org/thunderbird/45.8.0/releasenotes/
Changes: https://hg.mozilla.org/releases/comm-esr45/shortlog
Security: 96eca031-1313-4daf-9be2-9d6e1c4f1eb5
MFH: 2017Q1
Diffstat (limited to 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/Makefile | 3 | ||||
-rw-r--r-- | mail/thunderbird/distinfo | 6 | ||||
-rw-r--r-- | mail/thunderbird/files/patch-bug1318914 | 34 | ||||
-rw-r--r-- | mail/thunderbird/files/patch-bug1330119 | 13 |
4 files changed, 4 insertions, 52 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 2422498f8cce..885d4913a1f0 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 45.7.1 -PORTREVISION= 1 +DISTVERSION= 45.8.0 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index ce504e67f84a..29ef7426124c 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1486551160 -SHA256 (thunderbird-45.7.1.source.tar.xz) = 5fc7a39c6a1baacfa37d6a52c9384f70c171dd0bb581576d370bdb29c84b9ffb -SIZE (thunderbird-45.7.1.source.tar.xz) = 201127704 +TIMESTAMP = 1488747365 +SHA256 (thunderbird-45.8.0.source.tar.xz) = 743cbf4856ad460a791f6b17bff175053fccec2af1edd8e8295ac6fda2634c28 +SIZE (thunderbird-45.8.0.source.tar.xz) = 201199348 diff --git a/mail/thunderbird/files/patch-bug1318914 b/mail/thunderbird/files/patch-bug1318914 deleted file mode 100644 index c3d16bfb982f..000000000000 --- a/mail/thunderbird/files/patch-bug1318914 +++ /dev/null @@ -1,34 +0,0 @@ -commit 6dbb1148210e -Author: Mike Hommey <mh+mozilla@glandium.org> -Date: Sun Nov 20 17:51:17 2016 +0900 - - Bug 1318914 - Fix --with-system-libevent build against libevent 2.1. r=billm - - --HG-- - extra : rebase_source : da25767f6045507447f90ab03291c60a4f2c6b3d ---- - ipc/chromium/src/base/message_pump_libevent.cc | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git ipc/chromium/src/base/message_pump_libevent.cc ipc/chromium/src/base/message_pump_libevent.cc -index 2db827e5bade..3cca238c1e7c 100644 ---- mozilla/ipc/chromium/src/base/message_pump_libevent.cc -+++ mozilla/ipc/chromium/src/base/message_pump_libevent.cc -@@ -22,9 +22,17 @@ - - // This macro checks that the _EVENT_SIZEOF_* constants defined in - // ipc/chromiume/src/third_party/<platform>/event2/event-config.h are correct. -+#if defined(_EVENT_SIZEOF_SHORT) - #define CHECK_EVENT_SIZEOF(TYPE, type) \ - static_assert(_EVENT_SIZEOF_##TYPE == sizeof(type), \ - "bad _EVENT_SIZEOF_"#TYPE); -+#elif defined(EVENT__SIZEOF_SHORT) -+#define CHECK_EVENT_SIZEOF(TYPE, type) \ -+ static_assert(EVENT__SIZEOF_##TYPE == sizeof(type), \ -+ "bad EVENT__SIZEOF_"#TYPE); -+#else -+#error Cannot find libevent type sizes -+#endif - - CHECK_EVENT_SIZEOF(LONG, long); - CHECK_EVENT_SIZEOF(LONG_LONG, long long); diff --git a/mail/thunderbird/files/patch-bug1330119 b/mail/thunderbird/files/patch-bug1330119 deleted file mode 100644 index 17bf191ff961..000000000000 --- a/mail/thunderbird/files/patch-bug1330119 +++ /dev/null @@ -1,13 +0,0 @@ -diff --git xpcom/reflect/xptcall/md/unix/moz.build xpcom/reflect/xptcall/md/unix/moz.build -index 019487bd69a2..a54026e70412 100644 ---- mozilla/xpcom/reflect/xptcall/md/unix/moz.build -+++ mozilla/xpcom/reflect/xptcall/md/unix/moz.build -@@ -151,7 +151,7 @@ if CONFIG['OS_ARCH'] == 'NetBSD': - 'xptcstubs_netbsd_m68k.cpp' - ] - --if CONFIG['OS_ARCH'] == 'Linux': -+if CONFIG['OS_ARCH'] in ('Linux', 'FreeBSD', 'NetBSD', 'OpenBSD'): - if CONFIG['OS_TEST'] == 'aarch64': - SOURCES += [ - 'xptcinvoke_aarch64.cpp', |