diff options
author | Rene Ladan <rene@FreeBSD.org> | 2021-01-02 12:28:34 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2021-01-02 12:28:34 +0000 |
commit | 58083a596736902f0b7c0eaf4c9affda7d7edbb5 (patch) | |
tree | b79332244517c33996a0893e38498ffc48c36dda /www/iridium/files/extra-patch-clang | |
parent | multimedia/gtk-youtube-viewer: update 3.8.0 -> 3.8.1 (diff) |
Remove a few expired ports depending on Python 2.7:
2020-12-31 www/iridium: Uses Python 2.7 which is EOLed upstream
2020-12-31 editors/atom: Uses Python 2.7 which is EOLed upstream
2020-12-31 devel/electron4: Uses Python 2.7 which is EOLed upstream
2020-12-31 devel/electron5: Uses Python 2.7 which is EOLed upstream
2020-12-31 devel/electron6: Uses Python 2.7 which is EOLed upstream
Diffstat (limited to 'www/iridium/files/extra-patch-clang')
-rw-r--r-- | www/iridium/files/extra-patch-clang | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/www/iridium/files/extra-patch-clang b/www/iridium/files/extra-patch-clang deleted file mode 100644 index 887a416b5f2d..000000000000 --- a/www/iridium/files/extra-patch-clang +++ /dev/null @@ -1,40 +0,0 @@ ---- base/strings/safe_sprintf_unittest.cc.orig 2019-03-11 22:00:51 UTC -+++ base/strings/safe_sprintf_unittest.cc -@@ -730,6 +730,7 @@ TEST(SafeSPrintfTest, EmbeddedNul) { - } - - TEST(SafeSPrintfTest, EmitNULL) { -+/* Avoid compiler error: http://pastebin.com/1edWUE84 - char buf[40]; - #if defined(__GNUC__) - #pragma GCC diagnostic push -@@ -741,6 +742,7 @@ TEST(SafeSPrintfTest, EmitNULL) { - EXPECT_EQ("0x0", std::string(buf)); - EXPECT_EQ(6, SafeSPrintf(buf, "%s", NULL)); - EXPECT_EQ("<NULL>", std::string(buf)); -+*/ - #if defined(__GCC__) - #pragma GCC diagnostic pop - #endif ---- base/threading/thread_local_storage_unittest.cc.orig 2019-03-11 22:00:51 UTC -+++ base/threading/thread_local_storage_unittest.cc -@@ -86,7 +86,7 @@ class ThreadLocalStorageRunner : public DelegateSimple - void ThreadLocalStorageCleanup(void *value) { - int *ptr = reinterpret_cast<int*>(value); - // Destructors should never be called with a NULL. -- ASSERT_NE(reinterpret_cast<int*>(NULL), ptr); -+ ASSERT_NE(static_cast<int*>(NULL), ptr); - if (*ptr == kFinalTlsValue) - return; // We've been called enough times. - ASSERT_LT(kFinalTlsValue, *ptr); ---- media/audio/audio_output_proxy_unittest.cc.orig 2019-03-11 22:00:59 UTC -+++ media/audio/audio_output_proxy_unittest.cc -@@ -410,7 +410,7 @@ class AudioOutputProxyTest : public testing::Test { - // |stream| is closed at this point. Start() should reopen it again. - EXPECT_CALL(manager(), MakeAudioOutputStream(_, _, _)) - .Times(2) -- .WillRepeatedly(Return(reinterpret_cast<AudioOutputStream*>(NULL))); -+ .WillRepeatedly(Return(static_cast<AudioOutputStream*>(NULL))); - - EXPECT_CALL(callback_, OnError()).Times(2); - |