Fix detection whether the system is big endian

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/1/head
Slávek Banko 7 years ago
parent dda25dba5b
commit 783e11f17e

@ -10,5 +10,10 @@
#################################################
# required stuff
tde_setup_architecture_flags( )
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
find_package( TQt )
find_package( TDE )

@ -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@

@ -12,6 +12,8 @@
* See README and COPYING for more details.
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>

Loading…
Cancel
Save