aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2013-12-02Move most of the plugin code from epan to wsutil and remove allGuy Harris1-3/+0
knowledge of particular types of plugins. Instead, let particular types of plugins register with the common plugin code, giving a name and a routine to recognize that type of plugin. In particular applications, only process the relevant plugin types. Add a Makefile.common to the codecs directory. svn path=/trunk/; revision=53710
2013-12-01- Rename PCAP_VERSION to WINPCAP_VERSION - the version of the underlyingJörg Mayer1-1/+1
pcap probably is different from the WinPcap version. - Set WINPCAP_VERSION for cmake builds to "unknown" - Oh, the NEWS file changed again. svn path=/trunk/; revision=53690
2013-11-21Try to get qmake to create wireshark-tap-register.c.Gerald Combs1-0/+3
svn path=/trunk/; revision=53466
2013-11-17Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris1-2/+1
packet dissection, they're specific to the entire Wireshark suite of programs. svn path=/trunk/; revision=53377
2013-10-27Fix relative path now that u3 folder has been removedPascal Quantin1-3/+3
svn path=/trunk/; revision=52898
2013-10-27Remove U3 code and packaging.Gerald Combs1-15/+0
svn path=/trunk/; revision=52896
2013-10-17If static analysis is enabled disable error checking when compiling theGerald Combs1-0/+7
Qt code. This should hopefully work around a builder issue. svn path=/trunk/; revision=52661
2013-10-12Update the User Guide for the upcoming 1.11.0 releasePascal Quantin1-1/+1
svn path=/trunk/; revision=52576
2013-10-12Update to the latest Windows library tags. Add an "install_qt" target.Gerald Combs1-1/+4
svn path=/trunk/; revision=52558
2013-10-12QT_DIR → QT5_BASE_DIR. This matches the CMake environment.Gerald Combs1-9/+9
svn path=/trunk/; revision=52557
2013-10-11Look for Qt in WIRESHARK_LIB_DIR. Add a conditional check for qmake.Gerald Combs1-0/+6
svn path=/trunk/; revision=52556
2013-10-11"install-generated-files" depends on "doc". Set dependenciesGerald Combs1-2/+2
accordingly. svn path=/trunk/; revision=52530
2013-10-11qtshark.exe doesn't depend on tshark_OBJECTS.Gerald Combs1-1/+1
svn path=/trunk/; revision=52529
2013-10-11Don't return an error if cleaning the Qt directory fails.Gerald Combs1-3/+3
svn path=/trunk/; revision=52525
2013-10-10Revert the changes made to resolve ↵Chris Maynard1-2/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3528 (When following an HTTP tcp stream decode gzip data automatically), as they caused a bigger problem reported in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9044 ("Follow TCP Stream" shows only first HTTP req+res). #BACKPORT(1.10) svn path=/trunk/; revision=52506
2013-10-10As the Qt build will not use portaudio, we don't need toJörg Mayer1-3/+2
put portaudio flags into config.pri svn path=/trunk/; revision=52485
2013-10-08Add some QT_DIR checks.Gerald Combs1-0/+8
svn path=/trunk/; revision=52459
2013-10-08Add an initial Qt configuration and makefile targets.Gerald Combs1-0/+19
svn path=/trunk/; revision=52456
2013-09-11Define NOMINMAX for the entire Qt build.Gerald Combs1-1/+3
svn path=/trunk/; revision=51955
2013-08-07Switch to make-services.py. Fix some variable names and version tests.Gerald Combs1-2/+2
svn path=/trunk/; revision=51189
2013-07-30Add a routine to get application memory usage to epan.Anders Broman1-3/+3
svn path=/trunk/; revision=51023
2013-07-28clean target misses some build artefacts; capinfos.lib and editcap.libGraham Bloice1-1/+1
svn path=/trunk/; revision=50972
2013-07-24Make it possible to use GetProcessMemoryInfo on Windows.Anders Broman1-1/+5
svn path=/trunk/; revision=50865
2013-07-20GeoIP 1.5.1.Gerald Combs1-0/+1
svn path=/trunk/; revision=50742
2013-07-15Move report_err.{h,c} from epan into wsutil: there's nothing epan-specific ↵Jeff Morriss1-1/+0
there and moving it avoids having to recompile the file for use in editcap and capinfos (which don't link against libwireshark). svn path=/trunk/; revision=50598
2013-07-12Move the print modules into epan.Jeff Morriss1-4/+2
svn path=/trunk/; revision=50526
2013-07-10Add strnatcmp by Martin Pool for 'natural order' string comparisons, and ↵Chris Maynard1-3/+3
make use of it in editcap and mergecap for listing encapsulation types. For example: Before: user0 - USER 0 user1 - USER 1 user10 - USER 10 user11 - USER 11 user12 - USER 12 user13 - USER 13 user14 - USER 14 user15 - USER 15 user2 - USER 2 user3 - USER 3 user4 - USER 4 user5 - USER 5 user6 - USER 6 user7 - USER 7 user8 - USER 8 user9 - USER 9 After: user0 - USER 0 user1 - USER 1 user2 - USER 2 user3 - USER 3 user4 - USER 4 user5 - USER 5 user6 - USER 6 user7 - USER 7 user8 - USER 8 user9 - USER 9 user10 - USER 10 user11 - USER 11 user12 - USER 12 user13 - USER 13 user14 - USER 14 user15 - USER 15 svn path=/trunk/; revision=50482
2013-06-25Allow the Gtk+ and Qt versions to be built simultaneously (with autotools).Jeff Morriss1-2/+2
./configure now accepts: --with-gtk2 : enabled by default; exclusive of --with-gtk3 --with-gtk3 : disabled by default; exclusive of --with-gtk2 --with-qt : disabled by default, can be specified with gtk --enable-wireshark : controls whether *any* GUI is built If Qt is enabled then a new program is created: "wireshark-qt". "wireshark" remains the Gtk+ version. svn path=/trunk/; revision=50147
2013-06-25makefile.nmake -> Makefile.nmake and minor whitespace (spaces -> tabs) changes.Chris Maynard1-63/+63
svn path=/trunk/; revision=50140
2013-05-30Upgrade user manualPascal Quantin1-1/+1
svn path=/trunk/; revision=49634
2013-05-29Correct the c-ares directory name in the clean_setup target.Chris Maynard1-1/+1
#BACKPORT(1.10) svn path=/trunk/; revision=49616
2013-05-22Add dftest.exe to EXECUTABLES. For clean-local target, clean randpkt.exe, ↵Chris Maynard1-3/+4
not randpkt.ext. svn path=/trunk/; revision=49514
2013-05-01Install and uninstall our global profiles.Gerald Combs1-0/+5
svn path=/trunk/; revision=49123
2013-03-09Switch to WinPcap 4.1.3.Gerald Combs1-1/+1
svn path=/trunk/; revision=48207
2013-03-08Switch to c-ares 1.9.1.Gerald Combs1-0/+1
svn path=/trunk/; revision=48191
2013-03-07Revert part of r48021: those hunks are no more needed with r48170Pascal Quantin1-4/+0
svn path=/trunk/; revision=48171
2013-03-07From Balint:Gerald Combs1-2/+2
[PATCH 1/2] Revert "Try to fix the "LNK4217: locally defined symbol" warnings. This reverts commit r48158. [PATCH 2/2] Employ small hack in editcap to link with a few objects from libwireshark properly From me: Add the ability to reset symbol exports via ws_symbol_export.h's include guard and do so in capinfos.c and editcap.c. We include ws_symbol_export.h in over 200 files so it didn't seem to make sense to remove its include guard entirely. svn path=/trunk/; revision=48170
2013-03-07Try to fix the "LNK4217: locally defined symbol" warnings.Gerald Combs1-2/+2
svn path=/trunk/; revision=48158
2013-03-04Don't define WS_BUILD_DLL when building capinfos and editcap. In the caseGerald Combs1-2/+2
of capinfos this breaks getopt because optind isn't properly imported. svn path=/trunk/; revision=48072
2013-03-02Try to fix LNK4217 (locally defined symbol imported in function) and C4273 ↵Pascal Quantin1-1/+6
(inconsistent DLL linkage) warnings when compiling for Windows svn path=/trunk/; revision=48021
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-4/+0
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-02-19Add automatic software update checks for Win32 using WinSparkle. AddGerald Combs1-1/+12
preferences (currently hidden) to disable updates, set the update frequency, and set the update "channel" (stable vs development). Add a "Help" menu item to manually check for updates. svn path=/trunk/; revision=47748
2013-01-07Copy over any mibs that might be in the site directory.Chris Maynard1-0/+1
svn path=/trunk/; revision=46987
2012-12-28Remove redundant SUBSYSTEM link option from link commands.Bill Meier1-11/+14
[ $(guiflags) or $(conflags) specified as part of the link options includes the SUBSYSTEM option ]. svn path=/trunk/; revision=46831
2012-12-21This should get it building on Windows.Michael Tüxen1-3/+3
svn path=/trunk/; revision=46676
2012-12-21Try to get text2pcap building on Windows.Michael Tüxen1-3/+3
svn path=/trunk/; revision=46675
2012-12-18text2pcap needs only the wsutil lib, not the wiretap lib (as far as I can see).Michael Tüxen1-1/+1
svn path=/trunk/; revision=46600
2012-12-13Bug 3528 - When following an HTTP tcp stream decode gzip data automatically ↵Michael Mann1-2/+2
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3528) includes patch from bug (with actual functionality) + changes to makefiles to make it compile/link on Windows svn path=/trunk/; revision=46530
2012-12-11Update the User's Guide to 1.9Pascal Quantin1-1/+1
svn path=/trunk/; revision=46503
2012-12-07Update the User's Guide to 1.8Pascal Quantin1-1/+1
svn path=/trunk/; revision=46463