configure.in: *Actually* fix detection of i486 atomic ops.

My previous attempt at a fix would always enable them due to wrong quoting.
Patch from Colin Walters <walters@verbum.org>
This commit is contained in:
Simon McVittie 2007-10-16 10:13:15 +01:00
parent 23bcdd7394
commit 71a357de56
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2007-10-16 Simon McVittie <simon.mcvittie@collabora.co.uk>
* configure.in: *Actually* fix detection of i486 atomic ops -
my previous attempt at a fix would always enable them due to wrong
quoting. Patch from Colin Walters <walters@verbum.org>
2007-10-11 Simon McVittie <simon.mcvittie@collabora.co.uk>
* configure.in: enable Autoconf's AC_C_INLINE to avoid compilation

View file

@ -566,9 +566,9 @@ if test x"$GCC" = xyes; then
esac
fi
fi
AC_DEFINE_UNQUOTED([DBUS_USE_ATOMIC_INT_486_COND], ["$have_atomic_inc_cond"],
AC_DEFINE_UNQUOTED([DBUS_USE_ATOMIC_INT_486_COND], [$have_atomic_inc_cond],
[Always defined; expands to 1 if we should use atomic integer implementation for 486, else 0])
AC_DEFINE_UNQUOTED(DBUS_HAVE_ATOMIC_INT_COND, ["$have_atomic_inc_cond"],
AC_DEFINE_UNQUOTED(DBUS_HAVE_ATOMIC_INT_COND, [$have_atomic_inc_cond],
[Always defined; expands to 1 if we have an atomic integer implementation, else 0])
#### Various functions