summaryrefslogtreecommitdiff
path: root/cmake/ProcessorChecks.cmake
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 /cmake/ProcessorChecks.cmake
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 'cmake/ProcessorChecks.cmake')
-rw-r--r--cmake/ProcessorChecks.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/cmake/ProcessorChecks.cmake b/cmake/ProcessorChecks.cmake
index 8d8c568a..08e89604 100644
--- a/cmake/ProcessorChecks.cmake
+++ b/cmake/ProcessorChecks.cmake
@@ -26,17 +26,6 @@
include(TestBigEndian)
-
-# CPU bit order
-set(HOST_FILLORDER FILLORDER_MSB2LSB)
-if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "i.*86.*" OR
- CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "amd64.*" OR
- # AMD64 on Windows
- CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "AMD64" OR
- CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "x86_64.*")
- set(HOST_FILLORDER FILLORDER_LSB2MSB)
-endif()
-
# CPU endianness
test_big_endian(HOST_BIG_ENDIAN)
if(HOST_BIG_ENDIAN)