* configure.ac: x86_64 should use the same fill order as i386.

This commit is contained in:
Bob Friesenhahn 2009-10-07 20:15:26 +00:00
parent eecc3405f3
commit 8743e53820
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-10-07 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* configure.ac: x86_64 should use the same fill order as i386.
2009-09-24 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* tools/tiffcrop.c, man/tiffcrop.1: New tiffcrop from Richard

2
configure vendored
View File

@ -16121,7 +16121,7 @@ done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking native cpu bit order" >&5
$as_echo_n "checking native cpu bit order... " >&6; }
case "$target_cpu" in
i*86*)
i*86*|x86_64*)
HOST_FILLORDER=FILLORDER_LSB2MSB
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: lsb2msb" >&5
$as_echo "lsb2msb" >&6; }

View File

@ -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])
;;