Version 1.41.0 (Stable) Changes since version 1.40.0: * mailmap: update contact information for richardlau (Richard Lau) * build: add asan checks (gengjiawen) * unix: report bind error in uv_tcp_connect() (Ben Noordhuis) * doc: uv_tcp_bind() never returns UV_EADDRINUSE (Ben Noordhuis) * test: fix pump and tcp_write_batch benchmarks (Santiago Gimeno) * doc: mark IBM i as Tier 2 support (Jesse Gorzinski) * doc,poll: add notes (repeated cb & cancel pending cb) (Elad Nachmias) * linux: fix -Wincompatible-pointer-types warning (Ben Noordhuis) * linux: fix -Wsign-compare warning (Ben Noordhuis) * android: add system call api guards (Ben Noordhuis) * unix,win: harmonize uv_read_start() error handling (Ben Noordhuis) * unix,win: more uv_read_start() argument validation (Ben Noordhuis) * build: turn on -fno-strict-aliasing (Ben Noordhuis) * stream: add uv_pipe and uv_socketpair to the API (Jameson Nash) * unix,win: initialize timer `timeout` field (Ben Noordhuis) * bsd-ifaddrs: improve comments (Darshan Sen) * test: remove unnecessary uv_fs_stat() calls (Ben Noordhuis) * fs: fix utime/futime timestamp rounding errors (Ben Noordhuis) * test: ensure reliable floating point comparison (Jameson Nash) * unix,fs: fix uv_fs_sendfile() (Santiago Gimeno) * unix: fix uv_fs_stat when using statx (Simon Kadisch) * linux,macos: fix uv_set_process_title regression (Momtchil Momtchev) * doc: clarify UDP errors and recvmmsg (Ethel Weston) * test-getaddrinfo: use example.invalid (Drew DeVault) * Revert "build: fix android autotools build" (Bernardo Ramos) * unix,fs: on DVS fs, statx returns EOPNOTSUPP (Mark Klein) * win, fs: mkdir really return UV_EINVAL for invalid names (Nicholas Vavilov) * tools: migrate tools/make_dist_html.py to python3 (Dominique Dumont) * unix: fix uv_uptime() on linux (schamberg97) * unix: check for partial copy_file_range support (Momtchil Momtchev) * win: bump minimum supported version to windows 8 (Ben Noordhuis) * poll,unix: ensure safety of rapid fd reuse (Bob Weinand) * test: fix some warnings (Issam E. Maghni) * unix: fix uv_uptime() regression (Santiago Gimeno) * doc: fix versionadded metadata (cjihrig) * test: fix 'incompatible pointer types' warnings (cjihrig) * unix: check for EXDEV in uv__fs_sendfile()
38 lines
995 B
Makefile
38 lines
995 B
Makefile
# $NetBSD: Makefile,v 1.66 2021/02/14 15:00:59 adam Exp $
|
|
|
|
DISTNAME= libuv-1.41.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=libuv/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= agc@pkgsrc.org
|
|
HOMEPAGE= https://github.com/libuv/libuv
|
|
COMMENT= Cross-platform asychronous I/O
|
|
LICENSE= mit AND 2-clause-bsd AND isc AND modified-bsd
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= autoconf automake pkg-config
|
|
USE_FEATURES+= strnlen
|
|
GNU_CONFIGURE= yes
|
|
# 3 test failures as of 1.31.0
|
|
# https://github.com/libuv/libuv/issues/2437
|
|
# connect_unspecified, tcp_open, udp_open
|
|
TEST_TARGET= check
|
|
|
|
INSTALLATION_DIRS+= include/uv
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MSunOS-5.[0-9]-*) || \
|
|
!empty(MACHINE_PLATFORM:MSunOS-5.10-*)
|
|
CFLAGS+= -DSUNOS_NO_IFADDRS
|
|
.endif
|
|
|
|
pre-configure:
|
|
${RUN} cd ${WRKSRC} && ${SH} ./autogen.sh
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/include/uv/* ${DESTDIR}${PREFIX}/include/uv/
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|