to '==' in test for mmx_capable.
This commit is contained in:
Donnie Berkholz 2005-10-20 22:41:28 +00:00
parent 1f43d218cc
commit 279cf9f79d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-10-20 Donnie Berkholz <spyderous@gentoo.org>
* configure.ac: Bug #4817 <https://bugs.freedesktop.org/show_bug.cgi?id=4817>
Restore '=' to '==' in test for mmx_capable.
2005-10-18 Adam Jackson <ajax@freedesktop.org>
* XTrap/Makefile.am:

View File

@ -256,7 +256,7 @@ esac
AC_MSG_CHECKING(for MMX capable platform)
if test "x$use_x86_asm" = xyes && test "x$GCC" = xyes ; then
AC_PREPROC_IFELSE([
#if (!defined (__GNUC__) || __GNUC__ < 3 || (__GNUC__ = 3 && __GNUC_MINOR__ < 4))
#if (!defined (__GNUC__) || __GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 4))
#error Not supported
#endif
], mmx_capable=yes, mmx_capable=no)