diff options
author | dougb <dougb@FreeBSD.org> | 2008-09-01 22:55:23 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2008-09-01 22:55:23 +0000 |
commit | 595c9597247bc21c2702fb37ffb57643ef422d67 (patch) | |
tree | eac86d97a873c9b1ab40edf505c63fbaa794b9fb /lib/bind | |
parent | 1f3acabb1896f89a0f69765b488a0e125ddb728c (diff) | |
download | FreeBSD-src-595c9597247bc21c2702fb37ffb57643ef422d67.zip FreeBSD-src-595c9597247bc21c2702fb37ffb57643ef422d67.tar.gz |
Update for version 9.4.2-P2
Diffstat (limited to 'lib/bind')
-rw-r--r-- | lib/bind/config.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/bind/config.h b/lib/bind/config.h index cffb26c..014ec4e 100644 --- a/lib/bind/config.h +++ b/lib/bind/config.h @@ -289,9 +289,13 @@ int sigwait(const unsigned int *set, int *sig); /* define if idnkit support is to be included. */ /* #undef WITH_IDN */ -/* Define to 1 if your processor stores words with the most significant byte - first (like Motorola and SPARC, unlike Intel and VAX). */ -/* #undef WORDS_BIGENDIAN */ +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ +#if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +#elif ! defined __LITTLE_ENDIAN__ +/* # undef WORDS_BIGENDIAN */ +#endif /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ |