diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-07-23 09:25:36 +0200 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-07-23 09:25:36 +0200 |
commit | ea0315ed880c6419bbc97549b10ecb6ba6ae2c00 (patch) | |
tree | 4c0719358aad644c8833a4ad4efd38b19d6e1536 | |
parent | 85a5eb94998763c43149b97b81f0a4b4904c6da8 (diff) | |
download | libssh-ea0315ed880c6419bbc97549b10ecb6ba6ae2c00.tar.gz libssh-ea0315ed880c6419bbc97549b10ecb6ba6ae2c00.tar.xz libssh-ea0315ed880c6419bbc97549b10ecb6ba6ae2c00.zip |
Add cmake check for big endian.
-rw-r--r-- | ConfigureChecks.cmake | 3 | ||||
-rw-r--r-- | config.h.cmake | 12 |
2 files changed, 6 insertions, 9 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 14abf09..d18035b 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -4,6 +4,7 @@ include(CheckFunctionExists) include(CheckLibraryExists) include(CheckTypeSize) include(CheckCXXSourceCompiles) +include(TestBigEndian) set(PACKAGE ${APPLICATION_NAME}) set(VERSION ${APPLICATION_VERSION}) @@ -55,3 +56,5 @@ if (WITH_DEBUG_CRYPTO) set(DEBUG_CRYPTO 1) endif (WITH_DEBUG_CRYPTO) +# ENDIAN +test_big_endian(WORDS_BIGENDIAN) diff --git a/config.h.cmake b/config.h.cmake index e86f692..b49b227 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -77,14 +77,8 @@ /* Define to 1 if you want to enable debug output for crypto functions */ #cmakedefine DEBUG_CRYPTO 1 +/*************************** ENDIAN *****************************/ + /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -/* # undef WORDS_BIGENDIAN */ -# endif -#endif +#cmakedefine WORDS_BIGENDIAN 1 |