diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-27 18:52:33 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-04-03 13:16:20 +0000 |
commit | ca11f38ff949231f89dd5f70abe39eda664c17d5 (patch) | |
tree | eeb36479bc45d47f0690aec28ebc234c75efdd68 /Configure | |
parent | 5f03e96f860bd5d31b2227865573de62701134d2 (diff) | |
download | perl-ca11f38ff949231f89dd5f70abe39eda664c17d5.tar.gz |
Avoid Digital UNIX' ksh.
To: Henrik Tougaard <ht000@siberut.foa.dk>
Cc: perlbug@perl.com, ht000@foa.dk
Subject: Re: Not OK perl5.005_03-MAINT_TRIAL_4
Message-ID: <13999.10289.319422.239987@alpha.hut.fi>
p4raw-id: //depot/cfgperl@3210
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Fri Apr 2 15:40:35 EET DST 1999 [metaconfig 3.0 PL70] +# Generated on Sat Apr 3 16:20:23 EET DST 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -108,6 +108,12 @@ if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then newsh=/usr/bin/bsh fi fi +case "`uname -s`" in +OSF1) + avoidksh="to avoid Digital UNIX' ksh" + newsh=/bin/sh + unset BIN_SH # if this is 'xpg4' sh will start up ksh +esac case "$inksh/$needksh" in /[a-z]*) ENV='' @@ -7275,7 +7281,7 @@ if $test X"$use64bits" = X"$define"; then echo $n "Checking to see if your system supports off64_t...$c" >&4 $cat >try.c <<EOCP #include <sys/types.h> -#include <stdio.h> +#include <unistd.h> off64_t foo() { off64_t x; x = 7; return x; }' EOCP if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then @@ -7294,7 +7300,7 @@ EOCP echo $n "Checking to see if your system supports offset_t...$c" >&4 $cat >try.c <<EOCP #include <sys/types.h> -#include <stdio.h> +#include <unistd.h> offset_t foo() { offset_t x; x = 7; return x; }' EOCP if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then |