diff options
author | Craig A. Berry <craigberry@mac.com> | 2009-11-21 11:17:38 -0600 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2009-11-21 11:17:38 -0600 |
commit | 6a0e50422a84b53e998825128c56791913cd03aa (patch) | |
tree | f823d9b274893cf6470ff0a45c2b32ebcf3e2e11 /configure.com | |
parent | c35076938c7236fb2aaabecd40e3a5a444c3be77 (diff) | |
download | perl-6a0e50422a84b53e998825128c56791913cd03aa.tar.gz |
Make -UDEBUGGING the default on VMS for 5.12.0.
Like it has been everywhere else for ages and ages. Also make
command-line selection of -UDEBUGGING and -DDEBUGGING work in
configure.com; before the only way to turn it off was by saying
no in answer to the interactive question.
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.com b/configure.com index 934633e1b0..2814b2eb7f 100644 --- a/configure.com +++ b/configure.com @@ -959,7 +959,7 @@ $ delete/symbol val $ delete/symbol dsym $ if f$type(usedebugging_perl) .nes. "" $ then -$ useperldebug = usedebugging_perl +$ DEBUGGING = usedebugging_perl $ delete/symbol usedebugging_perl $ endif $! @@ -2312,10 +2312,10 @@ $ echo "enables the -D switch, at the cost of some performance. It" $ echo "was mandatory on perl 5.005 and before on VMS, but is now" $ echo "optional. If you do not generally use it you should probably" $ echo "leave this off and gain a bit of extra speed." -$ bool_dflt = "y" -$ if f$type(useperldebug) .nes. "" +$ bool_dflt = "n" +$ if f$type(DEBUGGING) .nes. "" $ then -$ if f$extract(0,1,f$edit(useperldebug,"collapse,upcase")).eqs."N" .or. useperldebug .eqs. "undef" then bool_dflt="n" +$ if f$extract(0,1,f$edit(DEBUGGING,"collapse,upcase")).eqs."Y" .or. DEBUGGING .eqs. "define" then bool_dflt="y" $ endif $ rp = "Build a DEBUGGING version of Perl? [''bool_dflt'] " $ GOSUB myread |