diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-28 22:23:36 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-28 22:23:36 +0000 |
commit | de6124c856e6fc34c48856ef1aa5a4c3d045ad5f (patch) | |
tree | 05984acffb0c811311f1ac37182ce613bbe3ae3c /hints/aix.sh | |
parent | 4c07fe1d9f6731adc6b9f1b87137723814165394 (diff) | |
download | perl-de6124c856e6fc34c48856ef1aa5a4c3d045ad5f.tar.gz |
Regularize the call-back units (and fix a bug in #5330).
p4raw-id: //depot/cfgperl@5331
Diffstat (limited to 'hints/aix.sh')
-rw-r--r-- | hints/aix.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 6e8a4b3c1c..a22ca82a66 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -235,7 +235,7 @@ esac EOCBU # This script UU/use64bitint.cbu will get 'called-back' by Configure -# after it has prompted the user for whether to use 64 bits. +# after it has prompted the user for whether to use 64 bit integers. cat > UU/use64bitint.cbu <<'EOCBU' case "$use64bitint" in $define|true|[yY]*) @@ -252,9 +252,9 @@ EOM esac EOCBU -# This script UU/use64bitall.cbu will get 'called-back' by Configure -# after it has prompted the user for whether to use full 64-bitness. cat > UU/use64bitall.cbu <<'EOCBU' +# This script UU/use64bitall.cbu will get 'called-back' by Configure +# after it has prompted the user for whether to be maximally 64-bitty. case "$use64bitall" in $define|true|[yY]*) case "`oslevel`" in @@ -351,9 +351,9 @@ EOM esac EOCBU +cat > UU/uselongdouble.cbu <<'EOCBU' # This script UU/uselongdouble.cbu will get 'called-back' by Configure # after it has prompted the user for whether to use long doubles. -cat > UU/uselongdouble.cbu <<'EOCBU' case "$uselongdouble" in $define|true|[yY]*) ccflags="$ccflags -qlongdouble" |