From e851fef60f5368927ea0a6b7bfc984ef18e93d6f Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Wed, 17 Jul 2013 20:46:25 +0000 Subject: build: embed the mdb_v8.so into the binary This builds and includes the mdb_v8.so in the binary of node so mdb can be sure to always use the latest version --- configure | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure') diff --git a/configure b/configure index abb9070814..833de8d115 100755 --- a/configure +++ b/configure @@ -475,6 +475,13 @@ def configure_node(o): o['variables']['node_use_dtrace'] = 'false' o['variables']['node_use_systemtap'] = 'false' + # if we're on illumos based systems wrap the helper library into the + # executable + if flavor == 'solaris': + o['variables']['node_use_mdb'] = 'true' + else: + o['variables']['node_use_mdb'] = 'false' + if options.no_ifaddrs: o['defines'] += ['SUNOS_NO_IFADDRS'] -- cgit v1.2.1