Some packet_list.h -> main_packet_list.h changes.
[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 libwireshark.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 Wireshark will be still able to load plugins using the old API. 
44    The macro HAVE_WIN32_LIBWIRESHARK_LIB has to be defined in plugin's 
45    makefile.nmake. A template is available in doc/README.plugins */
46 #ifdef HAVE_WIN32_LIBWIRESHARK_LIB
47 #undef PLUGINS_NEED_ADDRESS_TABLE
48 #endif
49
50 /* #undef HAVE_SA_LEN */
51
52 /* #undef NEED_STRERROR_H */
53
54 #define NEED_MKSTEMP 1
55
56 @HAVE_LIBPCAP@
57 @HAVE_PCAP_BREAKLOOP@
58 @HAVE_PCAP_FINDALLDEVS@
59 @HAVE_PCAP_DATALINK_NAME_TO_VAL@
60 @HAVE_PCAP_DATALINK_VAL_TO_NAME@
61 @WPCAP_CONSTIFIED@
62 @HAVE_LIBWIRESHARKDLL@
63
64 @HAVE_REMOTE@
65 @HAVE_PCAP_REMOTE@
66 @HAVE_PCAP_OPEN@
67 @HAVE_PCAP_FINDALLDEVS_EX@
68 @HAVE_PCAP_CREATESRCSTR@
69 @HAVE_PCAP_SETSAMPLING@
70
71 @HAVE_AIRPCAP@
72 @HAVE_AIRPDCAP@
73
74 /* availability of pcap_freecode() is handled at runtime */
75 #define HAVE_PCAP_FREECODE 1
76
77 /* define macro for importing variables from an dll 
78  * it depends on HAVE_LIBWIRESHARKDLL and _NEED_VAR_IMPORT_
79  */
80 #if defined (_NEED_VAR_IMPORT_) && defined (HAVE_LIBWIRESHARKDLL)
81 #  define WS_VAR_IMPORT __declspec(dllimport) extern
82 #else
83 #  define WS_VAR_IMPORT extern
84 #endif
85
86 /* Define if you have the gethostbyname2 function.  */
87 /* #undef HAVE_GETHOSTBYNAME2 */
88
89 /* Define if you have the getprotobynumber function.  */
90 /* #undef HAVE_GETPROTOBYNUMBER */
91
92 /* Define if you have the <arpa/inet.h> header file.  */
93 /* #undef HAVE_ARPA_INET_H */
94
95 /* Define if you have the <fcntl.h> header file.  */
96 #define HAVE_FCNTL_H 1
97
98 /* Define if you have the <iconv.h> header file.  */
99 /* #undef HAVE_ICONV */
100
101 /* Define if you have the <netdb.h> header file.  */
102 /* #undef HAVE_NETDB_H */
103
104 /* Define if you have the <netinet/in.h> header file.  */
105 /* #define HAVE_NETINET_IN_H 1 */
106
107 /* Define if you have the <snmp/snmp.h> header file.  */
108 /* #undef HAVE_SNMP_SNMP_H */
109
110 /* Define if you have the <snmp/version.h> header file.  */
111 /* #undef HAVE_SNMP_VERSION_H */
112
113 /* Define if you have the <stdarg.h> header file.  */
114 #define HAVE_STDARG_H 1
115
116 /* Define if you have the <stddef.h> header file.  */
117 /* #undef HAVE_STDDEF_H */
118
119 /* Define if you have the <sys/ioctl.h> header file.  */
120 /* #undef HAVE_SYS_IOCTL_H */
121
122 /* Define if you have the <sys/socket.h> header file.  */
123 /* #undef HAVE_SYS_SOCKET_H */
124
125 /* Define if you have the <sys/sockio.h> header file.  */
126 /* #undef HAVE_SYS_SOCKIO_H */
127
128 /* Define if you have the <sys/stat.h> header file.  */
129 #define HAVE_SYS_STAT_H 1
130
131 /* Define if you have the <sys/time.h> header file.  */
132 /* #define HAVE_SYS_TIME_H 1 */
133
134 /* Define if you have the <sys/types.h> header file.  */
135 #define HAVE_SYS_TYPES_H 1
136
137 /* Define if you have the <sys/wait.h> header file.  */
138 /* #undef HAVE_SYS_WAIT_H */
139
140 /* Define if you have the <unistd.h> header file.  */
141 /* #define HAVE_UNISTD_H 1 */
142
143 /* Define if <inttypes.h> defines PRI[doxu]64 macros */
144 /* #define INTTYPES_H_DEFINES_FORMATS */
145
146 /* Format for printing 64-bit signed decimal numbers */
147 #ifndef PRId64
148 #ifdef _MSC_EXTENSIONS
149 #define PRId64  "I64d"
150 #else /* _MSC_EXTENSIONS */
151 #define PRId64  "lld"
152 #endif /* _MSC_EXTENSIONS */
153 #endif /* PRId64 */
154
155 /* Format for printing 64-bit unsigned octal numbers */
156 #ifndef PRIo64
157 #ifdef _MSC_EXTENSIONS
158 #define PRIo64  "I64o"
159 #else /* _MSC_EXTENSIONS */
160 #define PRIo64  "llo"
161 #endif /* _MSC_EXTENSIONS */   
162 #endif /* PRIo64 */   
163
164 /* Format for printing 64-bit unsigned decimal numbers */
165 #ifndef PRIu64
166 #ifdef _MSC_EXTENSIONS
167 #define PRIu64  "I64u"
168 #else /* _MSC_EXTENSIONS */
169 #define PRIu64  "llu"  
170 #endif /* _MSC_EXTENSIONS */
171 #endif /* PRIu64 */
172
173 /* Formats for printing 64-bit unsigned hexadecimal numbers */
174 /* XXX - it seems that GLib has problems with the MSVC like I64x.
175    As we use GLib's g_sprintf and alike, it should be safe to use
176    llx everywhere now, making the macros pretty useless. For details see:
177    http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1025 */
178 #ifndef PRIx64
179 #ifdef _MSC_EXTENSIONS
180 /*#define PRIx64  "I64x"*/
181 #define PRIx64  "llx"
182 #else /* _MSC_EXTENSIONS */
183 #define PRIx64  "llx"
184 #endif /* _MSC_EXTENSIONS */
185 #endif /* PRIx64 */
186
187 #ifndef PRIX64
188 #ifdef _MSC_EXTENSIONS
189 /*#define PRIX64  "I64X"*/
190 #define PRIX64  "llX"
191 #else /* _MSC_EXTENSIONS */
192 #define PRIX64  "llX"
193 #endif /* _MSC_EXTENSIONS */
194 #endif /* PRIX64 */
195
196 /* Define if you have the z library (-lz).  */
197 @HAVE_LIBZ@
198
199 /* Define to use GNU ADNS library */
200 @HAVE_GNU_ADNS@
201 #define ADNS_JGAA_WIN32 1
202
203 /* Define to use the PCRE library */
204 @HAVE_PCRE@
205
206 /* Define to use the Nettle library */
207 @HAVE_NETTLE@
208
209 /* Define to use the gnutls library */
210 @HAVE_LIBGNUTLS@
211
212 /* Define to use the libgcrypt library */
213 @HAVE_LIBGCRYPT@
214
215 /* Define to use mit kerberos for decryption of kerberos/sasl/dcerpc */
216 @HAVE_KFW@
217 #ifdef HAVE_MIT_KERBEROS
218 #define HAVE_KERBEROS
219 #endif
220
221 /* Define to use Lua */
222 @HAVE_LUA@
223 @HAVE_LUA_5_1@
224
225 /* Define to use Portaudio library */
226 @HAVE_LIBPORTAUDIO@
227 /* Define  version of of the Portaudio library API */
228 @PORTAUDIO_API_1@
229
230 /* Define to have SMI */
231 @HAVE_SMI@
232
233
234 #ifndef WIN32
235 #define WIN32                   1
236 #endif
237
238 #define HAVE_WINDOWS_H          1
239 #define HAVE_WINSOCK2_H         1
240 #define HAVE_DIRECT_H           1
241 #define NEED_INET_ATON_H        1
242 #define NEED_INET_V6DEFS_H      1
243 /* Visual C 9 (2008) now needs these prototypes */
244 #if _MSC_VER == 1500
245 #define NTDDI_VERSION NTDDI_WIN2K
246 #define _WIN32_WINNT _WIN32_WINNT_WIN2K
247 #endif
248 #define NEED_GETOPT_H           1
249 #define NEED_STRPTIME_H         1
250 #define strcasecmp              stricmp
251 #define strncasecmp             strnicmp
252 #define popen                   _popen
253 #define pclose                  _pclose
254
255 /* Needed for zlib, according to http://www.winimage.com/zLibDll/ */
256 /*#define ZLIB_DLL                1
257 #define _WINDOWS                1*/
258
259 /* Name of package */
260 #define PACKAGE "wireshark"
261
262 /* Version number of package */
263 #define VERSION "@VERSION@"
264
265 /* We shouldn't need this under Windows but we'll define it anyway. */
266 #define HTML_VIEWER "mozilla"
267
268 /* Check for the required _MSC_VER */
269 #if MSC_VER_REQUIRED != _MSC_VER
270 #define WS_TO_STRING2(x) #x
271 #define WS_TO_STRING(x) WS_TO_STRING2(x)
272 #pragma message( "_MSC_VER is:" WS_TO_STRING(_MSC_VER) " but required is:" WS_TO_STRING(MSC_VER_REQUIRED) )
273 #error Your MSVC_VARIANT setting in config.nmake doesn't match the MS compiler version!
274 #endif