Remove glut port now that android glutin has landed.

This commit is contained in:
Glenn Watson 2014-12-12 11:04:44 +10:00
parent 15187cb451
commit 76c18473b1
26 changed files with 1 additions and 3000 deletions

View file

@ -103,7 +103,7 @@ fn redirect_output(file_no: c_int) {
#[cfg(target_os="android")]
fn setup_logging() {
use libc::consts::os::posix88::{STDERR_FILENO, STDOUT_FILENO};
//os::setenv("RUST_LOG", "servo,gfx,msg,util,layers,js,glut,std,rt,extra");
//os::setenv("RUST_LOG", "servo,gfx,msg,util,layers,js,std,rt,extra");
redirect_output(STDERR_FILENO);
redirect_output(STDOUT_FILENO);
}