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 311fd50444
commit 2b3ad7abc1

@ -9,6 +9,11 @@
#
#################################################
# little/big endian?
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
# hal
pkg_search_module( HAL hal )
if( NOT HAL_FOUND )

@ -1 +1,5 @@
#define KNETWORKMANAGER_VERSION_STRING "@KNETWORKMANAGER_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