mirror of
https://github.com/servo/servo.git
synced 2025-08-08 06:55:31 +01:00
Use mach to build openssl on android instead of glut makefile.
The glut makefile will be removed shortly after glutin lands for android, so we need to build openssl for android elsewhere in the build process.
This commit is contained in:
parent
feabaf34ac
commit
030dab553e
6 changed files with 32 additions and 16 deletions
13
support/android/openssl.makefile
Normal file
13
support/android/openssl.makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
.PHONY: all
|
||||
all: openssl
|
||||
|
||||
# From http://wiki.openssl.org/index.php/Android
|
||||
.PHONY: openssl
|
||||
openssl: openssl-1.0.1j/libssl.so
|
||||
|
||||
openssl-1.0.1j/libssl.so: openssl-1.0.1j/Configure
|
||||
./openssl.sh ${ANDROID_NDK}
|
||||
|
||||
openssl-1.0.1j/Configure:
|
||||
wget https://www.openssl.org/source/openssl-1.0.1j.tar.gz
|
||||
tar -zxf openssl-1.0.1j.tar.gz
|
Loading…
Add table
Add a link
Reference in a new issue