Give Steve Sommars' real name and work e-mail address.
[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 /* Define if you have the ANSI C header files.  */
24 #define STDC_HEADERS 1
25
26 /* Define if your processor stores words with the most significant
27    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
28 /* #undef WORDS_BIGENDIAN */
29
30 /* Define if lex declares yytext as a char * by default, not a char[].  */
31 #define YYTEXT_POINTER 1
32
33 #define HAVE_PLUGINS            1
34 #define PLUGINS_NEED_ADDRESS_TABLE 1
35
36 /* Plugins can also use the import library of libethereal.dll instead
37    of the old API. In that case we undefine PLUGINS_NEED_ADDRESS_TABLE 
38    for the plugin. We don't undefine PLUGINS_NEED_ADDRESS_TABLE globally.
39    Thus Ethereal will be still able to load plugins using the old API. 
40    The macro HAVE_WIN32_LIBETHEREAL_LIB has to be defined in plugin's 
41    makefile.nmake. A template is available in doc/README.plugins */
42 #ifdef HAVE_WIN32_LIBETHEREAL_LIB
43 #undef PLUGINS_NEED_ADDRESS_TABLE
44 #endif
45
46 /* #undef HAVE_SA_LEN */
47
48 /* #undef NEED_SNPRINTF_H */
49
50 /* #undef NEED_STRERROR_H */
51
52 #define NEED_MKSTEMP 1
53
54 @HAVE_LIBPCAP@
55 @HAVE_PCAP_FINDALLDEVS@
56 @HAVE_PCAP_DATALINK_NAME_TO_VAL@
57 @HAVE_PCAP_DATALINK_VAL_TO_NAME@
58 @WPCAP_CONSTIFIED@
59 @HAVE_LIBETHEREALDLL@
60
61 /* define macro for importing variables from an dll 
62  * it depends on HAVE_LIBETHEREAL and _NEED_VAR_IMPORT_
63  */
64 #if defined (_NEED_VAR_IMPORT_) && defined (HAVE_LIBETHEREALDLL)
65 #  define ETH_VAR_IMPORT __declspec(dllimport) extern
66 #else
67 #  define ETH_VAR_IMPORT extern
68 #endif
69
70 #define HAVE_NET_SNMP 1
71 #define HAVE_SOME_SNMP 1
72
73 /* Define if you have the gethostbyname2 function.  */
74 /* #undef HAVE_GETHOSTBYNAME2 */
75
76 /* Define if you have the getprotobynumber function.  */
77 /* #undef HAVE_GETPROTOBYNUMBER */
78
79 /* Define if you have the <arpa/inet.h> header file.  */
80 /* #undef HAVE_ARPA_INET_H */
81
82 /* Define if you have the <fcntl.h> header file.  */
83 #define HAVE_FCNTL_H 1
84
85 /* Define if you have the <iconv.h> header file.  */
86 /* #undef HAVE_ICONV_H */
87
88 /* Define if you have the <netdb.h> header file.  */
89 /* #undef HAVE_NETDB_H */
90
91 /* Define if you have the <netinet/in.h> header file.  */
92 /* #define HAVE_NETINET_IN_H 1 */
93
94 /* Define if you have the <snmp/snmp.h> header file.  */
95 /* #undef HAVE_SNMP_SNMP_H */
96
97 /* Define if you have the <snmp/version.h> header file.  */
98 /* #undef HAVE_SNMP_VERSION_H */
99
100 /* Define if you have the <stdarg.h> header file.  */
101 #define HAVE_STDARG_H 1
102
103 /* Define if you have the <stddef.h> header file.  */
104 /* #undef HAVE_STDDEF_H */
105
106 /* Define if you have the <sys/ioctl.h> header file.  */
107 /* #undef HAVE_SYS_IOCTL_H */
108
109 /* Define if you have the <sys/socket.h> header file.  */
110 /* #undef HAVE_SYS_SOCKET_H */
111
112 /* Define if you have the <sys/sockio.h> header file.  */
113 /* #undef HAVE_SYS_SOCKIO_H */
114
115 /* Define if you have the <sys/stat.h> header file.  */
116 #define HAVE_SYS_STAT_H 1
117
118 /* Define if you have the <sys/time.h> header file.  */
119 /* #define HAVE_SYS_TIME_H 1 */
120
121 /* Define if you have the <sys/types.h> header file.  */
122 #define HAVE_SYS_TYPES_H 1
123
124 /* Define if you have the <sys/wait.h> header file.  */
125 /* #undef HAVE_SYS_WAIT_H */
126
127 /* Define if you have the <ucd-snmp/version.h> header file.  */
128 /* #undef HAVE_UCD_SNMP_VERSION_H */
129
130 /* Define if you have the <unistd.h> header file.  */
131 /* #define HAVE_UNISTD_H 1 */
132
133 /* Define if <inttypes.h> defines PRI[doxu]64 macros */
134 /* #define INTTYPES_H_DEFINES_FORMATS */
135
136 /* Format for printing 64-bit signed decimal numbers */
137 #ifndef PRId64
138 #ifdef _MSC_EXTENSIONS
139 #define PRId64  "I64d"
140 #else /* _MSC_EXTENSIONS */
141 #define PRId64  "lld"
142 #endif /* _MSC_EXTENSIONS */
143 #endif /* PRId64 */
144
145 /* Format for printing 64-bit unsigned octal numbers */
146 #ifndef PRIo64
147 #ifdef _MSC_EXTENSIONS
148 #define PRIo64  "I64o"
149 #else /* _MSC_EXTENSIONS */
150 #define PRIo64  "llo"
151 #endif /* _MSC_EXTENSIONS */   
152 #endif /* PRIo64 */   
153
154 /* Format for printing 64-bit unsigned decimal numbers */
155 #ifndef PRIu64
156 #ifdef _MSC_EXTENSIONS
157 #define PRIu64  "I64u"
158 #else /* _MSC_EXTENSIONS */
159 #define PRIu64  "llu"  
160 #endif /* _MSC_EXTENSIONS */
161 #endif /* PRIu64 */
162
163 /* Format for printing 64-bit unsigned hexadecimal numbers */
164 #ifndef PRIx64  
165 #ifdef _MSC_EXTENSIONS
166 #define PRIx64  "I64x"
167 #else /* _MSC_EXTENSIONS */
168 #define PRIx64  "llx"
169 #endif /* _MSC_EXTENSIONS */
170 #endif /* PRIx64 */   
171
172 /* Define if you have the z library (-lz).  */
173 @HAVE_LIBZ@
174
175 /* Define to use GNU ADNS library */
176 @HAVE_GNU_ADNS@
177 #define ADNS_JGAA_WIN32 1
178
179 /* Define to use the PCRE library */
180 @HAVE_PCRE@
181
182 #ifndef WIN32
183 #define WIN32                   1
184 #endif
185
186 #define HAVE_WINDOWS_H          1
187 #define HAVE_WINSOCK2_H         1
188 #define HAVE_DIRECT_H           1
189 #define HAVE_IO_H               1
190 #define NEED_INET_ATON_H        1
191 #define NEED_INET_V6DEFS_H      1
192 #define NEED_GETOPT_H           1
193 #define NEED_STRPTIME_H         1
194 #define snprintf                _snprintf
195 #define vsnprintf               _vsnprintf
196 #define strcasecmp              stricmp
197 #define strncasecmp             strnicmp
198 #define open                    _open
199 #define close                   _close
200 #define popen                   _popen
201 #define pclose                  _pclose
202
203 /* Needed for zlib, according to http://www.winimage.com/zLibDll/ */
204 /*#define ZLIB_DLL                1
205 #define _WINDOWS                1*/
206
207 /* Name of package */
208 #define PACKAGE "ethereal"
209
210 /* Version number of package */
211 #define VERSION "@VERSION@"
212
213 /* We don't know what the plugin installation directory will be. */
214 #define PLUGIN_DIR NULL