mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-10 01:28:02 +00:00
We can move past 1.44.2 now because: * We no longer support compilers without C11 atomics. * We can restore support for Windows 7 and macOS 10.x ourselves, at least for the subset of libuv we need. On other platforms libuv no longer supports, users can build against an older external libuv.
30 lines
589 B
Bash
Executable File
30 lines
589 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
shopt -s dotglob
|
|
|
|
readonly name="libuv"
|
|
readonly ownership="libuv upstream <libuv@googlegroups.com>"
|
|
readonly subtree="Utilities/cmlibuv"
|
|
readonly repo="https://github.com/libuv/libuv.git"
|
|
readonly tag="v1.52.0"
|
|
readonly shortlog=false
|
|
readonly exact_tree_match=false
|
|
readonly paths="
|
|
LICENSE
|
|
include
|
|
src
|
|
"
|
|
|
|
extract_source () {
|
|
git_archive
|
|
pushd "${extractdir}/${name}-reduced"
|
|
echo "* -whitespace" > .gitattributes
|
|
echo >> src/unix/aix-common.c
|
|
echo >> src/unix/ibmi.c
|
|
popd
|
|
}
|
|
|
|
. "${BASH_SOURCE%/*}/update-third-party.bash"
|