summaryrefslogtreecommitdiffstats
path: root/source/xap/seamonkey/seamonkey.nsstring.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-05-03 06:47:41 +0000
committer Eric Hameleers <alien@slackware.com>2020-05-03 17:59:53 +0200
commitdf4c9b091989c5fbea58f5b42abbb5e6c545a931 (patch)
tree59337ea7d5df4f2ede731af6f97d535b699ca1a3 /source/xap/seamonkey/seamonkey.nsstring.patch
parent5d2f3453069f478671957b6476e301229df533fa (diff)
downloadcurrent-df4c9b091989c5fbea58f5b42abbb5e6c545a931.tar.gz
current-df4c9b091989c5fbea58f5b42abbb5e6c545a931.tar.xz
Sun May 3 06:47:41 UTC 202020200503064741
a/kernel-generic-5.4.38-x86_64-1.txz: Upgraded. a/kernel-huge-5.4.38-x86_64-1.txz: Upgraded. a/kernel-modules-5.4.38-x86_64-1.txz: Upgraded. d/kernel-headers-5.4.38-x86-1.txz: Upgraded. d/mercurial-5.4-x86_64-1.txz: Upgraded. k/kernel-source-5.4.38-noarch-1.txz: Upgraded. l/mozilla-nss-3.52-x86_64-1.txz: Upgraded. l/python-distro-1.5.0-x86_64-1.txz: Upgraded. l/python-pillow-7.1.2-x86_64-1.txz: Upgraded. l/v4l-utils-1.18.1-x86_64-1.txz: Upgraded. xap/seamonkey-2.53.2-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.2 (* Security fix *) isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/xap/seamonkey/seamonkey.nsstring.patch')
-rw-r--r--source/xap/seamonkey/seamonkey.nsstring.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/source/xap/seamonkey/seamonkey.nsstring.patch b/source/xap/seamonkey/seamonkey.nsstring.patch
deleted file mode 100644
index 83f5dd87e..000000000
--- a/source/xap/seamonkey/seamonkey.nsstring.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-# rust-1.39 deprecated the "try!" call in favor of "?" which then breaks
-# nsstring because it treats warnings as errors.
-
-diff -Nrup -U 8 mozilla/xpcom/rust/nsstring/src/lib.rs mozilla-OK/xpcom/rust/nsstring/src/lib.rs
---- mozilla/xpcom/rust/nsstring/src/lib.rs 2020-02-25 03:10:53.802918476 +0300
-+++ mozilla-OK/xpcom/rust/nsstring/src/lib.rs 2020-02-25 00:30:21.593463335 +0300
-@@ -108,17 +108,16 @@
- //! similar to an `ns[C]String<'static>`, however, it does not have a `Drop`
- //! implementation.
- //!
- //! If this type is dropped in rust, it will not free its backing storage. This
- //! can be useful when implementing FFI types which contain `ns[C]String` members
- //! which invoke their member's destructors through C++ code.
-
- #![allow(non_camel_case_types)]
--#![deny(warnings)]
-
- #[macro_use]
- extern crate bitflags;
-
- use std::ops::{Deref, DerefMut};
- use std::marker::PhantomData;
- use std::borrow;
- use std::slice;