From 5fb88cfb0a16ceb873d41560ccd8fd863ced9279 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 23 Mar 2019 19:54:41 +0100 Subject: [PATCH] firefox-esr: fix build with rust 1.33 [ci skip] --- srcpkgs/firefox-esr/patches/rust133.patch | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/firefox-esr/patches/rust133.patch diff --git a/srcpkgs/firefox-esr/patches/rust133.patch b/srcpkgs/firefox-esr/patches/rust133.patch new file mode 100644 index 0000000000..ebdcac7e3a --- /dev/null +++ b/srcpkgs/firefox-esr/patches/rust133.patch @@ -0,0 +1,24 @@ +This fixes build errors under recent Rust. + +--- servo/components/style_traits/lib.rs ++++ servo/components/style_traits/lib.rs +@@ -9,7 +9,7 @@ + #![crate_name = "style_traits"] + #![crate_type = "rlib"] + +-#![deny(unsafe_code, missing_docs)] ++#![deny(unsafe_code)] + + extern crate app_units; + #[macro_use] extern crate bitflags; +--- servo/components/style/lib.rs ++++ servo/components/style/lib.rs +@@ -23,8 +23,6 @@ + //! [cssparser]: ../cssparser/index.html + //! [selectors]: ../selectors/index.html + +-#![deny(missing_docs)] +- + extern crate app_units; + extern crate arrayvec; + extern crate atomic_refcell;