Skip to content

Commit a5d3357

Browse files
author
bors-servo
authored
Auto merge of #21367 - servo:rustup, r=mbrubeck
Work around a rustc regression in macro name resolution rust-lang/rust#53205 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21367) <!-- Reviewable:end -->
2 parents 2fc0633 + b6b925e commit a5d3357

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

ports/servo/main.rs

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
1818
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
1919

20+
// Have this here rather than in non_android_main.rs to work around
21+
// https://github.com/rust-lang/rust/issues/53205
22+
#[cfg(not(target_os = "android"))] #[macro_use] extern crate log;
23+
2024
#[cfg(not(target_os = "android"))] include!("non_android_main.rs");
2125

2226
#[cfg(target_os = "android")]

ports/servo/non_android_main.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ extern crate euclid;
88
extern crate gleam;
99
extern crate glutin;
1010
#[macro_use] extern crate lazy_static;
11-
// The window backed by glutin
12-
#[macro_use] extern crate log;
1311
#[cfg(any(target_os = "linux", target_os = "macos"))] extern crate osmesa_sys;
1412
extern crate servo;
1513
#[cfg(feature = "unstable")]
@@ -21,9 +19,13 @@ extern crate winit;
2119
#[cfg(target_os = "windows")] extern crate winapi;
2220
#[cfg(target_os = "windows")] extern crate user32;
2321

22+
// The window backed by glutin
2423
mod glutin_app;
24+
2525
mod resources;
2626

27+
mod browser;
28+
2729
use backtrace::Backtrace;
2830
use servo::Servo;
2931
use servo::compositing::windowing::WindowEvent;
@@ -37,8 +39,6 @@ use std::panic;
3739
use std::process;
3840
use std::thread;
3941

40-
mod browser;
41-
4242
pub mod platform {
4343
#[cfg(target_os = "macos")]
4444
pub use platform::macos::deinit;

0 commit comments

Comments
 (0)