aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2001-04-12Improvement of 'make clean' targets.Gilbert Ramirez1-2/+3
svn path=/trunk/; revision=3297
2001-04-06Build with zlib.Gilbert Ramirez1-7/+5
Pre-compiled zlib provided at http://www.ethereal.com/distribution/win32/zlib-1.1.3-fixed.zip "fixed" because the pre-compiled version in the "extralibs" package from the Gimp/Win32 page has a fault zlib.lib in it. Add note about zlib in README.win32; more work needs to be done to this file to mention new packaging method. svn path=/trunk/; revision=3263
2001-04-05Use sed in the Win32 build to place the version in various files.Gilbert Ramirez1-2/+2
We us $(VERSION), defined in the top-level config.nmake, to replace @VERSION@ in various files. $(RC_VERSION) and $(WTAP_VERSION) are similarly used. svn path=/trunk/; revision=3258
2001-03-23The Win32 build builds wiretap as a DLL and requires WinPcap 2.1.Gilbert Ramirez1-6/+28
svn path=/trunk/; revision=3163
2001-02-22Etherpeek version 5, 6, and 7 support, from Daniel Thompson.Guy Harris1-1/+2
svn path=/trunk/; revision=3066
2000-09-19Add pppdump.obj to win32 makefile.Gilbert Ramirez1-1/+2
svn path=/trunk/; revision=2449
2000-08-08Added wiretap support to read the Cisco Secure Intrusion Detection System ↵Mike Hall1-1/+2
IPLog format. svn path=/trunk/; revision=2231
2000-05-29Graham Bloice's Win32 Makefile changes to build in batch mode (gets ridGuy Harris1-1/+4
of multiple compile lines in the output of the build, speeds the build up). svn path=/trunk/; revision=2024
2000-04-29Graham Bloice's changes to, on Win32 using Microsoft's "nmake":Guy Harris1-2/+2
build "register.c" in the top-level Makefile; set path in "config.nmake" to include the Cygwin directory for tools - those tools are needed to build "register.c"; remove constructed source files, and some additional object files, when doing "nmake clean". svn path=/trunk/; revision=1896
2000-04-12Build tethereal and editcap on Win32.Gilbert Ramirez1-0/+3
Add RCS ID tags to Makefile.nmake's. svn path=/trunk/; revision=1836
2000-04-06Use the "-o" flag, rather than using the "-t" flag and redirecting theGuy Harris1-1/+1
standard output, in the rules to get Flex to produce scanner code; that way, if Flex fails to run for some reason, we don't leave around a zero-length or otherwise incorrect "XXX-scanner.c" file that might keep a subsequent make from thinking it has to generate that file. svn path=/trunk/; revision=1808
2000-04-04The Win32 port of libpcap requires that programs with which it's builtGuy Harris1-1/+3
be built as multi-threaded programs; add "/MT" to the list of compiler flags. Add "clean" rules in subdirectories, and run subdirectory "nmake -f Makefile.nmake clean" when "nmake -f Makefile.nmake clean" is done in the top-level directory, so that "nmake -f Makefile.nmake clean" cleans everything up. svn path=/trunk/; revision=1791
2000-02-09Update Makefiles for win32. Move local configuration to config.nmake,Gilbert Ramirez1-5/+13
have top-level Makefile.nmake call Makefile.nmake's in subdirectories. Build plugins, and build generated source (lex, yacc). The only thing we can't build is register.c; I need to re-work the top-level Makefile.nmake because it lists object files, not C files, which make-reg-dotc needs. svn path=/trunk/; revision=1608
2000-01-15Merge in the final code to make Ethereal run on Win32, compiledGilbert Ramirez1-2/+1
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-13Add "file_wrappers.c" to the list of things to compile with MicrosoftGuy Harris1-0/+1
Visual C{++}. svn path=/trunk/; revision=1467
1999-12-15Bring it somewhat up to date.Guy Harris1-2/+16
svn path=/trunk/; revision=1345
1999-08-18Changes to compile in win32.Gilbert Ramirez1-2/+3
svn path=/trunk/; revision=515
1999-08-03Update version numbers to 0.7.0, and update win32 Makefiles. I made someGilbert Ramirez1-1/+2
initial #ifdef changes to capture.c to support the win32 version of libpcap. svn path=/trunk/; revision=428
1999-07-21Finally got the win32 ethereal to link properly with MSVC.Gilbert Ramirez1-1/+1
svn path=/trunk/; revision=374
1999-07-13Added support for compiling on win32 with Visual C and 'nmake'. It compiles,Gilbert Ramirez1-0/+17
but does not link. Perhaps someone who understands the MS tools can help out. I made it link a few months ago, but with different version of glib/gtk+. I can't remember how I made it link. Most of the compatibility issues were resolved with adding #ifdef HAVE_UNISTD_H the the source code. Please be sure to add this to all future code. svn path=/trunk/; revision=359