summaryrefslogtreecommitdiff
path: root/build_posix
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2016-08-25 15:24:48 +1000
committerGitHub <noreply@github.com>2016-08-25 15:24:48 +1000
commitf1ab6cc250fd62d38d40f46746fd16fd2da96029 (patch)
treede8b8caaeaea72c9fa200c2933fb4108d297f38e /build_posix
parent2ddc171b47690a42d6477cfc469f4fa62f885517 (diff)
downloadmongo-f1ab6cc250fd62d38d40f46746fd16fd2da96029.tar.gz
WT-2695 Fix build issues caused by zSeries checksum code (#2979)
Diffstat (limited to 'build_posix')
-rw-r--r--build_posix/configure.ac.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/build_posix/configure.ac.in b/build_posix/configure.ac.in
index 154d850df45..00aa0bc9f95 100644
--- a/build_posix/configure.ac.in
+++ b/build_posix/configure.ac.in
@@ -59,9 +59,7 @@ AS_CASE([$host_cpu],
[wt_cv_powerpc="no"])
AM_CONDITIONAL([POWERPC_HOST], [test "$wt_cv_powerpc" = "yes"])
AS_CASE([$host_cpu],
- [amd*], [wt_cv_x86="yes"],
- [x86*], [wt_cv_x86="yes"],
- [wt_cv_x86="no"])
+ [amd*|i[[3456]]86*|pentium|x86*], [wt_cv_x86="yes"], [wt_cv_x86="no"])
AM_CONDITIONAL([X86_HOST], [test "$wt_cv_x86" = "yes"])
AS_CASE([$host_cpu],
[s390x*], [wt_cv_zseries="yes"],