diff options
author | Brent Cook <bcook@openbsd.org> | 2015-09-16 01:45:42 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-09-16 01:45:42 -0500 |
commit | 3ac78a5573fd33a5efc7e590856efd38e9c11b1d (patch) | |
tree | fb098ea390ff9cb2459d6926a23e709c0ff851f5 | |
parent | eae0e9d3a4217a0eb0adc8a4dfeb164f10a079df (diff) | |
download | portable-3ac78a5573fd33a5efc7e590856efd38e9c11b1d.tar.gz portable-3ac78a5573fd33a5efc7e590856efd38e9c11b1d.tar.bz2 portable-3ac78a5573fd33a5efc7e590856efd38e9c11b1d.zip |
normalize amd64 to x86_64
This allows asm to be enabled on platforms that use amd64 in the host
tuple.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9f3d636..f5dcb77 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -84,6 +84,10 @@ case $host_cpu in | |||
84 | AS_IF([test "x$BSWAP4" = "xyes"],, | 84 | AS_IF([test "x$BSWAP4" = "xyes"],, |
85 | CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT") | 85 | CPPFLAGS="$CPPFLAGS -D__STRICT_ALIGNMENT") |
86 | ;; | 86 | ;; |
87 | *amd64*) | ||
88 | host_cpu=x86_64 | ||
89 | ;; | ||
90 | |||
87 | esac | 91 | esac |
88 | 92 | ||
89 | AC_MSG_CHECKING([if .gnu.warning accepts long strings]) | 93 | AC_MSG_CHECKING([if .gnu.warning accepts long strings]) |