From a40d377403419ff318f58b15406f6e85ed91b2e5 Mon Sep 17 00:00:00 2001 From: Robert Clausecker Date: Sat, 11 Sep 2021 23:53:39 +0200 Subject: [PATCH] games/freecell-solver: unbreak on 32 bit platforms --- games/freecell-solver/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/games/freecell-solver/Makefile b/games/freecell-solver/Makefile index 69e32a071efa..de3c36306ad2 100644 --- a/games/freecell-solver/Makefile +++ b/games/freecell-solver/Makefile @@ -23,7 +23,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}random2>=1.0.1:math/py-random2@${PY_FLAVOR} ${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pysol-cards>=0.10.0:games/py-pysol-cards@${PY_FLAVOR} LIB_DEPENDS= ${LIB_DEPENDS_${ARCH}} +LIB_DEPENDS_armv6= libgmp.so:math/gmp +LIB_DEPENDS_armv7= libgmp.so:math/gmp LIB_DEPENDS_i386= libgmp.so:math/gmp +LIB_DEPENDS_mips= libgmp.so:math/gmp +LIB_DEPENDS_powerpc= libgmp.so:math/gmp OPTIONS_DEFINE= DOCS TCMALLOC TCMALLOC_DESC= Use Google's TCMalloc -- 2.32.0