]> git.saurik.com Git - redis.git/commitdiff
Ehm... sorry if we don't support PDP endianess
authorantirez <antirez@gmail.com>
Wed, 9 Mar 2011 15:33:09 +0000 (16:33 +0100)
committerantirez <antirez@gmail.com>
Wed, 9 Mar 2011 15:33:09 +0000 (16:33 +0100)
src/config.h

index 07700bed6e82344b940aa74c6d1de4481a26b4cb..d98067c1f035df7ba72b6b153a0debb668495d82 100644 (file)
 #endif
 
 #if !defined(BYTE_ORDER) || \
-    (BYTE_ORDER != BIG_ENDIAN && BYTE_ORDER != LITTLE_ENDIAN && \
-    BYTE_ORDER != PDP_ENDIAN)
+    (BYTE_ORDER != BIG_ENDIAN && BYTE_ORDER != LITTLE_ENDIAN)
        /* you must determine what the correct bit order is for
         * your compiler - the next line is an intentional error
         * which will force your compiles to bomb until you fix