Change 19842 by [EMAIL PROTECTED] on 2003/06/22 16:44:16
Until the Perl malloc problems in Tru64 are fixed.
Affected files ...
... //depot/perl/hints/dec_osf.sh#53 edit
Differences ...
==== //depot/perl/hints/dec_osf.sh#53 (text) ====
Index: perl/hints/dec_osf.sh
--- perl/hints/dec_osf.sh#52~19078~ Fri Mar 28 23:23:00 2003
+++ perl/hints/dec_osf.sh Sun Jun 22 09:44:16 2003
@@ -341,8 +341,13 @@
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
End of Patch.