summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-01-24 12:46:00 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-01-24 12:46:00 +0000
commit14ae4f6a4b3f8239d84555d0543848340e075435 (patch)
tree842fc2171cef332c6e3e63d255edecab38b40d26
parentea95c1407851ede0a28b53a77da0cb2fc072454d (diff)
downloadperl-14ae4f6a4b3f8239d84555d0543848340e075435.tar.gz
Use only xlc_r for usethreads.
p4raw-id: //depot/cfgperl@2698
-rw-r--r--hints/aix.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index 727cf93fd6..c4fcfc173c 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -81,17 +81,17 @@ case "$usethreads" in
$define|true|[yY]*)
ccflags="$ccflags -DNEED_PTHREAD_INIT"
case "$cc" in
- xlc_r | cc_r) ;;
+ xlc_r) ;;
cc)
echo >&4 "Switching cc to xlc_r because of POSIX threads."
cc=xlc_r
;;
- '')
+ '' | cc_r)
cc=xlc_r
;;
*)
cat >&4 <<EOM
-For pthreads you should use the AIX C compilers xlc_r or cc_r.
+For pthreads you should use the AIX C compiler xlc_r.
(now your compiler was '$cc')
Cannot continue, aborting.
EOM