Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 281d8cc4a97d
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d89e4f81b3da
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Dec 9, 2021

  1. 1
    Copy the full SHA
    d89e4f8 View commit details
Showing with 37 additions and 1 deletion.
  1. +1 −1 net-libs/nodejs/nodejs12-12.22.7.recipe
  2. +36 −0 net-libs/nodejs/patches/nodejs-12.22.7.patchset
2 changes: 1 addition & 1 deletion net-libs/nodejs/nodejs12-12.22.7.recipe
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ to be done, Node will sleep."
HOMEPAGE="https://nodejs.org/"
COPYRIGHT="2006-2019 The Node.js Foundation"
LICENSE="BSD (2-clause)"
REVISION="1"
REVISION="2"
SOURCE_URI="https://nodejs.org/dist/v$portVersion/node-v$portVersion.tar.xz"
SOURCE_DIR="node-v$portVersion"
CHECKSUM_SHA256="cc6a23b44870679a94bd8f3c8d4e1f4b77bb2712a36888ab87463459e6785f6b"
36 changes: 36 additions & 0 deletions net-libs/nodejs/patches/nodejs-12.22.7.patchset
Original file line number Diff line number Diff line change
@@ -635,3 +635,39 @@ index d54e7c6..0643dd3 100644
--
2.30.2

From c1b5978747709c2ce6516c1771354545d6c53060 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Lal?= <kapouer@melix.org>
Date: Mon, 5 Jul 2021 00:22:46 +0200
Subject: [PATCH] build: uvwasi honours node_shared_libuv

Fix #39248.
---
deps/uvwasi/uvwasi.gyp | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/deps/uvwasi/uvwasi.gyp b/deps/uvwasi/uvwasi.gyp
index d4189eeee2fc..5822f8d59bd9 100644
--- a/deps/uvwasi/uvwasi.gyp
+++ b/deps/uvwasi/uvwasi.gyp
@@ -18,9 +18,6 @@
'src/wasi_rights.c',
'src/wasi_serdes.c',
],
- 'dependencies': [
- '../uv/uv.gyp:libuv',
- ],
'direct_dependent_settings': {
'include_dirs': ['include']
},
@@ -31,6 +28,11 @@
'_POSIX_C_SOURCE=200112',
],
}],
+ [ 'node_shared_libuv=="false"', {
+ 'dependencies': [
+ '../uv/uv.gyp:libuv',
+ ],
+ }],
],
}
]