diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-10 01:07:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-10 01:07:54 +0000 |
commit | 1acc7ade4abfe5b51345cb3c9fcc0526ac392d7c (patch) | |
tree | c20602b2107123d12b3d226eee58dac8af5ef9a7 /Configure | |
parent | 3daa46a315f65c77c1ae5ecd65d09fb63f21f12d (diff) | |
download | perl-1acc7ade4abfe5b51345cb3c9fcc0526ac392d7c.tar.gz |
Fix goofups noticed by Mark Bixby and Jeff Okamoto.
p4raw-id: //depot/cfgperl@5634
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Sun Mar 5 23:53:58 EET 2000 [metaconfig 3.0 PL70] +# Generated on Fri Mar 10 03:07:09 EET 2000 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -4512,6 +4512,14 @@ esac set use64bitint eval $setvar +case "$use64bitall" in +"$define"|true|[yY]*) dflt='y' ;; +*) case "$longsize" in + 8) dflt='y' ;; + *) dflt='n' ;; + esac + ;; +esac cat <<EOM You may also choose to try maximal 64-bitness. It means using as much @@ -4522,14 +4530,6 @@ have any more 64-bitness available than what you already have chosen. If this doesn't make any sense to you, just accept the default '$dflt'. EOM rp='Try to use maximal 64-bit support, if available?' -case "$use64bitall" in -"$define"|true|[yY]*) dflt='y' ;; -*) case "$longsize" in - 8) dflt='y' ;; - *) dflt='n' ;; - esac - ;; -esac . ./myread case "$ans" in [yY]*) val="$define" ;; @@ -8636,7 +8636,8 @@ extern int errno; #ifdef I_UNISTD #include <unistd.h> #endif -#ifdef $i_string +#$i_string I_STRING +#ifdef I_STRING #include <string.h> #else #include <strings.h> |