pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/swi-prolog-lite
Module Name: pkgsrc
Committed By: leot
Date: Thu Sep 6 19:07:12 UTC 2018
Modified Files:
pkgsrc/lang/swi-prolog-lite: Makefile
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/lang/swi-prolog-lite/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/swi-prolog-lite/Makefile
diff -u pkgsrc/lang/swi-prolog-lite/Makefile:1.26 pkgsrc/lang/swi-prolog-lite/Makefile:1.27
--- pkgsrc/lang/swi-prolog-lite/Makefile:1.26 Tue Apr 17 20:57:19 2018
+++ pkgsrc/lang/swi-prolog-lite/Makefile Thu Sep 6 19:07:12 2018
@@ -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 @@ USE_TOOLS+= gmake bash:run
.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
Home |
Main Index |
Thread Index |
Old Index