]> git.saurik.com Git - redis.git/commit
Fix config.h endianess detection to work on Linux / PPC64.
authorantirez <antirez@gmail.com>
Tue, 11 Dec 2012 16:01:00 +0000 (17:01 +0100)
committerantirez <antirez@gmail.com>
Tue, 11 Dec 2012 16:19:58 +0000 (17:19 +0100)
commitd64a9cf514d2101fbad002b8721c9fe1176916ac
tree804ea586481c900721255b57529cfc3088368c82
parentd9301f05e285bd36b824a3d1ed0655bcd1be669e
Fix config.h endianess detection to work on Linux / PPC64.

Config.h performs endianess detection including OS-specific headers to
define the endianess macros, or when this is not possible, checking the
processor type via ifdefs.

Sometimes when the OS-specific macro is included, only __BYTE_ORDER is
defined, while BYTE_ORDER remains undefined. There is code at the end of
config.h endianess detection in order to define the macros without the
underscore, but it was not working correctly.

This commit fixes endianess detection fixing Redis on Linux / PPC64 and
possibly other systems.
src/config.h
src/endianconv.h