Merge branch 'vendor/BINUTILS220' into bu220
[dragonfly.git] / contrib / bind-9.3 / lib / lwres / include / lwres / platform.h.in
1 /*
2  * Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2000, 2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: platform.h.in,v 1.12.2.1.10.5 2005/06/08 02:08:32 marka Exp $ */
19
20 #ifndef LWRES_PLATFORM_H
21 #define LWRES_PLATFORM_H 1
22
23 /*****
24  ***** Platform-dependent defines.
25  *****/
26
27 /***
28  *** Network.
29  ***/
30
31 /*
32  * Define if this system needs the <netinet/in6.h> header file for IPv6.
33  */
34 @LWRES_PLATFORM_NEEDNETINETIN6H@
35
36 /*
37  * Define if this system needs the <netinet6/in6.h> header file for IPv6.
38  */
39 @LWRES_PLATFORM_NEEDNETINET6IN6H@
40
41 /*
42  * If sockaddrs on this system have an sa_len field, LWRES_PLATFORM_HAVESALEN
43  * will be defined.
44  */
45 @LWRES_PLATFORM_HAVESALEN@
46
47 /*
48  * If this system has the IPv6 structure definitions, LWRES_PLATFORM_HAVEIPV6
49  * will be defined.
50  */
51 @LWRES_PLATFORM_HAVEIPV6@
52
53 /*
54  * If this system is missing in6addr_any, LWRES_PLATFORM_NEEDIN6ADDRANY will
55  * be defined.
56  */
57 @LWRES_PLATFORM_NEEDIN6ADDRANY@
58
59 /*
60  * If this system is missing in6addr_loopback, 
61  * LWRES_PLATFORM_NEEDIN6ADDRLOOPBACK will be defined.
62  */
63 @LWRES_PLATFORM_NEEDIN6ADDRLOOPBACK@
64
65 /*
66  * If this system has in_addr6, rather than in6_addr,
67  * LWRES_PLATFORM_HAVEINADDR6 will be defined.
68  */
69 @LWRES_PLATFORM_HAVEINADDR6@
70
71 /*
72  * Defined if unistd.h does not cause fd_set to be delared.
73  */
74 @LWRES_PLATFORM_NEEDSYSSELECTH@
75
76 /*
77  * Used to control how extern data is linked; needed for Win32 platforms.
78  */
79 @LWRES_PLATFORM_USEDECLSPEC@
80
81 /*
82  * Defined this system needs vsnprintf() and snprintf().
83  */
84 @LWRES_PLATFORM_NEEDVSNPRINTF@
85  
86 /*
87  * If this system need a modern sprintf() that returns (int) not (char*).
88  */
89 @LWRES_PLATFORM_NEEDSPRINTF@
90
91 /*
92  * The printf format string modifier to use with lwres_uint64_t values.
93  */
94 @LWRES_PLATFORM_QUADFORMAT@
95
96 /*! \brief
97  * Define if this system needs strtoul.
98  */
99 @LWRES_PLATFORM_NEEDSTRTOUL@
100
101 #ifndef LWRES_PLATFORM_USEDECLSPEC
102 #define LIBLWRES_EXTERNAL_DATA
103 #else
104 #ifdef LIBLWRES_EXPORTS
105 #define LIBLWRES_EXTERNAL_DATA __declspec(dllexport)
106 #else
107 #define LIBLWRES_EXTERNAL_DATA __declspec(dllimport)
108 #endif
109 #endif
110
111 #endif /* LWRES_PLATFORM_H */