summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2023-05-16 17:40:05 +0000
committerEven Rouault <even.rouault@spatialys.com>2023-05-16 17:40:05 +0000
commita0a18437d669bc30f91bfada555417903fee65b5 (patch)
treeb084380d5f27e36024ca3efc1ff66682da1a5c08 /configure.ac
parentcea60470546fcb8bc1bb937512485aae15367b5d (diff)
parent0dabdfe85732147d1c8d6016e8c3e40522104568 (diff)
downloadlibtiff-git-master.tar.gz
Merge branch 'fix_558' into 'master'HEADmaster
Hardcode HOST_FILLORDER to FILLORDER_LSB2MSB, and make 'H' flag of TIFFOpen()... See merge request libtiff/libtiff!488
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac16
1 files changed, 0 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac
index 292bb20e..8d1a52d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -255,22 +255,6 @@ dnl Will use local replacements for unavailable functions
AC_REPLACE_FUNCS(getopt)
dnl ---------------------------------------------------------------------------
-dnl Check the native cpu bit order.
-dnl ---------------------------------------------------------------------------
-AC_MSG_CHECKING([native cpu bit order])
-case "$host_cpu" in
- i*86*|x86_64*)
- HOST_FILLORDER=FILLORDER_LSB2MSB
- AC_MSG_RESULT([lsb2msb])
- ;;
- *)
- HOST_FILLORDER=FILLORDER_MSB2LSB
- AC_MSG_RESULT([msb2lsb])
- ;;
-esac
-AC_DEFINE_UNQUOTED(HOST_FILLORDER, $HOST_FILLORDER, [Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB)])
-
-dnl ---------------------------------------------------------------------------
dnl Configure legacy tifconf.h HOST_BIGENDIAN.
dnl ---------------------------------------------------------------------------
if test "$ac_cv_c_bigendian" = yes ; then