mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 23:53:51 +02:00
qt5-webkit: Fix building on ppc
This commit is contained in:
parent
5858f2aa1e
commit
1f993635e2
1 changed files with 6 additions and 1 deletions
|
@ -34,9 +34,14 @@ case "$XBPS_TARGET_MACHINE" in
|
||||||
ppc64*) # no JIT on ppc64 and other build workarounds
|
ppc64*) # no JIT on ppc64 and other build workarounds
|
||||||
configure_args+=" -DENABLE_JIT=OFF -DUSE_SYSTEM_MALLOC=ON"
|
configure_args+=" -DENABLE_JIT=OFF -DUSE_SYSTEM_MALLOC=ON"
|
||||||
;;
|
;;
|
||||||
i686*) # try to reduce memory footprint when linking
|
i686*) # try to reduce memory footprint when linking
|
||||||
nodebug=1
|
nodebug=1
|
||||||
;;
|
;;
|
||||||
|
ppc*) # no JIT on ppc and need libatomic
|
||||||
|
configure_args+=" -DENABLE_JIT=OFF -DUSE_SYSTEM_MALLOC=ON"
|
||||||
|
makedepends+=" libatomic-devel"
|
||||||
|
LIBS+=" -latomic"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue