mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-01 14:15:49 +08:00
For AIX thread options when CC is manual set to cc_r or xlc_r.
This commit is contained in:
parent
23c4b81819
commit
638efc878b
25
configure.in
25
configure.in
@ -334,19 +334,22 @@ case "$target" in
|
||||
;;
|
||||
esac
|
||||
|
||||
if test -z "${CC}" -a $ol_aix_threads = yes ; then
|
||||
AC_CHECK_PROGS(CC,cc_r xlc_r cc)
|
||||
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
|
||||
dnl no CC! don't allow --with-threads
|
||||
if test $ol_with_threads != auto ; then
|
||||
AC_MSG_ERROR([--with-threads requires cc_r (or other suitable compiler) on AIX])
|
||||
else
|
||||
AC_MSG_WARN([disabling threads, no cc_r on AIX])
|
||||
fi
|
||||
ol_with_threads=no
|
||||
if test "$CC" = cc ; then
|
||||
dnl no CC! don't allow --with-threads
|
||||
if test $ol_with_threads != auto ; then
|
||||
AC_MSG_ERROR([--with-threads requires cc_r (or other suitable compiler) on AIX])
|
||||
else
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user