aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2011-06-28Add a missing dependency for text_import_scanner_lex.hStig Bjørlykke1-0/+1
svn path=/trunk/; revision=37817
2011-02-02A bit of Windows makefiles rework and cleanup:Bill Meier1-5/+5
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
2010-11-30Convert the .c file names to .obj before putting them in WIRESHARK_GTK_OBJECTS.Jeff Morriss1-1/+1
svn path=/trunk/; revision=35081
2010-11-30Move the port audio source into a separate variable which is not run through ↵Jeff Morriss1-3/+7
checkapi. svn path=/trunk/; revision=35080
2010-11-30Oh yeah, there's a reason we don't put targets in Makefile.common: the first ↵Jeff Morriss1-3/+13
target in a makefile is what you get when you just run make (without a target). Revert 35073 and 35069. svn path=/trunk/; revision=35075
2010-11-29Move the checkapi targes to Makefile.common. Rename Makefile.nmake's ↵Jeff Morriss1-13/+3
WIRESHARK_GTK_SRC to WIRESHARK_GTK_ALL_SRC to avoid reusing the variable of the same name from Makefile.common; Put DIRTY_GENERATED_C_FILES back in that variable since checkapi is no longer run on it. svn path=/trunk/; revision=35069
2010-11-29Remove DIRTY_GENERATED_C_FILES from WIRESHARK_GTK_SRC so we don't run ↵Jeff Morriss1-4/+1
checkapi on it. Also remove capture_if_details_dlg_win32.c from the checkapi list since it's in WIRESHARK_GTK_SRC (which is in the list of files checkapi is run against). svn path=/trunk/; revision=35067
2010-11-26Move native Win32 code to its own directory and out of gtk directory ↵Stephen Fisher1-16/+9
(hopefully without breaking any builds) svn path=/trunk/; revision=35032
2010-11-16Split libui into libui and libui_dirty. The latter contains (only)Jeff Morriss1-7/+8
text_import_scanner.c (which is generated and not by us so we can't guarantee that it's clean). svn path=/trunk/; revision=34912
2010-11-16Try to clean up the makefile a bit.Anders Broman1-8/+5
svn path=/trunk/; revision=34898
2010-11-13Try to fix the build for text_import_scanner.Anders Broman1-2/+8
Please check if the compile flags are OK... 3:d time lucky ? svn path=/trunk/; revision=34862
2010-11-13Try to fix the build for text_import_scanner.Anders Broman1-1/+1
Please check if the compile flags are OK... svn path=/trunk/; revision=34861
2010-11-13Try to fix the build for text_import_scanner,Anders Broman1-0/+6
not sure if it's correct but now it builds text_import_scanner.c but still fails with: c:\wireshark\gtk\text_import.h(34) : fatal error C1083: Cannot open include file : 'glib.h': No such file or directory NMAKE : fatal error U1077: '"c:\Program Files (x86)\Microsoft Visual Studio 9.0\ VC\BIN\x86_amd64\cl.EXE"' : return code '0x2' Stop. NMAKE : fatal error U1077: '"c:\Program Files (x86)\Microsoft Visual Studio 9.0\ VC\BIN\nmake.exe"' : return code '0x2' Stop. svn path=/trunk/; revision=34858
2010-07-21Fix checkAPI targets so gtk-deprecated and gtk-deprecated-todo checks areBill Meier1-5/+9
properly done. (gtk-deprecated check got inadvertantly removed a while back). svn path=/trunk/; revision=33599
2010-05-02Run deprecated-gtk-todoon all files in the gtk dir.Anders Broman1-1/+1
svn path=/trunk/; revision=32638
2009-10-04make-tapreg-dotc has moved to tools/make-tapreg-dotcKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=30293
2009-08-19Make it possible to run checkapi with "deprecated-gtk-todo".Anders Broman1-3/+10
svn path=/trunk/; revision=29479
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-03-15Add checkapi for deprecated Gtk APIs for which Wireshark is currently clean.Bill Meier1-1/+1
checkapi will Error if any of these APIs are seen. svn path=/trunk/; revision=27730
2009-02-20Replace the clists with gtk_list_storeAnders Broman1-1/+17
Should fix bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3246 svn path=/trunk/; revision=27489
2008-09-16Add /D_BIND_TO_CURRENT_CRT_VERSION=1 to LOCAL_CFLAGS in modern versionsGerald Combs1-16/+16
of Visual C++. (How did this "feature" ever see the light of day?) Make sure we use LOCAL_CFLAGS *everywhere*. This should fix problems with building a usable installer under Visual Studio 2008 SP1. Add comments with links to Visual C++'s idiotic handling of assemblies and deployment using xcopy. Move to c-ares 1.5.3. Make sure we remove all of our manifests in epan and packaging/u3/tools. svn path=/trunk/; revision=26219
2008-08-15Simplify the PortAudio section.Gerald Combs1-16/+15
svn path=/trunk/; revision=26030
2008-08-14From cjkelly1: Add "/MD" to the PortAudio compilation flags. FixesGerald Combs1-16/+16
bug 2791. Don't use "-o" in the PortAudio compilation flags. If we're running Visual C++ 2008, don't use "/Zd" when compiling packet-rrc.c. Fixes bug 2795. svn path=/trunk/; revision=26023
2008-07-02Add Makefile.common files for epan/dfilter and epan/ftypes.Guy Harris1-1/+1
Add checkapi rules to Makefile.am files. svn path=/trunk/; revision=25656
2008-05-23Fix some of the Errors/warnings detected by checkapi.Anders Broman1-2/+7
svn path=/trunk/; revision=25368
2008-05-13Update to Portaudio pa_stable_v19_20071207Tomas Kukosa1-0/+4
svn path=/trunk/; revision=25285
2008-05-06Fix some of the Errors/warnings detected by checkapi.Anders Broman1-0/+3
svn path=/trunk/; revision=25244
2008-04-17... bring into alphabetical orderUlf Lamping1-2/+2
svn path=/trunk/; revision=25087
2008-04-13use the ending "_win32" for every windows specific fileUlf Lamping1-2/+3
svn path=/trunk/; revision=24972
2007-09-24Get rid of the remains of NET-SNMP in the build process.Jörg Mayer1-1/+1
svn path=/trunk/; revision=22934
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-03-21fix all warnings in gtk dir & set the "treat all warnings as errors" MSVC flagUlf Lamping1-1/+1
svn path=/trunk/; revision=21080
2007-03-18Fix Windows Makefiles so clean removes all pdb files (PDB_FILE no longer ↵Bill Meier1-1/+1
defined) svn path=/trunk/; revision=21052
2007-02-07fix a comment typoUlf Lamping1-1/+1
svn path=/trunk/; revision=20731
2006-12-28Move the contents of airpdcap to epan/crypt. Try to fix the currentGerald Combs1-1/+1
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-06Don't define HAVE_AIRPDCAP if HAVE_AIRPCAP isn't defined. Fix a compilerGerald Combs1-1/+1
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-2/+2
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-10-07Alejandro Vaquero:Jörg Mayer1-1/+60
Add portaudio v19 support in addition to v18: Here is a patch using the API 2 (v19). I tested it only in Windows. Attached also the Windows v19 zip file used. I did not modify the Makefile.nmake to download this new version (when running the "setup"), because Windows v18 it is still good. svn path=/trunk/; revision=19446
2006-09-23rtp_player.c is already included in WIRESHARK_GTK_SRC, no need to mention it ↵Ulf Lamping1-1/+0
twice svn path=/trunk/; revision=19299
2006-09-12various nmake related build file cleanupsUlf Lamping1-18/+7
svn path=/trunk/; revision=19198
2006-09-10minor cleanup for making codecsBill Meier1-1/+0
svn path=/trunk/; revision=19184
2006-09-02Fix path and name.Anders Broman1-2/+0
svn path=/trunk/; revision=19120
2006-09-02Move the codecs into a top-level "codecs" subdirectory; there's noGuy Harris1-7/+2
guarantee that all programs using the codecs will necessarily be using GTK+. svn path=/trunk/; revision=19117
2006-08-30From Alejandro Vaquero:Anders Broman1-4/+27
- Change the "listen_rtp" to "rtp_player" - Change from a plugin to be part of the core - By default it will not compile with the rtp_player. In order to compile it is necessary to: + For windows: uncomment the line "PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake + For linux: using the "--with-portaudio=yes" svn path=/trunk/; revision=19094
2006-05-31Rename the main executable to "wireshark", along with more conversions:Gerald Combs1-13/+13
ethereal.com -> wireshark.org mailing lists and addresses ETHEREAL -> WIRESHARK Man pages Automake/Autoconf names svn path=/trunk/; revision=18271
2006-04-20if HHC_DIR is defined in config.nmake, use the Win32 HTMLHELP system (using ↵Ulf Lamping1-1/+4
the user-guide.chm file) svn path=/trunk/; revision=17932
2006-02-13Copy over the file open/save code from the Win32 native branch.Gerald Combs1-1/+2
The Windows-native routines were integrated by inserting #if GTK_MAJOR_VERSION >= 2 && _WIN32 win32_native_routine(GDK_WINDOW_HWND(top_level->window)); return; #endif at the beginning of each GTK+ file routine. There's probably a prettier way to do this. Some of the sizes need to be tweaked in win32-file-dlg.rc, but everything seems to work. Fix up whitespace. svn path=/trunk/; revision=17285
2006-02-07Paolo Abeni:Jörg Mayer1-1/+1
>There is still an issue into the HAVE_LIBGNUTLS macro definition. I'm >fixing it and cleaning a bit the windows side configuration. I hope to >post soon the fix. The attached patch should fix the issue. I missed to modify the config.win32 file and I misstyped a few macros name. svn path=/trunk/; revision=17200
2005-02-20Replace some spaces by TAB to make vim with syntax highlighting happyJörg Mayer1-1/+1
svn path=/trunk/; revision=13437