Fix __sync_val_compare_and_swap detection
We should use the second argument of AC_TRY_LINK. Otherwise, the main function defined twice and this test does never succeed. git-svn-id: https://google-glog.googlecode.com/svn/trunk@102 eb4d4688-79bd-11dd-afb4-1d65580434c0
This commit is contained in:
parent
6febec361e
commit
6232847ecb
4
configure
vendored
4
configure
vendored
@ -15172,11 +15172,11 @@ else
|
|||||||
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
int main() { int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0; }
|
|
||||||
int
|
int
|
||||||
main ()
|
main ()
|
||||||
{
|
{
|
||||||
|
int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0;
|
||||||
;
|
;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,8 +2,8 @@ AC_DEFUN([AX_C___SYNC_VAL_COMPARE_AND_SWAP], [
|
|||||||
AC_MSG_CHECKING(for __sync_val_compare_and_swap)
|
AC_MSG_CHECKING(for __sync_val_compare_and_swap)
|
||||||
AC_CACHE_VAL(ac_cv___sync_val_compare_and_swap, [
|
AC_CACHE_VAL(ac_cv___sync_val_compare_and_swap, [
|
||||||
AC_TRY_LINK(
|
AC_TRY_LINK(
|
||||||
[int main() { int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0; }],
|
|
||||||
[],
|
[],
|
||||||
|
[int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0;],
|
||||||
ac_cv___sync_val_compare_and_swap=yes,
|
ac_cv___sync_val_compare_and_swap=yes,
|
||||||
ac_cv___sync_val_compare_and_swap=no
|
ac_cv___sync_val_compare_and_swap=no
|
||||||
)])
|
)])
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user