summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorbfriesen <bfriesen>2009-10-07 20:15:26 +0000
committerbfriesen <bfriesen>2009-10-07 20:15:26 +0000
commitdd73c9112f6de4809d3dd9f20209cfbf5c7f81dd (patch)
tree717fd4a221c335b99206dbcee42fb37f5f11255f /configure.ac
parentc697a47e87c0a72a8c1b22ef5219b3a6c0a5a5e7 (diff)
downloadlibtiff-dd73c9112f6de4809d3dd9f20209cfbf5c7f81dd.tar.gz
* configure.ac: x86_64 should use the same fill order as i386.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6bc3a8d0..e3ed5ea1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -324,7 +324,7 @@ dnl Check the native cpu bit order.
dnl ---------------------------------------------------------------------------
AC_MSG_CHECKING([native cpu bit order])
case "$target_cpu" in
- i*86*)
+ i*86*|x86_64*)
HOST_FILLORDER=FILLORDER_LSB2MSB
AC_MSG_RESULT([lsb2msb])
;;