From 783e11f17e1fab6bf7cd85d215f03ba446a42644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 5 Feb 2017 13:52:16 +0100 Subject: Fix detection whether the system is big endian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ConfigureChecks.cmake | 5 +++++ config.h.cmake | 4 ++++ tdenetworkmanager/src/sha1.cpp | 2 ++ 3 files changed, 11 insertions(+) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index eec03f1..962ce3d 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -10,5 +10,10 @@ ################################################# # required stuff +tde_setup_architecture_flags( ) + +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + find_package( TQt ) find_package( TDE ) diff --git a/config.h.cmake b/config.h.cmake index a17378f..b709202 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1 +1,5 @@ #define TDENETWORKMANAGER_VERSION_STRING "@TDENETWORKMANAGER_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@ diff --git a/tdenetworkmanager/src/sha1.cpp b/tdenetworkmanager/src/sha1.cpp index 74f4df9..180f4bb 100644 --- a/tdenetworkmanager/src/sha1.cpp +++ b/tdenetworkmanager/src/sha1.cpp @@ -12,6 +12,8 @@ * See README and COPYING for more details. */ +#include "config.h" + #include #include -- cgit v1.2.3