From b50bc759d9f8a8287586c7e38e1db406e0557c48 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 6 Feb 2021 14:15:20 +0100 Subject: [PATCH] libgcrypt: disable ppc crypto on ppcle as it fails to build --- srcpkgs/libgcrypt/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/libgcrypt/template b/srcpkgs/libgcrypt/template index de41e5db73d..9426d1e9825 100644 --- a/srcpkgs/libgcrypt/template +++ b/srcpkgs/libgcrypt/template @@ -16,6 +16,10 @@ if [ "$CROSS_BUILD" ]; then configure_args+=" ac_cv_sys_symbol_underscore=no" fi +case "$XBPS_TARGET_MACHINE" in + ppcle*) configure_args+=" --disable-ppc-crypto-support";; +esac + post_configure() { case "$XBPS_TARGET_MACHINE" in armv[5-6]*)