diff options
author | Slávek Banko <[email protected]> | 2017-01-31 02:45:44 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2017-01-31 02:45:44 +0100 |
commit | 117ec1e9d46baf07823a7a5719101e25e4b29e2d (patch) | |
tree | 9dde4fa0f5d3996124eafbd84bd7072f98de103f /config.h.cmake | |
parent | 357b4594068d36193b0fd99d1d77bb01c9db623d (diff) | |
download | arts-117ec1e9d46baf07823a7a5719101e25e4b29e2d.tar.gz arts-117ec1e9d46baf07823a7a5719101e25e4b29e2d.zip |
Fix detection whether the system is big endian
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake index 655821d..efd9b36 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -1,6 +1,10 @@ /* Defined if you have fvisibility and fvisibility-inlines-hidden support. */ #cmakedefine __KDE_HAVE_GCC_VISIBILITY 1 +/* 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@ + #cmakedefine HAVE_SYS_TIME_H 1 #cmakedefine TIME_WITH_SYS_TIME 1 #cmakedefine HAVE_STDIO_H 1 |