View | Details | Raw Unified | Return to bug 204547 | Differences between
and this patch

Collapse All | Expand All

(-)www/npm/Makefile (-1 / +2 lines)
Lines 37-43 Link Here
37
		test/update-test.sh
37
		test/update-test.sh
38
38
39
NODE_DEVEL_RUN_DEPENDS=	node-devel>=0.8.0:${PORTSDIR}/www/node-devel
39
NODE_DEVEL_RUN_DEPENDS=	node-devel>=0.8.0:${PORTSDIR}/www/node-devel
40
NODE_RUN_DEPENDS=	node>=0.8.0:${PORTSDIR}/www/node
40
NODE_RUN_DEPENDS=	node>=0.8.0:${PORTSDIR}/www/node \
41
			gmake:${PORTSDIR}/devel/gmake
41
42
42
.include <bsd.port.pre.mk>
43
.include <bsd.port.pre.mk>
43
44
(-)www/npm/files/patch-node__modules_node-gyp_gyp_pylib_gyp_generator_make.py (+14 lines)
Line 0 Link Here
1
--- node_modules/node-gyp/gyp/pylib/gyp/generator/make.py.orig	2015-11-14 19:47:53 UTC
2
+++ node_modules/node-gyp/gyp/pylib/gyp/generator/make.py
3
@@ -2059,9 +2059,9 @@ def GenerateOutput(target_list, target_d
4
     'AR.target':   GetEnvironFallback(('AR_target', 'AR'), '$(AR)'),
5
     'CXX.target':  GetEnvironFallback(('CXX_target', 'CXX'), '$(CXX)'),
6
     'LINK.target': GetEnvironFallback(('LINK_target', 'LINK'), '$(LINK)'),
7
-    'CC.host':     GetEnvironFallback(('CC_host',), 'gcc'),
8
+    'CC.host':     GetEnvironFallback(('CC_host',), 'cc'),
9
     'AR.host':     GetEnvironFallback(('AR_host',), 'ar'),
10
-    'CXX.host':    GetEnvironFallback(('CXX_host',), 'g++'),
11
+    'CXX.host':    GetEnvironFallback(('CXX_host',), 'c++'),
12
     'LINK.host':   GetEnvironFallback(('LINK_host',), '$(CXX.host)'),
13
   })
14
 

Return to bug 204547