diff options
author | Larry Wall <lwall@netlabs.com> | 1992-06-08 04:50:30 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1992-06-08 04:50:30 +0000 |
commit | ee0007abcec11102eeaa49662e5ebb838e04aac6 (patch) | |
tree | 8bd2b45245f7c74167adac89abd7285c65989bfb /hints | |
parent | 7b0cd887a13445cfae2c23db0b7efd05a47758e6 (diff) | |
download | perl-ee0007abcec11102eeaa49662e5ebb838e04aac6.tar.gz |
perl 4.0 patch 28: patch #20, continued
See patch #20.
Diffstat (limited to 'hints')
-rw-r--r-- | hints/osf1.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/hints/osf1.sh b/hints/osf1.sh new file mode 100644 index 0000000000..e9be84917a --- /dev/null +++ b/hints/osf1.sh @@ -0,0 +1,25 @@ +ccflags="$ccflags -Olimit 2900" +libswanted=m +tmp=`(uname -a) 2>/dev/null` +case "$tmp" in +OSF1*) + case "$tmp" in + *mips) + d_volatile=define + ;; + *) + cat <<EOFM +You are not supposed to know about that machine... +EOFM + ;; + esac + ;; +esac +#eval_cflags='optimize="-g"' +#teval_cflags='optimize="-g"' +#toke_cflags='optimize="-g"' +#ttoke_cflags='optimize="-g"' +regcomp_cflags='optimize="-g -O0"' +tregcomp_cflags='optimize="-g -O0"' +regexec_cflags='optimize="-g -O0"' +tregexec_cflags='optimize="-g -O0"' |