From aaae843b2e1a3cc5471d29214c451e9abad86f1f Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 27 Jan 2019 04:20:14 +0100 Subject: [PATCH] newlisp: define NEWLISP64 on aarch64 and ppc64 Without this, a lot of incorrect code will be chosen. --- srcpkgs/newlisp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/newlisp/template b/srcpkgs/newlisp/template index 7849a88a82c..9de4722aa86 100644 --- a/srcpkgs/newlisp/template +++ b/srcpkgs/newlisp/template @@ -1,7 +1,7 @@ # Template file for 'newlisp' pkgname=newlisp version=10.7.1 -revision=3 +revision=4 makedepends="readline-devel libffi-devel" short_desc="Lisp-like, general-purpose scripting language" maintainer="Juan RP " @@ -12,7 +12,7 @@ checksum=2e300c8bed365a564d284bf3ad6c49e036256e7fc3f469ebda0b45e6e196a7cc do_build() { case "$XBPS_TARGET_MACHINE" in - x86_64*) export CFLAGS+=" -DNEWLISP64";; + x86_64*|aarch64*|ppc64*) export CFLAGS+=" -DNEWLISP64";; esac make -f makefile_linuxLP64_utf8_ffi ${makejobs}