File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o p
99# Build configuration environment variables:
1010#
1111# CW_BLD
12- # List of components to build. E.g. 'curl' or 'zlib libssh2 curl' or 'none'.
12+ # List of components to build. E.g. 'curl' or 'zlibng libssh2 curl' or 'none'.
1313# Optional. Default: (all)
1414#
1515# CW_GET
16- # List of components to (re-)download. E.g. 'zlib curl' or 'none'.
16+ # List of components to (re-)download. E.g. 'zlibng curl' or 'none'.
1717# Optional. Default: (all)
1818#
1919# CW_NOGET
@@ -38,7 +38,7 @@ set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o p
3838# nobrotli build without brotli
3939# nozstd build without zstd
4040# nozlib build without zlib
41- # zlibng build with zlib-ng instead of zlib
41+ # zlibold build with zlib (classic) instead of zlib-ng
4242# nocares build without c-ares
4343# noftp build without FTP/FTPS support
4444# nohttp build without HTTP and proxy support
Original file line number Diff line number Diff line change 657657export _DEPS=' curl'
658658
659659if [[ ! " ${_CONFIG} " =~ (zero| nozlib) ]]; then
660- if [[ " ${_CONFIG} " = * ' zlibng' * ]]; then
661- _DEPS+=' zlibng'
662- else
660+ if [[ " ${_CONFIG} " = * ' zlibold' * ]]; then
663661 _DEPS+=' zlibold'
662+ else
663+ _DEPS+=' zlibng'
664664 fi
665665fi
666666
You can’t perform that action at this time.
0 commit comments