Skip to content

Commit 2d3411d

Browse files
Update for logging moving to liblog
See rust-lang/rust#12791
1 parent c123d61 commit 2d3411d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pkg.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
// option. This file may not be copied, modified, or distributed
77
// except according to those terms.
88
#[allow(unused_must_use)];
9+
#[feature(phase)];
910

11+
#[phase(syntax, link)] extern crate log;
1012
extern crate rustc;
1113

1214
use rustc::driver::driver::host_triple;

src/pcre/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88

99
#[crate_id = "pcre#0.1"];
1010
#[crate_type = "lib"];
11+
#[feature(phase)];
1112

1213
extern crate collections;
14+
#[phase(syntax, link)] extern crate log;
1315

1416
use collections::treemap::{TreeMap};
1517
use collections::enum_set::{CLike, EnumSet};

0 commit comments

Comments
 (0)