diff --git a/Cargo.toml b/Cargo.toml index 5aa29c3..8050a0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,10 @@ features = ["xlib"] version = "1.1.1" features = ["xlib"] +[target.arm-unknown-linux-gnueabihf.dependencies.x11] +version = "1.1.1" +features = ["xlib"] + [target.i686-unknown-linux-gnu.dependencies.freetype] git = "https://github.com/servo/rust-freetype" @@ -32,6 +36,9 @@ git = "https://github.com/servo/rust-freetype" [target.arm-linux-androideabi.dependencies.freetype] git = "https://github.com/servo/rust-freetype" +[target.arm-unknown-linux-gnueabihf.dependencies.freetype] +git = "https://github.com/servo/rust-freetype" + [target.i686-unknown-linux-gnu.dependencies.freetype-sys] git = "https://github.com/servo/libfreetype2" @@ -41,6 +48,9 @@ git = "https://github.com/servo/libfreetype2" [target.arm-linux-androideabi.dependencies.freetype-sys] git = "https://github.com/servo/libfreetype2" +[target.arm-unknown-linux-gnueabihf.dependencies.freetype-sys] +git = "https://github.com/servo/libfreetype2" + [target.x86_64-apple-darwin.dependencies] core-foundation = "*" core-graphics = "*" @@ -50,3 +60,6 @@ git = "https://github.com/servo/core-text-rs" [target.arm-linux-androideabi.dependencies.egl] git = "https://github.com/servo/rust-egl" + +[target.arm-unknown-linux-gnueabihf.dependencies.egl] +git = "https://github.com/servo/rust-egl" diff --git a/makefile.cargo b/makefile.cargo index 4fac1ac..ee6b508 100644 --- a/makefile.cargo +++ b/makefile.cargo @@ -39,6 +39,7 @@ CXXFLAGS += \ -std=gnu++11 \ -fPIC \ -Ilibazure \ + -I/usr/include/freetype2 \ -DMOZ_GFX \ -DMOZ_WARN_UNUSED_RESULT="" \ $(NULL)