diff options
author | Fedor Indutny <fedor.indutny@gmail.com> | 2014-02-20 21:00:29 +0400 |
---|---|---|
committer | Fedor Indutny <fedor.indutny@gmail.com> | 2014-02-21 00:46:26 +0400 |
commit | b7776fb192b803847d07a582bdb62851e93cd98e (patch) | |
tree | 9ff0b668d1ec4f7101c65481bea52fbaeeedaa87 /configure | |
parent | b940e0fd86f29694c571e4fef5b49434eb1cbb8d (diff) | |
download | node-new-b7776fb192b803847d07a582bdb62851e93cd98e.tar.gz |
configure: allow --with-dtrace on freebsd
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -491,6 +491,8 @@ def configure_node(o): # SunOS, and we haven't implemented it.) if flavor in ('solaris', 'mac'): o['variables']['node_use_dtrace'] = b(not options.without_dtrace) + elif flavor == 'freebsd': + o['variables']['node_use_dtrace'] = b(options.with_dtrace) elif flavor == 'linux': o['variables']['node_use_dtrace'] = 'false' o['variables']['node_use_systemtap'] = b(options.with_dtrace) |