diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-07-08 08:13:29 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-07-08 08:14:39 +0000 |
commit | 896f06e3b0b07200957d0389e2156d0ee4e099cb (patch) | |
tree | 873791b0af71f467f0fe84f3ce467348f36043cb /main | |
parent | f483f49692b97950b680d987fe31f8ddb9277842 (diff) | |
download | aports-896f06e3b0b07200957d0389e2156d0ee4e099cb.tar.bz2 aports-896f06e3b0b07200957d0389e2156d0ee4e099cb.tar.xz |
main/openssl: add aarch64 support
Diffstat (limited to 'main')
-rw-r--r-- | main/openssl/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/openssl/APKBUILD b/main/openssl/APKBUILD index 4a33d1b46b..90e8986b91 100644 --- a/main/openssl/APKBUILD +++ b/main/openssl/APKBUILD @@ -59,9 +59,10 @@ build() { # determine target OS for openssl case "$CARCH" in + aarch64*) _target="linux-aarch64" ;; + arm*) _target="linux-armv4" ;; x86) _target="linux-elf" ;; x86_64) _target="linux-x86_64"; _optflags="enable-ec_nistp_64_gcc_128" ;; - arm*) _target="linux-armv4" ;; *) msg "Unable to determine architecture from (CARCH=$CARCH)" ; return 1 ;; esac |