aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ports/glutin/window.rs1
-rwxr-xr-xsupport/android/openssl.sh9
2 files changed, 7 insertions, 3 deletions
diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs
index ea0e80cbfe9..5466ef14ec3 100644
--- a/ports/glutin/window.rs
+++ b/ports/glutin/window.rs
@@ -33,6 +33,7 @@ use util::cursor::Cursor;
use std::ptr;
struct HeadlessContext {
+ #[allow(dead_code)]
context: glutin::HeadlessContext,
size: TypedSize2D<DevicePixel, uint>,
}
diff --git a/support/android/openssl.sh b/support/android/openssl.sh
index f49fa467d31..671e399e00e 100755
--- a/support/android/openssl.sh
+++ b/support/android/openssl.sh
@@ -183,6 +183,9 @@ fi
cd openssl-1.0.1k
perl -pi -e 's/install: all install_docs install_sw/install: install_docs install_sw/g' Makefile.org
-./config shared -no-ssl2 -no-ssl3 -no-comp -no-hw -no-engine --openssldir=/usr/local/ssl/$ANDROID_API
-make depend
-make all
+
+# The code being built isn't maintained by us, so we redirect stderr to stdout
+# so that the warnings don't clutter up buildbot
+./config shared -no-ssl2 -no-ssl3 -no-comp -no-hw -no-engine --openssldir=/usr/local/ssl/$ANDROID_API 2>&1
+make depend 2>&1
+make all 2>&1