diff options
author | Craig A. Berry <craigberry@mac.com> | 2004-04-05 06:02:12 -0500 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-04-05 15:55:18 +0000 |
commit | dc9da78b70f004446f5a9327eea553687ad8c180 (patch) | |
tree | 2d85e8070335936e3570e20c30b1b33b73c75fb8 /configure.com | |
parent | eac7fe86f47901babc387c242e8dc65d73838746 (diff) | |
download | perl-dc9da78b70f004446f5a9327eea553687ad8c180.tar.gz |
Re: perldelta584
Message-ID: <12587569.1081180932766.JavaMail.craigberry@mac.com>
(makes malloc wrap the default on VMS)
p4raw-id: //depot/perl@22656
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.com b/configure.com index 5263931563..3f94d49853 100644 --- a/configure.com +++ b/configure.com @@ -2509,13 +2509,10 @@ $ if (d_alwdeftype) then usedefaulttypes = "define" $! $! determine whether to use malloc wrapping $ echo "" -$ IF .NOT. usedevel .AND. usedevel .NES. "define" -$ THEN bool_dflt = "n" -$ ELSE bool_dflt = "y" -$ ENDIF +$ bool_dflt = "y" $ IF F$TYPE(usemallocwrap) .nes. "" $ then -$ if usemallocwrap .or. usemallocwrap .eqs. "define" then bool_dflt = "y" +$ if .NOT. usemallocwrap .or. usemallocwrap .eqs. "undef" then bool_dflt = "n" $ endif $ rp = "Do you wish to wrap malloc calls to protect against potential overflows? [''bool_dflt'] " $ GOSUB myread |