d7e503a29a
Version 14.18.3 'Fermium' (LTS) Notable changes Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531) Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532) Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533) Prototype pollution via console.table properties (Low)(CVE-2022-21824)
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.224 2022/01/11 08:02:04 adam Exp $
|
|
|
|
DISTNAME= node-v14.18.3
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
USE_LANGUAGES= c gnu++14
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# XXX: figure out a way to add rpaths to torque
|
|
MAKE_ENV+= LD_LIBRARY_PATH=${PREFIX}/lib
|
|
|
|
CONFIGURE_ARGS+= --shared-brotli
|
|
CONFIGURE_ARGS+= --shared-nghttp2
|
|
CONFIGURE_ARGS+= --with-intl=system-icu
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 27
|
|
|
|
CHECK_PORTABILITY_SKIP+= tools/macos-installer/pkgbuild/npm/scripts/preinstall
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
# required for SSE2 code under i386.
|
|
CXXFLAGS+= -mstackrealign
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
# Node turns on -latomic for arm, mips and ppc.
|
|
.if !empty(MACHINE_ARCH:M*arm*) || \
|
|
!empty(MACHINE_ARCH:M*powerpc*) || \
|
|
!empty(MACHINE_ARCH:M*mips*)
|
|
.include "../../devel/libatomic/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "../../lang/nodejs/Makefile.common"
|
|
.include "../../archivers/brotli/buildlink3.mk"
|
|
.include "../../textproc/icu/buildlink3.mk"
|
|
# Requires nghttp2_option_set_max_settings
|
|
BUILDLINK_API_DEPENDS.nghttp2+= nghttp2>=1.41.0
|
|
.include "../../www/nghttp2/buildlink3.mk"
|
|
.include "../../mk/atomic64.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|