summaryrefslogtreecommitdiff
path: root/Build/source/m4
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-12 20:11:04 +0000
committerKarl Berry <karl@freefriends.org>2020-03-12 20:11:04 +0000
commite80aa3da60a566208de46fe70a6c8800ab0af7fc (patch)
tree445d42fb1cb8a834d27d45f8db9fc7f06144f4e1 /Build/source/m4
parent45660c4e98d81bf195433c8564d4f8cecb697e83 (diff)
disable jit by default on all powerpc
git-svn-id: svn://tug.org/texlive/trunk@54256 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/m4')
-rw-r--r--Build/source/m4/ChangeLog10
-rw-r--r--Build/source/m4/kpse-setup.m42
2 files changed, 11 insertions, 1 deletions
diff --git a/Build/source/m4/ChangeLog b/Build/source/m4/ChangeLog
index 6ac07da167f..33f5ac02f90 100644
--- a/Build/source/m4/ChangeLog
+++ b/Build/source/m4/ChangeLog
@@ -1,3 +1,13 @@
+2020-03-12 Karl Berry <karl@freefriends.org>
+
+ * kpse-setup.m4 (KPSE_SETUP): disable jit programs on any
+ powerpc-*, not just powerpc-darwin, since jit is also unavailable
+ on powerpc-linux (specifically powerpc64le-unknown-linux-gnu),
+ per Johannes Hielscher. Although apparently there are patches to
+ "floating around" to make jit work on powerpc, they are not in TL,
+ and let's await anyone who actually needs them before refining.
+ https://tug.org/pipermail/tlbuild/2020q1/004627.html (item 1).
+
2020-01-13 Karl Berry <karl@tug.org>
* kpse-setup.m4 (KPSE_SETUP): use AS_TR_SH on the argument when
diff --git a/Build/source/m4/kpse-setup.m4 b/Build/source/m4/kpse-setup.m4
index 85302003609..77d16104b23 100644
--- a/Build/source/m4/kpse-setup.m4
+++ b/Build/source/m4/kpse-setup.m4
@@ -88,7 +88,7 @@ AC_FOREACH([Kpse_Pkg], [luajittex luajithbtex mfluajit mfluajit-nowin], [dnl
AS_CASE([$enable_[]AS_TR_SH([Kpse_Pkg])],
[yes | no], [:],
[AS_CASE([$host],
- [alpha* | sparc* | x86_64-*-solaris* | powerpc-*-darwin* ],
+ [alpha* | sparc* | x86_64-*-solaris* | powerpc-* ],
[AC_MSG_NOTICE([$host -> `--disable-]Kpse_Pkg['])
ac_configure_args="$ac_configure_args '--disable-]Kpse_Pkg['"])])
])