summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-11-14 21:00:14 +0000
committerAdam Jackson <ajax@nwnk.net>2005-11-14 21:00:14 +0000
commitcd843de0de38759259127459eb0c2199bbd3e6cb (patch)
tree448a83711aeb3c8fa0d0dc013f5c983ce00dc008
parent78a649281a58c86a685736b0c2f9362523358113 (diff)
Bug #5048: Fix x86 check. (Cedric Berger)
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 923de11..cfcee78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
2005-11-14 Adam Jackson <ajax@freedesktop.org>
* src/xvmc/Makefile.am:
- Bug #5024: Move EXTRA_DIST outside the ifdef.
+ Bug #5024: Move EXTRA_DIST outside the ifdef. (Juerg Billeter)
+
+ * configure.ac:
+ Bug #5048: Fix x86 check. (Cedric Berger)
2005-11-09 Adam Jackson <ajax@freedesktop.org>
diff --git a/configure.ac b/configure.ac
index 3f1709a..9a62479 100644
--- a/configure.ac
+++ b/configure.ac
@@ -92,7 +92,7 @@ if test "$DRI" = yes; then
AC_DEFINE(XF86DRI,1,[Enable DRI driver support])
AC_DEFINE(XF86DRI_DEVEL,1,[Enable developmental DRI driver support])
case "$host_cpu" in
- x86*)
+ i*86)
XVMC=yes ;;
amd64*|x86_64*)
XVMC=yes ;;