Notable changes: - Build regression fixes for various platform updates (https://github.com/libuv/libuv/pull/3428, https://github.com/libuv/libuv/pull/3419, https://github.com/libuv/libuv/pull/3423, https://github.com/libuv/libuv/pull/3413, https://github.com/libuv/libuv/pull/3431) - Support for GNU/Hurd (https://github.com/libuv/libuv/pull/3450) - Release tool improvements (https://github.com/libuv/libuv-release-tool/pull/13) - Better performing rw locks on Win32 (https://github.com/libuv/libuv/pull/3383) - Support for posix_spawn API (https://github.com/libuv/libuv/pull/3257) - Fix regression on OpenBSD (https://github.com/libuv/libuv/pull/3506) - Add uv_available_parallelism() (https://github.com/libuv/libuv/pull/3499) - Don't use thread-unsafe strtok() (https://github.com/libuv/libuv/pull/3524) - Fix hang after NOTE_EXIT (https://github.com/libuv/libuv/pull/3521) - Better align order-of-events behavior between platforms (https://github.com/libuv/libuv/pull/3598) - Fix fs event not fired if the watched file is moved/removed/recreated (https://github.com/libuv/libuv/pull/3540) - Fix pipe resource leak if closed during connect (and other bugs) (https://github.com/libuv/libuv/pull/3611) - Don't error when killing a zombie process (https://github.com/libuv/libuv/pull/3625) - Avoid posix_spawnp() cwd bug (https://github.com/libuv/libuv/pull/3597) - Skip EVFILT_PROC events when invalidating events for an fd (https://github.com/libuv/libuv/pull/3629) Fixes: https://github.com/nodejs/node/issues/42290 PR-URL: https://github.com/nodejs/node/pull/42340 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
75 lines
2.4 KiB
Bash
Executable file
75 lines
2.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl>
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
set -eu
|
|
cd `dirname "$0"`
|
|
|
|
if [ "${1:-dev}" == "release" ]; then
|
|
export LIBUV_RELEASE=true
|
|
else
|
|
export LIBUV_RELEASE=false
|
|
fi
|
|
|
|
if [ "${LIBTOOLIZE:-}" = "" ] && [ "`uname`" = "Darwin" ]; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
|
|
ACLOCAL=${ACLOCAL:-aclocal}
|
|
AUTOCONF=${AUTOCONF:-autoconf}
|
|
AUTOMAKE=${AUTOMAKE:-automake}
|
|
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
|
|
|
|
aclocal_version=`"$ACLOCAL" --version | head -n 1 | sed 's/[^.0-9]//g'`
|
|
autoconf_version=`"$AUTOCONF" --version | head -n 1 | sed 's/[^.0-9]//g'`
|
|
automake_version=`"$AUTOMAKE" --version | head -n 1 | sed 's/[^.0-9]//g'`
|
|
automake_version_major=`echo "$automake_version" | cut -d. -f1`
|
|
automake_version_minor=`echo "$automake_version" | cut -d. -f2`
|
|
libtoolize_version=`"$LIBTOOLIZE" --version | head -n 1 | sed 's/[^.0-9]//g'`
|
|
|
|
if [ $aclocal_version != $automake_version ]; then
|
|
echo "FATAL: aclocal version appears not to be from the same as automake"
|
|
exit 1
|
|
fi
|
|
|
|
UV_EXTRA_AUTOMAKE_FLAGS=
|
|
if test "$automake_version_major" -gt 1 || \
|
|
test "$automake_version_major" -eq 1 && \
|
|
test "$automake_version_minor" -gt 11; then
|
|
# serial-tests is available in v1.12 and newer.
|
|
UV_EXTRA_AUTOMAKE_FLAGS="$UV_EXTRA_AUTOMAKE_FLAGS serial-tests"
|
|
fi
|
|
echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [$UV_EXTRA_AUTOMAKE_FLAGS])" \
|
|
> m4/libuv-extra-automake-flags.m4
|
|
|
|
(set -x
|
|
"$LIBTOOLIZE" --copy --force
|
|
"$ACLOCAL" -I m4
|
|
)
|
|
if $LIBUV_RELEASE; then
|
|
"$AUTOCONF" -o /dev/null m4/libuv-check-versions.m4
|
|
echo "
|
|
AC_PREREQ($autoconf_version)
|
|
AC_INIT([libuv-release-check], [0.0])
|
|
AM_INIT_AUTOMAKE([$automake_version])
|
|
LT_PREREQ($libtoolize_version)
|
|
AC_OUTPUT
|
|
" > m4/libuv-check-versions.m4
|
|
fi
|
|
(
|
|
set -x
|
|
"$AUTOCONF"
|
|
"$AUTOMAKE" --add-missing --copy
|
|
)
|