aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2007-08-12add IANA port-numbers file as a file named "services", with some minor ↵Ulf Lamping1-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
2007-08-10Use the latest GTK2 packagesAnders Broman1-6/+6
svn path=/trunk/; revision=22482
2007-06-11Fix compilation under VS6 (hopefully without breaking compilationGerald Combs1-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
2007-05-25From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.Gerald Combs1-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
2007-05-25Have editcap and capinfos loading the wiretap plugins.Luis Ontanon1-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
2007-05-18From Dustin Johnson:Gerald Combs1-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
2007-05-14Update to the latest Win32 libraries.Gerald Combs1-12/+12
svn path=/trunk/; revision=21770
2007-05-14from Gerhard Gappmeier (ascolab):Ulf Lamping1-0/+1
new dissector for OPCUA protocol svn path=/trunk/; revision=21760
2007-05-09fix manifest dll errorUlf Lamping1-1/+1
svn path=/trunk/; revision=21736
2007-05-06instead of copying the MSVC 2005 manifest files around, embed them into the ↵Ulf Lamping1-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
2007-04-10If MSVCR_DLL or VCREDIST_EXE are defined, add them to the zip packages.Gerald Combs1-2/+16
Zip the entire directory instead of just the top-level contents. svn path=/trunk/; revision=21378
2007-03-26Remove references to the megaco plugin from the top level Makefiles.Jeff Morriss1-1/+0
svn path=/trunk/; revision=21198
2007-03-22Use the latest GTK stuff.Anders Broman1-5/+10
svn path=/trunk/; revision=21122
2007-03-22Even simpler: use 'rm -rf gtk2.tmp'Bill Meier1-2/+1
svn path=/trunk/; revision=21107
2007-03-22Use correct 'rm -f gtk2.tmp/*' so all files in dir get deletedBill Meier1-1/+1
svn path=/trunk/; revision=21106
2007-03-21fix MSVC warnings of / and set CFLAGS to block new warningsUlf Lamping1-1/+1
svn path=/trunk/; revision=21098
2007-03-17minor clean_setup target enhancementsUlf Lamping1-0/+3
svn path=/trunk/; revision=21040
2007-03-14Use the latest GTK packages for Windows.Anders Broman1-8/+8
svn path=/trunk/; revision=21024
2007-01-31instead of putting the MSC_VER_REQUIRED test into the root Makefile (which ↵Ulf Lamping1-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
2007-01-31C preprocessor only handles integers for conditional compilation. Build ↵Ulf Lamping1-1/+1
MSC_VER_REQUIRED in config.nmake and compare it with _MSC_VER in config.h.win32 svn path=/trunk/; revision=20637
2007-01-19As discussed on the devlist:Ulf Lamping1-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
2007-01-19add the user-guide as a component to the setup targetUlf Lamping1-0/+5
svn path=/trunk/; revision=20495
2007-01-17Update to use the latest GTK packages.Anders Broman1-6/+6
Win32-setup.sh changed to overwrite existing folders. svn path=/trunk/; revision=20463
2007-01-11don't generate zlib1.dll over and over againUlf Lamping1-1/+1
svn path=/trunk/; revision=20396
2007-01-10fix some zlib build issuesUlf Lamping1-3/+3
svn path=/trunk/; revision=20382
2007-01-10add a missing dependency to the zlib1.dll, so it will be generated before ↵Ulf Lamping1-1/+1
wiretap svn path=/trunk/; revision=20362
2007-01-08the makefile dependencies are just killing me ;-) Maybe this is the right ↵Ulf Lamping1-3/+3
way to go ... svn path=/trunk/; revision=20342
2007-01-08fix general compilation:Ulf Lamping1-3/+3
- compile wiretap unconditionally fix .NET1.1 + PSDK compilation: - lib.exe tool not available, build dll only (that's just enough) - copy zlib1.dll.manifest file only if it's available, MSVC2003 doesn't generate it svn path=/trunk/; revision=20340
2007-01-08if we don't have MSVC6, download (using the setup target) the zlib source ↵Ulf Lamping1-1/+32
package instead of the dll one, and compile it in a temp dir before continuing with wiretap svn path=/trunk/; revision=20337
2007-01-05don't spread the AirPcap DevPack files over the libs dir, unzip files into: ↵Ulf Lamping1-3/+2
AirPcap_Devpack_1_0_0_594 svn path=/trunk/; revision=20324
2007-01-05Update to the latest Win32 libs: Net-SNMP 5.4 and GNUTLS 1.6.1. EnableGerald Combs1-6/+12
AirPcap. svn path=/trunk/; revision=20321
2007-01-03remove the PDB_FILE setting from config.nmake - there's no real need for ↵Ulf Lamping1-1/+1
this info add some missing files to the clean targets svn path=/trunk/; revision=20290
2007-01-03fix epan\crypt\crypt-md5.objUlf Lamping1-1/+1
svn path=/trunk/; revision=20289
2007-01-03if exist, the install targets should copy pdb and manifest files along with ↵Ulf Lamping1-3/+26
the exe and dll ones svn path=/trunk/; revision=20280
2007-01-02Move epan/crypt-md5.[ch] to epan/crypt. RemoveGerald Combs1-1/+1
epan/crypt/airpdcap_md5.[ch]. Fix up whitespace. svn path=/trunk/; revision=20277
2007-01-02Ehtereal[sic] -> Wireshark. :-)Guy Harris1-1/+1
Give a little more detail in the comment in the H.248 dissector about "MEGACO" vs. "H.248". svn path=/trunk/; revision=20262
2006-12-28Move the contents of airpdcap to epan/crypt. Try to fix the currentGerald Combs1-2/+6
distcheck failure. Move the nmake build targets for airpdcap from epan/dissectors to epan. This will probably break the Windows build. svn path=/trunk/; revision=20231
2006-12-27Use portaudio v19.Anders Broman1-1/+2
svn path=/trunk/; revision=20225
2006-12-26Uh Oh: Fix to properly set SH_FLAGS with 'igncr' if required as part of the ↵Bill Meier1-4/+0
nmake; I violated Murphy's nth law: thou shalt test fixes in an 'out of the box' configuration *not* in one's customized configuration. :( svn path=/trunk/; revision=20221
2006-12-26convert line endings (using dos2unix) of the win32_setup.sh file before using itUlf Lamping1-0/+4
svn path=/trunk/; revision=20215
2006-12-23Update to GNUTLS 1.6.0.Gerald Combs1-5/+5
svn path=/trunk/; revision=20204
2006-12-22use 'rm -rf' so no error if directory already deleted (by 'clean_setup')Bill Meier1-1/+1
svn path=/trunk/; revision=20190
2006-12-21Update to use gtk 2.10.6 and friends.Anders Broman1-4/+26
svn path=/trunk/; revision=20188
2006-12-08Get rid of UCD SNMP support (it's not longer supported andJörg Mayer1-1/+0
superseeded by net-snmp). Replace some_snmp by net_snmp where appropriate. svn path=/trunk/; revision=20071
2006-12-06Don't define HAVE_AIRPDCAP if HAVE_AIRPCAP isn't defined. Fix a compilerGerald Combs1-1/+2
warning in the 802.11 dissector. svn path=/trunk/; revision=20053
2006-12-05From Davide Schiera and Giorgio Tino: Add initial WPA/WPA2 decryptionGerald Combs1-1/+1
support. WEP key preferences have been overloaded to allow WPA keys. The decryption code currently uses Windows-specific data types, but can be converted to use glib equivalents. Add a few text and whitespace fixups. svn path=/trunk/; revision=20049
2006-12-04Use 'igncr' as needed with Bash (workaround for bug report 1162);Bill Meier1-11/+11
Change usage of 'nmake' to $(MAKE) /$(MAKEFLAGS) in a few places; Add one missing /$(MAKEFLAGS); svn path=/trunk/; revision=20034
2006-11-19if the WIRESHARK_LIBS dir isn't already existing, create itUlf Lamping1-0/+1
this fixes problems discussed earlier on the list with cygpath svn path=/trunk/; revision=19934
2006-11-19fix clean_setup targetUlf Lamping1-1/+1
svn path=/trunk/; revision=19933
2006-11-17add the /LARGEADDRESSAWARE to the link process of Wireshark(2) and Tshark. ↵Ulf Lamping1-3/+3
See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/memory/base/physical_address_extension.asp how to enable 3GB support on several Windows versions - I will update the OutOfMemory Wiki page accordingly svn path=/trunk/; revision=19923