diff options
author | fhajny <fhajny@pkgsrc.org> | 2016-06-02 09:57:32 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2016-06-02 09:57:32 +0000 |
commit | 3274a04ee5fbed9e261a495b05064dbdc56be76d (patch) | |
tree | fba7d30e1bbf0dbdbc58649ccba0ca4e379c5fd7 /lang/nodejs/options.mk | |
parent | a3b7dad8e1fe02b40e19aa3b4c964943fa513679 (diff) | |
download | pkgsrc-3274a04ee5fbed9e261a495b05064dbdc56be76d.tar.gz |
Remove the nodejs icu option and make nodejs use a system ICU
package by default. Expand existing patch to fix NetBSD 6 build.
Fixes PR pkg/51172.
Bump PKGREVISION for lang/nodejs and lang/nodejs4.
Diffstat (limited to 'lang/nodejs/options.mk')
-rw-r--r-- | lang/nodejs/options.mk | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lang/nodejs/options.mk b/lang/nodejs/options.mk index 781b8fee320..ec6225b9b89 100644 --- a/lang/nodejs/options.mk +++ b/lang/nodejs/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.9 2016/05/30 19:52:49 tnn Exp $ +# $NetBSD: options.mk,v 1.10 2016/06/02 09:57:32 fhajny Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.node -PKG_SUPPORTED_OPTIONS= openssl dtrace icu +PKG_SUPPORTED_OPTIONS= openssl dtrace PKG_SUGGESTED_OPTIONS= openssl .if (${OPSYS} == "SunOS" || ${OPSYS} == "Darwin") \ @@ -23,11 +23,6 @@ CONFIGURE_ARGS+= --without-dtrace # print-PLIST helper PRINT_PLIST_AWK+= {if ($$0 ~ /lib\/dtrace/) {$$0 = "$${PLIST.dtrace}" $$0;}} -.if !empty(PKG_OPTIONS:Micu) -CONFIGURE_ARGS+= --with-intl=system-icu -.include "../../textproc/icu/buildlink3.mk" -.endif - .if !empty(PKG_OPTIONS:Mopenssl) BUILDLINK_API_DEPENDS.openssl+= openssl>=1.0.2 .include "../../security/openssl/buildlink3.mk" |