Skip to content

Commit

Permalink
enable libidn2 for non-Windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Aug 29, 2023
1 parent 7eee492 commit 4c9ac3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o p
# wolfssl build with wolfSSL (caveats!)
# wolfssh build with wolfSSH (requires wolfSSL)
# libssh build with libssh
# big build with more features, see README.md
# big build with libidn2, see README.md (for win target)
# mini build with less features, see README.md
# micro build with less features, see README.md
# nano build with less features, see README.md
Expand Down
3 changes: 2 additions & 1 deletion _dl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,8 @@ if [ "${_BRANCH#*pico*}" = "${_BRANCH}" ] && \
fi
fi

if [ "${_BRANCH#*big*}" != "${_BRANCH}" ]; then
if [ "${_OS}" != 'win' ] || \
[ "${_BRANCH#*big*}" != "${_BRANCH}" ]; then
live_dl libidn2 "${LIBIDN2_VER_}"
live_xt libidn2 "${LIBIDN2_HASH}"

Expand Down

0 comments on commit 4c9ac3b

Please sign in to comment.