mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-01 03:18:04 +02:00
Bug #4817 <https://bugs.freedesktop.org/show_bug.cgi?id=4817> Restore '='
to '==' in test for mmx_capable.
This commit is contained in:
parent
1f43d218cc
commit
279cf9f79d
2 changed files with 6 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue