pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/tcl
Module Name: pkgsrc
Committed By: jperkin
Date: Fri Jul 16 09:56:25 UTC 2021
Modified Files:
pkgsrc/lang/tcl: Makefile
Log Message:
tcl: Skip --enable-64bit on Darwin/aarch64.
Causes -arch x86_64 to be added to CFLAGS and then fails to link.
To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 pkgsrc/lang/tcl/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/tcl/Makefile
diff -u pkgsrc/lang/tcl/Makefile:1.115 pkgsrc/lang/tcl/Makefile:1.116
--- pkgsrc/lang/tcl/Makefile:1.115 Wed Apr 21 11:42:07 2021
+++ pkgsrc/lang/tcl/Makefile Fri Jul 16 09:56:25 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.115 2021/04/21 11:42:07 adam Exp $
+# $NetBSD: Makefile,v 1.116 2021/07/16 09:56:25 jperkin Exp $
DISTNAME= tcl${TCL_VERSION}-src
PKGNAME= tcl-${TCL_VERSION}
@@ -35,7 +35,7 @@ TEST_TARGET= test
.include "options.mk"
# This is needed for SGI and maybe sun (according to tcl developers)
-.if defined(ABI) && ${ABI} == "64"
+.if defined(ABI) && ${ABI} == "64" && empty(MACHINE_PLATFORM:MDarwin-*-aarch64)
CONFIGURE_ARGS+= --enable-64bit
.endif
Home |
Main Index |
Thread Index |
Old Index