pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/53758: lang/nodejs build error
The following reply was made to PR pkg/53758; it has been noted by GNATS.
From: Izumi Tsutsui <tsutsui%ceres.dti.ne.jp@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: tsutsui%ceres.dti.ne.jp@localhost
Subject: Re: pkg/53758: lang/nodejs build error
Date: Sun, 3 Feb 2019 17:03:18 +0900
I wrote:
> > This patch is for pkgsrc-2018Q3 (i.e. nodejs-10.11.0, while the latest
> > pkgsrc-current has 10.14.0)
>
> Here is a patch for pkgsrc HEAD:
This does not work for firefox 65.0 (get SIGABRT on execuding node binary).
It turns out disabling the openssl option is enough for firefox 65.0 build
(at least on NetBSD/i386 8.0 with nodejs-10.15.1):
---
Index: options.mk
===================================================================
RCS file: /cvsroot/pkgsrc/lang/nodejs/options.mk,v
retrieving revision 1.11
diff -u -p -r1.11 options.mk
--- options.mk 3 May 2018 21:19:16 -0000 1.11
+++ options.mk 3 Feb 2019 07:57:32 -0000
@@ -2,7 +2,11 @@
PKG_OPTIONS_VAR= PKG_OPTIONS.node
PKG_SUPPORTED_OPTIONS= openssl dtrace
+.if (${OPSYS} == "NetBSD" && ${MACHINE_ARCH} != "x86_64")
+PKG_SUGGESTED_OPTIONS=
+.else
PKG_SUGGESTED_OPTIONS= openssl
+.endif
.include "../../mk/bsd.prefs.mk"
---
Izumi Tsutsui
Home |
Main Index |
Thread Index |
Old Index