1 /*
2  * Define this if you have a /dev/urandom which can supply good random numbers.
3  */
4 #undef HAVE_DEV_URANDOM
5 
6 /*
7  * Define this if you want IPv6 support.
8  */
9 #undef HAVE_IPv6
10 
11 /*
12  * V6 structures that host may or may not be present.
13  */
14 #undef HAVE_ST_ADDRINFO
15 #undef HAVE_GETIPNODEBYNAME
16 #undef HAVE_SIN6_LEN
17 
18 /*
19  * Define these if your C library is missing some functions...
20  */
21 #undef NEED_VSNPRINTF
22 #undef NEED_INET_PTON
23 #undef NEED_INET_NTOP
24 
25 /*
26  * If you don't have these types in <inttypes.h>, #define these to be
27  * the types you do have.
28  */
29 #undef int8_t
30 #undef int16_t
31 #undef int32_t
32 #undef int64_t
33 #undef uint8_t
34 #undef uint16_t
35 #undef uint32_t
36 
37 /*
38  * Debugging:
39  * DEBUG: general debugging
40  * DEBUG_MEM: debug memory allocation
41  */
42 #undef DEBUG
43 #undef DEBUG_MEM
44 
45 @BOTTOM@
46 
47 #ifndef WORDS_BIGENDIAN
48 #define WORDS_SMALLENDIAN
49 #endif
50 
51 
52