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/irix_6.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/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index e50ffb42fe..ec83ada217 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -186,9 +186,9 @@ set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' shift libswanted="$*" +cat > UU/usethreads.cbu <<'EOCBU' # This script UU/usethreads.cbu will get 'called-back' by Configure # after it has prompted the user for whether to use threads. -cat > UU/usethreads.cbu <<'EOCBU' case "$usethreads" in $define|true|[yY]*) if test ! -f ${TOOLROOT}/usr/include/pthread.h -o ! -f /usr/lib/libpthread.so; then @@ -238,9 +238,9 @@ EOCBU # The -n32 makes off_t to be 8 bytes, so we should have largefileness. -# This script UU/use64bitint.cbu will get 'called-back' by Configure -# after it has prompted the user for whether to use 64 bits. cat > UU/use64bitint.cbu <<'EOCBU' +# This script UU/use64bitint.cbu will get 'called-back' by Configure +# after it has prompted the user for whether to use 64 bit integers. case "$use64bitint" in $define|true|[yY]*) case "`uname -r`" in @@ -257,9 +257,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 64 bits. 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]*) ccflags="`echo $ccflags|sed -e 's%-n32%%'` -64" |