From 508f707116fdfc78c54ff693af3f01ee25519564 Mon Sep 17 00:00:00 2001 From: Tee KOBAYASHI Date: Tue, 21 Dec 2021 09:08:00 +0900 Subject: [PATCH] gauche: Disable threads with which the following code hangs: ``` (use rfc.uri) (uri-decode-string "") ``` --- packages/gauche/build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/gauche/build.sh b/packages/gauche/build.sh index d1d75c4876..03aad0289b 100644 --- a/packages/gauche/build.sh +++ b/packages/gauche/build.sh @@ -15,6 +15,12 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" " # 0.9.10 does not support MbedTLS 3.0: remove --with-tls=... when updating TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-tls=axtls" +# As of 0.9.10 some code hangs with threads enabled, e.g. +# ``` +# (use rfc.uri) +# (uri-decode-string "") +# ``` +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --enable-threads=none" termux_step_host_build() { _PREFIX_FOR_BUILD=$TERMUX_PKG_HOSTBUILD_DIR/prefix