diff options
| author | Xin LI <delphij@FreeBSD.org> | 2010-06-12 05:21:29 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2010-06-12 05:21:29 +0000 |
| commit | 41d021435300237a32c279b1e735c289d586f692 (patch) | |
| tree | d60e10b472c339586350a9d584a791406f8e0558 /lib | |
| parent | c9a1e85664dd15d3b77da800bacfc3b66f79af3e (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/liblzma/config.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/liblzma/config.h b/lib/liblzma/config.h index 223cb9574d06..e7b61bb95f98 100644 --- a/lib/liblzma/config.h +++ b/lib/liblzma/config.h @@ -84,6 +84,12 @@ # define __EXTENSIONS__ 1 #endif #define VERSION "4.999.9beta" +#if defined(__FreeBSD__) +#include <machine/endian.h> +#if _BYTE_ORDER == _BIG_ENDIAN +# define WORDS_BIGENDIAN 1 +#endif +#else #if defined AC_APPLE_UNIVERSAL_BUILD # if defined __BIG_ENDIAN__ # define WORDS_BIGENDIAN 1 @@ -93,3 +99,4 @@ /* # undef WORDS_BIGENDIAN */ # endif #endif +#endif |
