diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-01 14:04:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-01 14:05:24 +0000 |
commit | 9644c5782484a6288346a22e9eafa6d90e1be35e (patch) | |
tree | ba403686192747f629d8a9f30cf748851014ed8a /main/pixman/APKBUILD | |
parent | 057cf91cee455adeb3784126b4e28c6d67022555 (diff) | |
download | aports-9644c5782484a6288346a22e9eafa6d90e1be35e.tar.bz2 aports-9644c5782484a6288346a22e9eafa6d90e1be35e.tar.xz |
main/pixman: disable openmp
apparently this works around s390x (an possibly ppc64le?) testcase hang
Diffstat (limited to 'main/pixman/APKBUILD')
-rw-r--r-- | main/pixman/APKBUILD | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/main/pixman/APKBUILD b/main/pixman/APKBUILD index 693fbe1a30..6946fc19ad 100644 --- a/main/pixman/APKBUILD +++ b/main/pixman/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=pixman pkgver=0.34.0 -pkgrel=2 +pkgrel=3 pkgdesc="Pixman library" url="http://xorg.freedesktop.org" arch="all" @@ -13,11 +13,6 @@ source="http://www.x.org/releases/individual/lib/$pkgname-$pkgver.tar.bz2 stacksize-reduction.patch " -# FIXME: checks on s390x -case "$CARCH" in -s390x) options="$options !check";; -esac - builddir="$srcdir/$pkgname-$pkgver" build() { @@ -27,6 +22,7 @@ build() { --host=$CHOST \ --prefix=/usr \ --disable-static \ + --disable-openmp \ --disable-arm-iwmmxt make } |