diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-06-21 15:02:01 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-06-21 15:02:01 +0000 |
commit | b78b5c7c8606bc3aec059388d2102c52c7649390 (patch) | |
tree | ca6015345a49e2dcaf36207daec9d56d8b7c0c1c /community/webkit2gtk | |
parent | 8662f54966f0390eb4dc35f2610f0a463de0152b (diff) | |
download | aports-b78b5c7c8606bc3aec059388d2102c52c7649390.tar.bz2 aports-b78b5c7c8606bc3aec059388d2102c52c7649390.tar.xz |
community/webkit2gtk: try to enable building on armhf
Diffstat (limited to 'community/webkit2gtk')
-rw-r--r-- | community/webkit2gtk/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/webkit2gtk/APKBUILD b/community/webkit2gtk/APKBUILD index 8fa2a90b70..ca96422cc4 100644 --- a/community/webkit2gtk/APKBUILD +++ b/community/webkit2gtk/APKBUILD @@ -6,7 +6,7 @@ pkgver=2.16.3 pkgrel=0 pkgdesc="portable web rendering engine WebKit for GTK+" url="http://webkitgtk.org/" -arch="x86 x86_64 ppc64le aarch64" +arch="x86 x86_64 ppc64le aarch64 armhf" license="LGPL2+ BSD" makedepends="$depends_dev bison @@ -69,6 +69,7 @@ prepare() { build() { local _jitopt= case "$CARCH" in + armhf) _archopt="-DUSE_LD_GOLD=OFF";; aarch64) _archopt="-DUSE_LD_GOLD=OFF";; ppc64le) _archopt="-DENABLE_JIT=OFF -DUSE_SYSMTE_MALLOC=ON";; s390x) _archopt="-DUSE_LD_GOLD=OFF -DENABLE_JIT=OFF -DUSE_SYSMEM_MALLOC=ON";; |