For AIX thread options when CC is manual set to cc_r or xlc_r.

This commit is contained in:
Kurt Zeilenga 1999-06-17 03:26:42 +00:00
parent 23c4b81819
commit 638efc878b
2 changed files with 577 additions and 571 deletions

1107
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -334,7 +334,8 @@ case "$target" in
;;
esac
if test -z "${CC}" -a $ol_aix_threads = yes ; then
if test $ol_aix_threads = yes ; then
if test -z "${CC}" ; then
AC_CHECK_PROGS(CC,cc_r xlc_r cc)
if test "$CC" = cc ; then
@ -345,8 +346,10 @@ if test -z "${CC}" -a $ol_aix_threads = yes ; then
AC_MSG_WARN([disabling threads, no cc_r on AIX])
fi
ol_with_threads=no
fi
fi
elif test "$CC" ; then
if test "${CC}" = "cc_r" -o "${CC}" = "xlc_r" ; then
ol_with_threads=posix
ol_cv_pthread_create=yes
fi