Skip to content

Commit

Permalink
nodejs-6: update to 6.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AndWac committed Mar 30, 2018
1 parent 1bf4806 commit c0b7b8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
4 changes: 2 additions & 2 deletions components/runtime/node6/Makefile
Expand Up @@ -21,12 +21,12 @@ COMPONENT_FMRI= runtime/nodejs-6
COMPONENT_SUMMARY= Evented I/O for V8 JavaScript.
COMPONENT_CLASSIFICATION= Development/Other Languages
COMPONENT_PROJECT_URL= http://nodejs.org
COMPONENT_VERSION= 6.11.5
COMPONENT_VERSION= 6.14.0
COMPONENT_LICENSE= BSD-like, MIT, Apache
COMPONENT_LICENSE_FILE= node.license
COMPONENT_SRC= $(COMPONENT_NAME)-v$(COMPONENT_VERSION)
COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH= sha256:c4aed94e82dbf246a1c9e0705c3054f0c0f3d9c4d8d025d877e0ef1f7b6cde4c
COMPONENT_ARCHIVE_HASH= sha256:87892f42c5c48bb6367e0299ec81e1d18e560e401eddc50dd746acc4c896bd7c
COMPONENT_ARCHIVE_URL= http://nodejs.org/dist/v$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)

include $(WS_MAKE_RULES)/prep.mk
Expand Down
1 change: 1 addition & 0 deletions components/runtime/node6/manifests/sample-manifest.p5m
Expand Up @@ -140,6 +140,7 @@ file path=usr/node/6/include/node/uv-darwin.h
file path=usr/node/6/include/node/uv-errno.h
file path=usr/node/6/include/node/uv-linux.h
file path=usr/node/6/include/node/uv-os390.h
file path=usr/node/6/include/node/uv-posix.h
file path=usr/node/6/include/node/uv-sunos.h
file path=usr/node/6/include/node/uv-threadpool.h
file path=usr/node/6/include/node/uv-unix.h
Expand Down
1 change: 1 addition & 0 deletions components/runtime/node6/nodejs.p5m
Expand Up @@ -212,6 +212,7 @@ file path=usr/node/6/include/node/uv-darwin.h
file path=usr/node/6/include/node/uv-errno.h
file path=usr/node/6/include/node/uv-linux.h
file path=usr/node/6/include/node/uv-os390.h
file path=usr/node/6/include/node/uv-posix.h
file path=usr/node/6/include/node/uv-sunos.h
file path=usr/node/6/include/node/uv-threadpool.h
file path=usr/node/6/include/node/uv-unix.h
Expand Down
10 changes: 0 additions & 10 deletions components/runtime/node6/patches/01-getifaddrs.patch
@@ -1,15 +1,5 @@
--- node-v6.11.3/deps/uv/src/unix/sunos.c.orig Sat Sep 16 13:39:06 2017
+++ node-v6.11.3/deps/uv/src/unix/sunos.c Sat Sep 16 13:39:34 2017
@@ -761,7 +761,8 @@
for (ent = addrs; ent != NULL; ent = ent->ifa_next) {
if (!((ent->ifa_flags & IFF_UP) && (ent->ifa_flags & IFF_RUNNING)) ||
(ent->ifa_addr == NULL) ||
- (ent->ifa_addr->sa_family == PF_PACKET)) {
+ (ent->ifa_addr->sa_family != AF_INET &&
+ ent->ifa_addr->sa_family != AF_INET6)) {
continue;
}

@@ -783,6 +784,10 @@
if (ent->ifa_addr == NULL)
continue;
Expand Down

0 comments on commit c0b7b8a

Please sign in to comment.