From: Shashidhar Bhandare
[obnox/wireshark/wip.git] / config.h.win32
1 /* $Id$ */
2 /* config.h.win32 Generated manually. :-) */
3 /* config.h.  Generated automatically by configure.  */
4 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
5
6 /* Generated Bison and Flex files test whether __STDC__ is defined
7    in order to check whether to use ANSI C features such as "const".
8
9    GCC defines it as 1 even if extensions that render the implementation
10    non-conformant are enabled; Sun's C compiler (and, I think, other
11    AT&T-derived C compilers) define it as 0 if extensions that render
12    the implementation non-conformant are enabled; Microsoft Visual C++
13    6.0 doesn't define it at all if extensions that render the implementation
14    non-conformant are enabled.
15
16    We define it as 0 here, so that those generated files will use
17    those features (and thus not get type warnings when compiled with
18    MSVC++). */
19 #ifndef __STDC__
20 #define __STDC__ 0
21 #endif
22
23 /* Use Unicode in Windows runtime functions. */
24 #define UNICODE 1
25 #define _UNICODE 1
26
27 /* Define if you have the ANSI C header files.  */
28 #define STDC_HEADERS 1
29
30 /* Define if your processor stores words with the most significant
31    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
32 /* #undef WORDS_BIGENDIAN */
33
34 /* Define if lex declares yytext as a char * by default, not a char[].  */
35 #define YYTEXT_POINTER 1
36
37 #define HAVE_PLUGINS            1
38 #define PLUGINS_NEED_ADDRESS_TABLE 1
39
40 /* Plugins can also use the import library of libethereal.dll instead
41    of the old API. In that case we undefine PLUGINS_NEED_ADDRESS_TABLE 
42    for the plugin. We don't undefine PLUGINS_NEED_ADDRESS_TABLE globally.
43    Thus Ethereal will be still able to load plugins using the old API. 
44    The macro HAVE_WIN32_LIBETHEREAL_LIB has to be defined in plugin's 
45    makefile.nmake. A template is available in doc/README.plugins */
46 #ifdef HAVE_WIN32_LIBETHEREAL_LIB
47 #undef PLUGINS_NEED_ADDRESS_TABLE
48 #endif
49
50 /* #undef HAVE_SA_LEN */
51
52 /* #undef NEED_SNPRINTF_H */
53
54 /* #undef NEED_STRERROR_H */
55
56 #define NEED_MKSTEMP 1
57
58 @HAVE_LIBPCAP@
59 @HAVE_PCAP_FINDALLDEVS@
60 @HAVE_PCAP_DATALINK_NAME_TO_VAL@
61 @HAVE_PCAP_DATALINK_VAL_TO_NAME@
62 @WPCAP_CONSTIFIED@
63 @HAVE_LIBETHEREALDLL@
64
65 /* availability of pcap_freecode() is handled at runtime */
66 #define HAVE_PCAP_FREECODE 1
67
68 /* define macro for importing variables from an dll 
69  * it depends on HAVE_LIBETHEREAL and _NEED_VAR_IMPORT_
70  */
71 #if defined (_NEED_VAR_IMPORT_) && defined (HAVE_LIBETHEREALDLL)
72 #  define ETH_VAR_IMPORT __declspec(dllimport) extern
73 #else
74 #  define ETH_VAR_IMPORT extern
75 #endif
76
77 #define HAVE_NET_SNMP 1
78 #define HAVE_SOME_SNMP 1
79
80 /* Define if you have the gethostbyname2 function.  */
81 /* #undef HAVE_GETHOSTBYNAME2 */
82
83 /* Define if you have the getprotobynumber function.  */
84 /* #undef HAVE_GETPROTOBYNUMBER */
85
86 /* Define if you have the <arpa/inet.h> header file.  */
87 /* #undef HAVE_ARPA_INET_H */
88
89 /* Define if you have the <fcntl.h> header file.  */
90 #define HAVE_FCNTL_H 1
91
92 /* Define if you have the <iconv.h> header file.  */
93 /* #undef HAVE_ICONV_H */
94
95 /* Define if you have the <netdb.h> header file.  */
96 /* #undef HAVE_NETDB_H */
97
98 /* Define if you have the <netinet/in.h> header file.  */
99 /* #define HAVE_NETINET_IN_H 1 */
100
101 /* Define if you have the <snmp/snmp.h> header file.  */
102 /* #undef HAVE_SNMP_SNMP_H */
103
104 /* Define if you have the <snmp/version.h> header file.  */
105 /* #undef HAVE_SNMP_VERSION_H */
106
107 /* Define if you have the <stdarg.h> header file.  */
108 #define HAVE_STDARG_H 1
109
110 /* Define if you have the <stddef.h> header file.  */
111 /* #undef HAVE_STDDEF_H */
112
113 /* Define if you have the <sys/ioctl.h> header file.  */
114 /* #undef HAVE_SYS_IOCTL_H */
115
116 /* Define if you have the <sys/socket.h> header file.  */
117 /* #undef HAVE_SYS_SOCKET_H */
118
119 /* Define if you have the <sys/sockio.h> header file.  */
120 /* #undef HAVE_SYS_SOCKIO_H */
121
122 /* Define if you have the <sys/stat.h> header file.  */
123 #define HAVE_SYS_STAT_H 1
124
125 /* Define if you have the <sys/time.h> header file.  */
126 /* #define HAVE_SYS_TIME_H 1 */
127
128 /* Define if you have the <sys/types.h> header file.  */
129 #define HAVE_SYS_TYPES_H 1
130
131 /* Define if you have the <sys/wait.h> header file.  */
132 /* #undef HAVE_SYS_WAIT_H */
133
134 /* Define if you have the <ucd-snmp/version.h> header file.  */
135 /* #undef HAVE_UCD_SNMP_VERSION_H */
136
137 /* Define if you have the <unistd.h> header file.  */
138 /* #define HAVE_UNISTD_H 1 */
139
140 /* Define if <inttypes.h> defines PRI[doxu]64 macros */
141 /* #define INTTYPES_H_DEFINES_FORMATS */
142
143 /* Format for printing 64-bit signed decimal numbers */
144 #ifndef PRId64
145 #ifdef _MSC_EXTENSIONS
146 #define PRId64  "I64d"
147 #else /* _MSC_EXTENSIONS */
148 #define PRId64  "lld"
149 #endif /* _MSC_EXTENSIONS */
150 #endif /* PRId64 */
151
152 /* Format for printing 64-bit unsigned octal numbers */
153 #ifndef PRIo64
154 #ifdef _MSC_EXTENSIONS
155 #define PRIo64  "I64o"
156 #else /* _MSC_EXTENSIONS */
157 #define PRIo64  "llo"
158 #endif /* _MSC_EXTENSIONS */   
159 #endif /* PRIo64 */   
160
161 /* Format for printing 64-bit unsigned decimal numbers */
162 #ifndef PRIu64
163 #ifdef _MSC_EXTENSIONS
164 #define PRIu64  "I64u"
165 #else /* _MSC_EXTENSIONS */
166 #define PRIu64  "llu"  
167 #endif /* _MSC_EXTENSIONS */
168 #endif /* PRIu64 */
169
170 /* Formats for printing 64-bit unsigned hexadecimal numbers */
171 #ifndef PRIx64
172 #ifdef _MSC_EXTENSIONS
173 #define PRIx64  "I64x"
174 #else /* _MSC_EXTENSIONS */
175 #define PRIx64  "llx"
176 #endif /* _MSC_EXTENSIONS */
177 #endif /* PRIx64 */
178
179 #ifndef PRIX64
180 #ifdef _MSC_EXTENSIONS
181 #define PRIX64  "I64X"
182 #else /* _MSC_EXTENSIONS */
183 #define PRIX64  "llX"
184 #endif /* _MSC_EXTENSIONS */
185 #endif /* PRIX64 */
186
187 /* Define if you have the z library (-lz).  */
188 @HAVE_LIBZ@
189
190 /* Define to use GNU ADNS library */
191 @HAVE_GNU_ADNS@
192 #define ADNS_JGAA_WIN32 1
193
194 /* Define to use the PCRE library */
195 @HAVE_PCRE@
196
197 /* Define to use the Nettle library */
198 @HAVE_NETTLE@
199
200 /* Define to use the gnutls library */
201 @HAVE_GNUTLS@
202
203 /* Define to use Lua */
204 @HAVE_LUA@
205 @HAVE_LUA_5_1@
206
207 #ifndef WIN32
208 #define WIN32                   1
209 #endif
210
211 #define HAVE_WINDOWS_H          1
212 #define HAVE_WINSOCK2_H         1
213 #define HAVE_DIRECT_H           1
214 #define NEED_INET_ATON_H        1
215 #define NEED_INET_V6DEFS_H      1
216 #define NEED_GETOPT_H           1
217 #define NEED_STRPTIME_H         1
218 #define snprintf                _snprintf
219 #define strcasecmp              stricmp
220 #define strncasecmp             strnicmp
221 #define popen                   _popen
222 #define pclose                  _pclose
223
224 /* Needed for zlib, according to http://www.winimage.com/zLibDll/ */
225 /*#define ZLIB_DLL                1
226 #define _WINDOWS                1*/
227
228 /* Name of package */
229 #define PACKAGE "ethereal"
230
231 /* Version number of package */
232 #define VERSION "@VERSION@"
233
234 /* We don't know what the plugin installation directory will be. */
235 #define PLUGIN_DIR NULL
236
237 /* We shouldn't need this under Windows but we'll define it anyway. */
238 #define HTML_VIEWER "mozilla"