wireshark/wiretap/config.h.win32
Gilbert Ramirez 339d67b043 Merge in the final code to make Ethereal run on Win32, compiled
with MSVC 6.0 and 'nmake', the make tool that comes with MSVC.

It compiles, links, and runs. It doesn't run correctly. There's a problem
when reading files. I'm getting short reads.  I'm not linking in zlib or
libsnmp because it first needs to be debugged.

I changed the plugin code to use gmodule instead of libltdl, but the
Unix build still links ethereal against libltdl. I'll fix that tonight; sorry
about leaving it in such a sad state, but I wanted to check in this code
before I left work on a Friday night. Ethereal still works, but the
building is less than optimal.

svn path=/trunk/; revision=1479
2000-01-15 00:23:13 +00:00

25 lines
577 B
Text

/* Define if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define if you have the <unistd.h> header file. */
/* #define HAVE_UNISTD_H */
/* Define if you have the z library (-lz). */
/*#define HAVE_LIBZ 1*/
/* Name of package */
#define PACKAGE "libwtap.a"
/* Version number of package */
#define VERSION "0.0.0"
#define HAVE_WINSOCK_H 1
#define HAVE_IO_H 1
#define open _open
#define close _close
/* Needed for zlib, according to http://www.winimage.com/zLibDll/ */
/*#define ZLIB_DLL 1
#define _WINDOWS 1*/