diff options
author | grommel@sears.com <grommel@sears.com> | 2003-09-29 09:45:16 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-09-30 11:29:17 +0000 |
commit | cd512f8e422432e2054f6755a2d319f1aa0e9333 (patch) | |
tree | d3e6332691ffec582db4d08e550f668c1334a29f /hints/svr4.sh | |
parent | 4546bcba647ec497f1cc55a0744a9621a6dbe677 (diff) | |
download | perl-cd512f8e422432e2054f6755a2d319f1aa0e9333.tar.gz |
Re: NCR MP-RAS perl problems [perl #23791]
Message-ID: <OF9B00605E.3CC90F32-ON86256DB0.006B13F0-86256DB0.006C8E85@LocalDomain>
p4raw-id: //depot/perl@21390
Diffstat (limited to 'hints/svr4.sh')
-rw-r--r-- | hints/svr4.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hints/svr4.sh b/hints/svr4.sh index c781686e38..cbc2d9549f 100644 --- a/hints/svr4.sh +++ b/hints/svr4.sh @@ -156,12 +156,14 @@ if test -f /etc/issue -a -f /etc/.relid; then # libcrypt contains nothing libc wouldn't have. libswanted=`echo " $libswanted " | sed -e 's/ crypt / /'` # With the NCR High Performance C Compiler R3.0c, miniperl fails - # t/op/regexp.t test 461 unless we compile with optimize=-g. + # t/op/regexp.t test 461 unless we compile with optimize=-O0. # Volunteers are needed to determine just which files need special - # treatment. For now, use optimize=-g for everything. + # treatment. For now, use optimize=-O0 for everything. # + d_usleep='undef' + d_ualarm='undef' case "$optimize" in - '') optimize='-g' ;; + '') optimize='-O0' ;; esac fi |