1d8fa5525a
Version 1.24.0 * unix: do not require PATH_MAX to be defined * win,doc: path encoding in uv_fs_XX is UTF-8 * unix: add missing link dependency on kFreeBSD * unix: add support for GNU/Hurd * test: avoid memory leak for test_output * zos: avoid UB with NULL pointer arithmetic * doc: add vtjnash to maintainers * unix: restore skipping of phys_addr copy * unix,win: make uv_interface_addresses() consistent * unix: remove unnecessary linebreaks * unix,win: handle zero-sized allocations uniformly * unix: remove unused uv__dup() function * core,bsd: refactor process_title functions * win: Redefine NSIG to consider SIGWINCH * test: make sure that reading a directory fails * win, tty: remove zero-size read callbacks * test: fix test runner getenv async-signal-safety * test: fix test runner execvp async-signal-safety * test,unix: fix race in test runner * unix,win: support IDNA 2008 in uv_getaddrinfo() * win, tcp: avoid starving the loop * win, dl: proper error messages on some systems * win,fs: retry if uv_fs_rename fails * darwin: speed up uv_set_process_title() * aix: fix race in uv_get_process_title() * win: support more fine-grained windows hiding
33 lines
812 B
Makefile
33 lines
812 B
Makefile
# $NetBSD: Makefile,v 1.41 2018/11/13 08:58:14 adam Exp $
|
|
|
|
DISTNAME= libuv-1.24.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
|
|
GNU_CONFIGURE= yes
|
|
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/bsd.pkg.mk"
|