gauche: Disable threads

with which the following code hangs:

```
(use rfc.uri)
(uri-decode-string "")
```
This commit is contained in:
Tee KOBAYASHI 2021-12-21 09:08:00 +09:00 committed by Leonid Pliushch
parent 4c31e6792b
commit 508f707116
1 changed files with 6 additions and 0 deletions

View File

@ -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