diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-06-11 17:46:25 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-06-11 17:46:25 +0200 |
commit | f4bfa2c0e9cbf54f9378cac213046615692dccc3 (patch) | |
tree | e5058610a60896295e47c9b05e3b6e6e351629a3 /testing/pacparser | |
parent | 939ac0d317501cd349c38a898a14a4863bdbe78e (diff) | |
download | aports-f4bfa2c0e9cbf54f9378cac213046615692dccc3.tar.bz2 aports-f4bfa2c0e9cbf54f9378cac213046615692dccc3.tar.xz |
testing/pacparser: do not build on x86
The same problem as on armhf: undefined reference to __va_copy.
Reported to upstream: https://github.com/pacparser/pacparser/issues/77
Diffstat (limited to 'testing/pacparser')
-rw-r--r-- | testing/pacparser/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/pacparser/APKBUILD b/testing/pacparser/APKBUILD index 49f29a2805..fdae587de2 100644 --- a/testing/pacparser/APKBUILD +++ b/testing/pacparser/APKBUILD @@ -2,10 +2,11 @@ # Maintainer: Aaron Hurt <ahurt@ena.com> pkgname=pacparser pkgver=1.3.6 -pkgrel=2 +pkgrel=3 pkgdesc="A library to parse proxy auto-config (PAC) files" url="http://pacparser.manugarg.com" -arch="x86 x86_64" +# x86, armhf: https://github.com/pacparser/pacparser/issues/77 +arch="x86_64" license="LGPL3+" depends="" makedepends="bash python-dev" |