From 834a365113e3624e4e4665199be60311ed156dd3 Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Fri, 19 Jun 2015 10:31:17 -0500 Subject: [PATCH] build: DTrace is enabled by default on darwin MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In configure, the --with-dtrace option only showed that it was true by default on sunos. It is also true by default on darwin. PR-URL: https://github.com/nodejs/io.js/pull/2019 Reviewed-By: Johan Bergström --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3f7992e..f101ef8 100755 --- a/configure +++ b/configure @@ -230,7 +230,7 @@ parser.add_option('--with-mips-float-abi', parser.add_option('--with-dtrace', action='store_true', dest='with_dtrace', - help='build with DTrace (default is true on sunos)') + help='build with DTrace (default is true on sunos and darwin)') parser.add_option('--with-lttng', action='store_true', -- 2.7.4