mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Fix typo "CC" -> "$CC" in AIX cc_r detection
This commit is contained in:
parent
5e14b911e6
commit
79872b45b0
2 changed files with 2 additions and 2 deletions
2
configure
vendored
2
configure
vendored
|
|
@ -2086,7 +2086,7 @@ TLS_LIBS=
|
||||||
|
|
||||||
ol_aix_threads=no
|
ol_aix_threads=no
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-*-aix*) if test -z "CC" ; then
|
*-*-aix*) if test -z "$CC" ; then
|
||||||
case "$ol_with_threads" in
|
case "$ol_with_threads" in
|
||||||
auto | yes | posix) ol_aix_threads=yes ;;
|
auto | yes | posix) ol_aix_threads=yes ;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
|
|
@ -377,7 +377,7 @@ dnl If we do not find cc_r|xlc_r, disable threads
|
||||||
ol_aix_threads=no
|
ol_aix_threads=no
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-*-aix*) dnl all AIX is not a good idea.
|
*-*-aix*) dnl all AIX is not a good idea.
|
||||||
if test -z "CC" ; then
|
if test -z "$CC" ; then
|
||||||
case "$ol_with_threads" in
|
case "$ol_with_threads" in
|
||||||
auto | yes | posix) ol_aix_threads=yes ;;
|
auto | yes | posix) ol_aix_threads=yes ;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue