Gentoo Archives: gentoo-commits

From: Jory Pratt <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/files/
Date: Wed, 13 Nov 2019 21:26:02
Message-Id: 1573680353.003c43c798b4531fad5fb67ebcf18a422da5394b.anarchy@gentoo
1 commit: 003c43c798b4531fad5fb67ebcf18a422da5394b
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Nov 13 17:13:41 2019 +0000
4 Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 13 21:25:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=003c43c7
7
8 mail-client/thunderbird: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/13633
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Jory Pratt <anarchy <AT> gentoo.org>
13
14 .../mozilla-bug1554949-linux-headers-5.2.patch | 46 ----------------------
15 1 file changed, 46 deletions(-)
16
17 diff --git a/mail-client/thunderbird/files/mozilla-bug1554949-linux-headers-5.2.patch b/mail-client/thunderbird/files/mozilla-bug1554949-linux-headers-5.2.patch
18 deleted file mode 100644
19 index 2de12500394..00000000000
20 --- a/mail-client/thunderbird/files/mozilla-bug1554949-linux-headers-5.2.patch
21 +++ /dev/null
22 @@ -1,46 +0,0 @@
23 -# HG changeset patch
24 -# User Emilio Cobos Álvarez <emilio@××××××.io>
25 -# Date 1559048542 0
26 -# Node ID 03fe96d5969ac6885ca539bf7759780ed75a1375
27 -# Parent e6cf9d0df0793e7f76cb2877989fc5aeca98e530
28 -Bug 1554949 - Fix WebRTC build failure with newer linux kernel. r=dminor, a=RyanVM DONTBUILD
29 -
30 -Recent kernel commit[1] moved a bit the define for this constant. This revealed
31 -a missing include in WebRTC.
32 -
33 -I filed this upstream in:
34 -
35 - * https://bugs.chromium.org/p/webrtc/issues/detail?id=10677
36 -
37 -And sent a patch in:
38 -
39 - * https://webrtc-review.googlesource.com/c/src/+/138270
40 -
41 -[1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=0768e17073dc5
42 -
43 -Differential Revision: https://phabricator.services.mozilla.com/D32809
44 -
45 -diff --git a/media/webrtc/trunk/webrtc/rtc_base/physicalsocketserver.cc b/media/webrtc/trunk/webrtc/rtc_base/physicalsocketserver.cc
46 ---- a/media/webrtc/trunk/webrtc/rtc_base/physicalsocketserver.cc
47 -+++ b/media/webrtc/trunk/webrtc/rtc_base/physicalsocketserver.cc
48 -@@ -56,16 +56,19 @@
49 - #if defined(WEBRTC_POSIX)
50 - #include <netinet/tcp.h> // for TCP_NODELAY
51 - #define IP_MTU 14 // Until this is integrated from linux/in.h to netinet/in.h
52 - typedef void* SockOptArg;
53 -
54 - #endif // WEBRTC_POSIX
55 -
56 - #if defined(WEBRTC_POSIX) && !defined(WEBRTC_MAC) && !defined(WEBRTC_BSD) && !defined(__native_client__)
57 -+#if defined(WEBRTC_LINUX)
58 -+#include <linux/sockios.h>
59 -+#endif
60 -
61 - int64_t GetSocketRecvTimestamp(int socket) {
62 - struct timeval tv_ioctl;
63 - int ret = ioctl(socket, SIOCGSTAMP, &tv_ioctl);
64 - if (ret != 0)
65 - return -1;
66 - int64_t timestamp =
67 - rtc::kNumMicrosecsPerSec * static_cast<int64_t>(tv_ioctl.tv_sec) +
68 -