diff options
author | Slávek Banko <[email protected]> | 2017-02-04 18:26:31 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2017-02-04 18:26:42 +0100 |
commit | 9444a6709a23153941eaf79dff8ecc27e0a716ef (patch) | |
tree | 3b727649d7a2a20b3ab21644387f82d068297979 | |
parent | d290164f7014d2177d9a25145e771cc1e85c484b (diff) | |
download | k3b-9444a6709a23153941eaf79dff8ecc27e0a716ef.tar.gz k3b-9444a6709a23153941eaf79dff8ecc27e0a716ef.zip |
Fix detection whether the system is big endian
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit b1aebdd7f9e3988d338a10cc608ca3c5221ffa49)
-rw-r--r-- | ConfigureChecks.cmake | 3 | ||||
-rw-r--r-- | config.h.cmake | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 9466c7c..19f34a9 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -24,6 +24,9 @@ endif( WITH_GCC_VISIBILITY ) tde_setup_architecture_flags( ) +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + # Check system configuration check_include_file ( "iconv.h" HAVE_ICONV_H ) check_include_file ( "endian.h" HAVE_ENDIAN_H ) diff --git a/config.h.cmake b/config.h.cmake index 0b361fb..5d10ff6 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1,5 +1,9 @@ #cmakedefine VERSION "@VERSION@" +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@ + // User specified build options #cmakedefine HAVE_K3BSETUP |