thrift: use libatomic on ppc32
This commit is contained in:
parent
76cc17458b
commit
cbc25b0173
1 changed files with 14 additions and 0 deletions
|
@ -11,6 +11,20 @@ homepage="https://thrift.apache.org/"
|
|||
distfiles="http://www-us.apache.org/dist/thrift/${version}/thrift-${version}.tar.gz"
|
||||
checksum=7ad348b88033af46ce49148097afe354d513c1fca7c607b59c33ebb6064b5179
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
ppc64*) ;;
|
||||
ppc*) makedepends+=" libatomic-devel";;
|
||||
esac
|
||||
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
configure_args="--disable-tests --disable-tutorial"
|
||||
fi
|
||||
|
||||
post_configure() {
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
ppc64*) ;;
|
||||
ppc*)
|
||||
sed -i '/libthrift_la_LIBADD/s/$/ -latomic/' lib/cpp/Makefile
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue