aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
Commit message (Collapse)AuthorAgeFilesLines
* Initial Portable Apps (www.portableapps.com) packaging to produce a ↵Graeme Lunt2007-11-021-0/+15
| | | | | | | | | | | | | | | "Wireshark Portable" (WSP) distribution. This allows Wireshark to be run from any USB stick, unlike the U3 packaging which must be installed on a specific U3 device. The packaging basically builds upon the U3 distribution so new libraries/config only need to be added to the U3 makefile to update both distributions. It still takes a "dumb" approach to WinPcap - installing it if it is not already installed and removing it (if WSP installed it) when Wireshark quits. (This is worse than the U3 packaging which only uninstalls WinPcap when the device is removed.) Really must talk to the WinPcap guys to see how we can make this less intrusive. I am talking to John Haller (the Portable Apps guy) about fine tuning the distribution. svn path=/trunk/; revision=23340
* Fix Windows build error if not using LUA; Bug #1950Bill Meier2007-10-281-2/+4
| | | | svn path=/trunk/; revision=23296
* For the Wireshark/TShark -> dumpcap signal pipe on Windows, use a namedGerald Combs2007-10-261-2/+2
| | | | | | | | | | | | | pipe instead of stdin. Add an argument (currently the parent PID) back to the "-Z" flag and use it to construct the pipe name. This lets us pass the parent's stdin handle to dumpcap, which lets us capture from stdin on Windows. Add a comment about checking for the parent process. In capture_loop.c, remove the wait_forever argument from cap_pipe_select() since it was always FALSE. Set the timeout under Windows to 250 ms instead of 250000 ms. svn path=/trunk/; revision=23279
* Allow wimaxasncp plugin to be found in Windows dev build.Martin Mathieson2007-10-221-0/+3
| | | | svn path=/trunk/; revision=23235
* Use gtk 2.12.1Anders Broman2007-10-181-6/+6
| | | | svn path=/trunk/; revision=23229
* Oops: Backout the library updates until libraries configured for download... ↵Bill Meier2007-10-181-6/+6
| | | | | | (??) svn path=/trunk/; revision=23228
* Updated GTK/Glib/Pango LibrariesBill Meier2007-10-181-6/+6
| | | | svn path=/trunk/; revision=23227
* text2pcap now depends on libwiretap (for eth_fopen()) but only on Windows. ↵Jeff Morriss2007-10-161-2/+6
| | | | | | Make it depend on libwiretap on *NIX, too, only to keep things in sync. svn path=/trunk/; revision=23209
* Make MGCP a builtin dissector to reduce the number of plugins.Anders Broman2007-10-151-1/+0
| | | | | | (Leave the MGCP plugin dir for now). svn path=/trunk/; revision=23190
* Fix Windows maintainer-clean/distclean/clean to recurse thru subdirs only ↵Bill Meier2007-10-151-3/+9
| | | | | | once (instead of worst-case 1+2+3 times) svn path=/trunk/; revision=23187
* fix 'nmake ... clean' to include dumpcap specific objectsBill Meier2007-10-111-2/+2
| | | | svn path=/trunk/; revision=23144
* Use GTK+ 2.12Anders Broman2007-09-251-70/+38
| | | | svn path=/trunk/; revision=22955
* Get rid of the remains of NET-SNMP in the build process.Jörg Mayer2007-09-241-18/+3
| | | | svn path=/trunk/; revision=22934
* Fix my earlier typo.Bill Meier2007-09-101-1/+1
| | | | svn path=/trunk/; revision=22835
* don't try to put a ## comment after the touch call, this will end up in a ↵Ulf Lamping2007-09-091-1/+2
| | | | | | few strange new files generated svn path=/trunk/; revision=22830
* - "quote" source dir of packaging_zip1 and packaging_zip2, so it also works ↵Ulf Lamping2007-09-051-6/+7
| | | | | | | | with spaces in this path - epan now depends on zlib and wiretap, add dependencies accordingly svn path=/trunk/; revision=22799
* Verify existence of required downloaded library packages during make after ↵Bill Meier2007-09-021-78/+105
| | | | | | Makefile.nmake updated svn path=/trunk/; revision=22769
* always compile zlib.dll from source (even on MSVC6 now), this simplifies the ↵Ulf Lamping2007-08-281-9/+0
| | | | | | makefiles a bit and (more important) removes an annoying behaviour if you switch between compiler versions - you'll need to run the setup target each time you switch svn path=/trunk/; revision=22714
* Get smi_modules in the distribLuis Ontanon2007-08-271-0/+1
| | | | svn path=/trunk/; revision=22694
* libsmi was missing from the CFLAGSLuis Ontanon2007-08-261-1/+1
| | | | svn path=/trunk/; revision=22676
* Use config and makefile from Chris Maynard and Luis instead.Anders Broman2007-08-261-5/+15
| | | | svn path=/trunk/; revision=22672
* Download libsmiAnders Broman2007-08-261-0/+4
| | | | svn path=/trunk/; revision=22671
* complete the death of the h223 pluginRichard van der Hoff2007-08-241-1/+0
| | | | svn path=/trunk/; revision=22635
* Add the UNISTIM plugin to Wireshark.Jaap Keuter2007-08-201-0/+1
| | | | svn path=/trunk/; revision=22558
* add IANA port-numbers file as a file named "services", with some minor ↵Ulf Lamping2007-08-121-0/+1
| | | | | | | | explanations from me at the top of that file add it to the distributed files, to the Win32 NSIS and U3 packages. UNIX packages will still miss this (optional) file. svn path=/trunk/; revision=22487
* Use the latest GTK2 packagesAnders Broman2007-08-101-6/+6
| | | | svn path=/trunk/; revision=22482
* Fix compilation under VS6 (hopefully without breaking compilationGerald Combs2007-06-111-9/+12
| | | | | | | | | | anywhere else). Instead of using getaddrinfo() and getnameinfo(), promote inet_pton.c and inet_ntop.c to the top level and use those routines instead. (It's 2007, for crying out loud. Why is this even an issue?) svn path=/trunk/; revision=22075
* From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.Gerald Combs2007-05-251-0/+2
| | | | | | | Add support for WiMAX and M2M to various makefiles and installer files. Add basic support for M2M to randpkt. svn path=/trunk/; revision=21945
* Have editcap and capinfos loading the wiretap plugins.Luis Ontanon2007-05-251-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | epan/filesystem.c have get_plugin_dir() calling init_plugin_dir() if necessary epan/epan.c and epan/report_err.c move the report_failure family into the new report_err.c file, have epan_init() calling the initializer epan/plugins.h and epan/proto.c do not have init_plugins() calling the proto_reg functions instead do it in init_proto() gtk/main.c and tshark.c init_plugin_dir() has become suprefluous capinfos.c and editcap.c load the wiretap plugins Makefiles do what's needed to build withe the above changes. svn path=/trunk/; revision=21935
* From Dustin Johnson:Gerald Combs2007-05-181-1/+1
| | | | | | | | | | | | | | - Update the wireless/AirPcap GUI code to support 802.11n as well as some related upcoming code changes. - Remove airpcap.h from the repository, since it exists in the AirPcap devpack (and will be superseded Real Soon Now). - Show the individual channel flag bits in radiotap. Fix the 802.11n MCS set display. This is a partial checkin, so hopefully nothing is broken. svn path=/trunk/; revision=21831
* Update to the latest Win32 libraries.Gerald Combs2007-05-141-12/+12
| | | | svn path=/trunk/; revision=21770
* from Gerhard Gappmeier (ascolab):Ulf Lamping2007-05-141-0/+1
| | | | | | new dissector for OPCUA protocol svn path=/trunk/; revision=21760
* fix manifest dll errorUlf Lamping2007-05-091-1/+1
| | | | svn path=/trunk/; revision=21736
* instead of copying the MSVC 2005 manifest files around, embed them into the ↵Ulf Lamping2007-05-061-11/+33
| | | | | | .exe / .dll files - this way is easier to handle while packaging and alike, and probably will solve some problems. We might want to do this for the plugins as well later. svn path=/trunk/; revision=21696
* If MSVCR_DLL or VCREDIST_EXE are defined, add them to the zip packages.Gerald Combs2007-04-101-2/+16
| | | | | | Zip the entire directory instead of just the top-level contents. svn path=/trunk/; revision=21378
* Remove references to the megaco plugin from the top level Makefiles.Jeff Morriss2007-03-261-1/+0
| | | | svn path=/trunk/; revision=21198
* Use the latest GTK stuff.Anders Broman2007-03-221-5/+10
| | | | svn path=/trunk/; revision=21122
* Even simpler: use 'rm -rf gtk2.tmp'Bill Meier2007-03-221-2/+1
| | | | svn path=/trunk/; revision=21107
* Use correct 'rm -f gtk2.tmp/*' so all files in dir get deletedBill Meier2007-03-221-1/+1
| | | | svn path=/trunk/; revision=21106
* fix MSVC warnings of / and set CFLAGS to block new warningsUlf Lamping2007-03-211-1/+1
| | | | svn path=/trunk/; revision=21098
* minor clean_setup target enhancementsUlf Lamping2007-03-171-0/+3
| | | | svn path=/trunk/; revision=21040
* Use the latest GTK packages for Windows.Anders Broman2007-03-141-8/+8
| | | | svn path=/trunk/; revision=21024
* instead of putting the MSC_VER_REQUIRED test into the root Makefile (which ↵Ulf Lamping2007-01-311-1/+1
| | | | | | would require to change ALL makefiles - the buildbot revealed it), simply put it in the wiretap generation. As wiretap is mandatory and one of the first things to be build this doesn't even sound like a bad idea anyway ... svn path=/trunk/; revision=20646
* C preprocessor only handles integers for conditional compilation. Build ↵Ulf Lamping2007-01-311-1/+1
| | | | | | MSC_VER_REQUIRED in config.nmake and compare it with _MSC_VER in config.h.win32 svn path=/trunk/; revision=20637
* As discussed on the devlist:Ulf Lamping2007-01-191-4/+3
| | | | | | | | A clean_setup is done first now to ensure that the target dirs don't contain old files - probably remaining from a previous setup run. explicit removing of the gtk2 dir is no longer required therefore svn path=/trunk/; revision=20497
* add the user-guide as a component to the setup targetUlf Lamping2007-01-191-0/+5
| | | | svn path=/trunk/; revision=20495
* Update to use the latest GTK packages.Anders Broman2007-01-171-6/+6
| | | | | | Win32-setup.sh changed to overwrite existing folders. svn path=/trunk/; revision=20463
* don't generate zlib1.dll over and over againUlf Lamping2007-01-111-1/+1
| | | | svn path=/trunk/; revision=20396
* fix some zlib build issuesUlf Lamping2007-01-101-3/+3
| | | | svn path=/trunk/; revision=20382
* add a missing dependency to the zlib1.dll, so it will be generated before ↵Ulf Lamping2007-01-101-1/+1
| | | | | | wiretap svn path=/trunk/; revision=20362