Thu Sep 6 19:07:12 2018 UTC ()
swi-prolog-lite: Avoid to hardcode 64bit platforms, use LP64PLATFORMS and ABI

Instead of hardcoding the check of 64bit platforms just reuse LP64PLATFORMS and
ABI (shamelessy stolen from lang/python27/Makefile).

This fixes the build of swi-prolog-lite on aarch64 and probably
other 64bit platforms too previously not listed.


(leot)
diff -r1.26 -r1.27 pkgsrc/lang/swi-prolog-lite/Makefile

cvs diff -r1.26 -r1.27 pkgsrc/lang/swi-prolog-lite/Makefile (expand / switch to context diff)
--- pkgsrc/lang/swi-prolog-lite/Makefile 2018/04/17 20:57:19 1.26
+++ pkgsrc/lang/swi-prolog-lite/Makefile 2018/09/06 19:07:12 1.27
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2018/04/17 20:57:19 leot Exp $
+# $NetBSD: Makefile,v 1.27 2018/09/06 19:07:12 leot Exp $
 
 PKGREVISION= 2
 .include "Makefile.common"
@@ -17,8 +17,8 @@
 
 .include "../../mk/bsd.prefs.mk"
 
-.if ${MACHINE_ARCH} == alpha || ${MACHINE_ARCH} == sparc64 || \
-	${MACHINE_ARCH} == x86_64
+.if !empty(LP64PLATFORMS:@.PLAT.@${MACHINE_PLATFORM:M${.PLAT.}}@) || \
+    (defined(ABI) && ${ABI} == "64")
 PLIST_SUBST+=		BITS=64
 .else
 PLIST_SUBST+=		BITS=32