diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-22 16:44:16 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-22 16:44:16 +0000 |
commit | 7e51ecd7970e5ab67154a1eb99b2c95004024435 (patch) | |
tree | 6b2afd33ec9e54161ef5814a7c87455c0eb735d8 /hints/dec_osf.sh | |
parent | 0165acc7988347eaec71b2c2d2a9764893f0c240 (diff) | |
download | perl-7e51ecd7970e5ab67154a1eb99b2c95004024435.tar.gz |
Until the Perl malloc problems in Tru64 are fixed.
p4raw-id: //depot/perl@19842
Diffstat (limited to 'hints/dec_osf.sh')
-rw-r--r-- | hints/dec_osf.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hints/dec_osf.sh b/hints/dec_osf.sh index f08c318b89..db4b147c9e 100644 --- a/hints/dec_osf.sh +++ b/hints/dec_osf.sh @@ -341,8 +341,13 @@ EOF esac case "$usemymalloc" in - '') - usemymalloc='n' + ''|'n') usemymalloc='n' + ;; + *) # The FILLCHECK_DEADBEEF() are failing. + case "$ccflags" in + *-DFILL_CHECK_DEFAULT=*) ;; + *) ccflags="$ccflags -DFILL_CHECK_DEFAULT=0" ;; + esac ;; esac # These symbols are renamed in <time.h> so |