aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2009-09-16Use the latest GTK packages.Anders Broman1-0/+19
svn path=/trunk/; revision=29943
2009-08-30Remove superfluous config parametersKovarththanan Rajaratnam1-4/+2
svn path=/trunk/; revision=29633
2009-08-29We require WinPcap > 3.0 so get rid of WPCAP_CONSTIFIED_CONFIGKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=29616
2009-08-27Windows: remove all references to ICONV_DIR, because we use the statically ↵Kovarththanan Rajaratnam1-7/+0
linked win-iconv instead svn path=/trunk/; revision=29580
2009-08-26Add a compile-time option to use a separate thread for reading fromGerald Combs1-0/+2
pipes. Enable this by default on Windows. Remove code that tried to use WaitForSingleObject on a pipe (which Windows doesn't support). Use native file handles and system calls on Windows (which fixes a problem with partial reads I ran into during testing). This should fix bug 1759. svn path=/trunk/; revision=29574
2009-07-16Move th /MP flag setting to LOCAL_CFLAGS set in configure.nmakeAnders Broman1-1/+1
for MSVC variant 2008 only. As suggested by Bill Meier. svn path=/trunk/; revision=29114
2009-07-15Add /MP flag to make use of multi cores.Anders Broman1-1/+1
svn path=/trunk/; revision=29104
2009-07-02Pull mkstemp() into tempfile.c. That's the only place we use it now, andGerald Combs1-3/+2
it's arguably the only place we _should_ use it. Add create_tempdir() to tempfile.c and use it to create a temp directory for IP maps. This should fix bug 3530. (This still doesn't work on IE 8 / Vista here. IE gives an access denied error in OpenLayers.js, but this is a separate issue). svn path=/trunk/; revision=28920
2009-07-01Try to fix HAVE_NEW_PACKET_LIST handling.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=28905
2009-06-21Move the generated documentation (man pages, AUTHORS-SHORT-FORMAT, andJeff Morriss1-17/+4
AUTHORS-SHORT) into doc/. This cleans up the top-level Makefile.am (no more need to have rules for each man page in both files) and solves the parallel-build problem described in: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3494 svn path=/trunk/; revision=28784
2009-06-15clean: remove directory of previous upx301.Bill Meier1-0/+1
svn path=/trunk/; revision=28735
2009-06-14Fix a typo.Bill Meier1-1/+1
svn path=/trunk/; revision=28723
2009-06-14If Makefile.nmake/config.nmake updated: Check versions of individual library ↵Bill Meier1-39/+31
packages. This is in addition to the "tag checking" and will catch cases where a library file has been updated w/o changing the tag. This patch re-enables checking previously done except that now updates to config.nmake will also trigger the check. svn path=/trunk/; revision=28722
2009-06-13Update to you the latest UPX executable/dll compressor.Graeme Lunt1-2/+2
svn path=/trunk/; revision=28718
2009-06-10Update to the GnuTLS 2.8.1Tomas Kukosa1-4/+2
svn path=/trunk/; revision=28689
2009-06-10Upgrade to KFW 3.2.2.Gerald Combs1-2/+3
svn path=/trunk/; revision=28684
2009-06-09Update KFW to 2.6.5.Gerald Combs1-1/+2
svn path=/trunk/; revision=28683
2009-06-02Escape ? in echo text the Windows way ....Bill Meier1-2/+2
svn path=/trunk/; revision=28616
2009-05-29Prevent "echo ? ... " from expanding ? as a file name pattern;Bill Meier1-6/+5
(Trivial) Remove duplicate xcopy of libwireshark.dll; (Trivial) xcopy $(MSVCR_DLL) ... only if newer. svn path=/trunk/; revision=28528
2009-05-29Update the Windows library tags and documentation filename.Gerald Combs1-1/+1
svn path=/trunk/; revision=28527
2009-05-28Version 2: Fix bug: Makefile doesn't detect some out-of-date libraries.Bill Meier1-6/+33
The previous fix (SVN 28504) didn't quite work since nmake always errored out if the libraries were not up-to-date; this prevented doing an nmake ... setup. This version of the fix: 1. Gets the library status (checktag) at the beginning of the make. 2. Effectively does the actual testing of the status whenever a target with $(LIBS_CHECK) as a dependency is invoked. Result: nmake ... [all] will error-out while nmake .... setup will work properly. Note that nmake ... setup will now show an initial error message (from checktag) if the libraries are out of date; setup will still proceed normally. This is a slight change from the current behavior wherein no error message occurs when nmake ... setup is invoked when the libraries are out of date. svn path=/trunk/; revision=28516
2009-05-27Add missing quoteBill Meier1-1/+1
svn path=/trunk/; revision=28505
2009-05-27Fix bug: Makefile doesn't detect some out-of-date libraries.Bill Meier1-1/+11
Reason: The makefile was coded to do the checktag and libverify checks only if makefile.nmake changed. It's now the case that some library updates are reflected in config.nmake rather than in Makefile.nmake and thus were missed. Solution: Do a checktag once at the beginning of the make. Do not do a libverify any more. I think that checking that the library 'tag' is correct is sufficient. (The libverify code has been effectively commented out for now. It can be removed at a later date once we're comfortable with just using checktag). --This line, and those below, will be ignored-- M Makefile.nmake svn path=/trunk/; revision=28504
2009-05-08Make gtk/capture_if_details_dlg_win32.c compileable using MSVC6 with SDKTomas Kukosa1-0/+1
svn path=/trunk/; revision=28314
2009-04-16Check for the existence of a couple of directories and add variables for DLLGerald Combs1-5/+5
names. svn path=/trunk/; revision=28070
2009-04-16Fix the last(?) of the Win64 compilation problems.Gerald Combs1-1/+6
svn path=/trunk/; revision=28065
2009-03-19Use GTK 2.16 and glib 2.20.Anders Broman1-3/+3
svn path=/trunk/; revision=27796
2009-03-17Revert the changes, it blows up when resizeing windows...Anders Broman1-3/+3
svn path=/trunk/; revision=27764
2009-03-17Use GTK 2.16 and glib 2.20.Anders Broman1-3/+3
svn path=/trunk/; revision=27762
2009-03-17Do checkAPIs for wireshark_SOURCESBill Meier1-1/+1
svn path=/trunk/; revision=27754
2009-03-11Port rdps from C to Python. This makes it easier to cross-compileGerald Combs1-3/+2
Wireshark on Windows. The GNU toolchain changes have not been tested. svn path=/trunk/; revision=27704
2009-03-11Use WIRESHARK_TARGET_PLATFORM instead of PLATFORM.Gerald Combs1-13/+13
svn path=/trunk/; revision=27701
2009-03-09Enable checkAPIs on gtk/...Bill Meier1-1/+1
(I believe all the errors for gtk/... have been fixed); Next up: Add the complete list of deprecated GTK APIs to checkAPIs.pl svn path=/trunk/; revision=27681
2009-03-07gettext library setup: Fix a bug and adjust config slightly for win32 soBill Meier1-1/+2
gettext setup works the way I think was intended. svn path=/trunk/; revision=27644
2009-03-07Fix Win32 build breakage.Gerald Combs1-1/+1
svn path=/trunk/; revision=27634
2009-03-07Add preliminary support for Win64 compilation. Attempt to use the sameGerald Combs1-83/+66
set of makefiles and scripts for each platform as much as possible. svn path=/trunk/; revision=27633
2009-02-16Try using the MSVCRT version of Lua (lua5_1_4_Win32_dll6_lib) forGerald Combs1-1/+1
all builds. svn path=/trunk/; revision=27465
2009-02-11add support for a simple GeoIP based IP Location Map, more details will ↵Ulf Lamping1-0/+1
follow on the dev-list svn path=/trunk/; revision=27433
2009-02-09we don't need to copy rawshark.exe.manifest, as this manifest is integrated ↵Ulf Lamping1-1/+0
using mt.exe svn path=/trunk/; revision=27403
2009-02-09Update GnuTls to gnutls-2.6.4-1Tomas Kukosa1-2/+2
svn path=/trunk/; revision=27398
2009-02-02Revert previous checkin.Anders Broman1-11/+0
svn path=/trunk/; revision=27356
2009-02-02Use Python to build tshark-tap-register.cAnders Broman1-0/+11
svn path=/trunk/; revision=27355
2009-01-29trying to "inject" commands into xcopy doesn't work on international windows ↵Ulf Lamping1-3/+4
version. You simply can't answer the question "Datei oder Verzeichnis" with the key 'f' ;-) Replace this with the triple: "copy, if exist delete, rename" which isn't very nice but at least works on all machines svn path=/trunk/; revision=27325
2009-01-13Use Glib 2.18-4 GTK+ 2.14.7 and Cairo 1.8.6.Anders Broman1-6/+6
svn path=/trunk/; revision=27226
2009-01-08display runtime versions of GnuTLS and Gcrypt librariesTomas Kukosa1-9/+10
svn path=/trunk/; revision=27194
2009-01-06As suggested by Joerg a while back, get rid of FAQ in the build directory.Gerald Combs1-13/+7
Copy help/faq.txt to FAQ in the NSIS and zip packages. Add "help" to the dependency list for "all". Fix a couple of minor bugs in the top-level Makfile.nmake. svn path=/trunk/; revision=27173
2008-12-29Use the install-plugins target.Anders Broman1-32/+3
svn path=/trunk/; revision=27125
2008-12-27Use GTK+ 2.14.6Anders Broman1-4/+4
svn path=/trunk/; revision=27121
2008-12-23Add GeoIP to the Windows build. Fix a remaining geoip_ -> geoip_db_Gerald Combs1-1/+7
conversion. svn path=/trunk/; revision=27098
2008-12-17Remove lynx as a dependency on Windows. By default, create the FAQ usingGerald Combs1-1/+5
html2text.py. You can override this by adjusting config.nmake or by setting HTML2TXT. svn path=/trunk/; revision=27041