diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-02-13 19:09:53 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-02-13 19:09:53 +0100 |
commit | 6e3b7bfa2b063f4ce0c55f84474edb7d2c652387 (patch) | |
tree | 55f00a1c87f737c031b8d7819f808d5194aa441c /Configure | |
parent | 95c9bfa39f7dd11d255e4266e33aafe9d36750e0 (diff) | |
download | perl-6e3b7bfa2b063f4ce0c55f84474edb7d2c652387.tar.gz |
[PATCH] Support for SystemTap's dtrace compatibility layer and issues linking miniperl
SystemTaps' dtrace binary lives in /usr/bin, so add a check to Configure
for that.
Additionally link the dtrace .o file into miniperl, which is an issue
with SystemTap and also reported on p5p to affect OpenSolaris in
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,7 +30,7 @@ # $Id: Head.U 6 2006-08-25 22:21:46Z rmanfredi $ # -# Generated on Tue Feb 9 16:39:40 CET 2010 [metaconfig 3.5 PL0] +# Generated on Sat Feb 13 19:05:42 CET 2010 [metaconfig 3.5 PL0] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -7152,6 +7152,8 @@ esac : DTrace support dflt_dtrace='/usr/sbin/dtrace' +$test -x /usr/bin/dtrace && dflt_dtrace='/usr/bin/dtrace' + cat <<EOM Perl can be built to support DTrace on platforms that support it. |