summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 592ac67)
raw | patch | inline | side by side (parent: 592ac67)
author | Jeremy Huddleston <jeremyhu@apple.com> | |
Mon, 30 Jan 2012 23:20:04 +0000 (15:20 -0800) | ||
committer | Jeremy Huddleston <jeremyhu@apple.com> | |
Mon, 30 Jan 2012 23:20:04 +0000 (15:20 -0800) |
This fixes a failure in 'make check' found by the tinderbox when trying to
build this code on Linux/ppc. This code is only designed to run on
Intel platforms, so don't even bother building it if we're not in that set.
Found-by: Tinderbox
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
build this code on Linux/ppc. This code is only designed to run on
Intel platforms, so don't even bother building it if we're not in that set.
Found-by: Tinderbox
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 773167f5749dd71538448a5a814f86d1041322db..f5ebc1d45175f19a25e9e0a1f8060ca27a0d5824 100644 (file)
--- a/configure.ac
+++ b/configure.ac
else
if test "x$INTEL" != "xno"; then
- INTEL=yes
+ case $host_os in
+ i?86-*|x86_64-*) INTEL=yes ;;
+ *) INTEL=no ;;
+ esac
fi
if test "x$RADEON" != "xno"; then
RADEON=yes