aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
AgeCommit message (Collapse)AuthorFilesLines
2003-12-10Bump the version to 0.10.0. It could be (and has been) argued that theGerald Combs1-3/+3
last release should have been 0.10.0. svn path=/trunk/; revision=9235
2003-12-07Add PCRE support to the Windows build.Gerald Combs1-1/+32
svn path=/trunk/; revision=9185
2003-12-05Switch over to Net-SNMP 5.1. A ZIP file of the Net-SNMP 5.1 sources plusGerald Combs1-2/+2
a static Windows library (netsnmp.lib) has been placed at http://www.ethereal.com/distribution/win32/development/ The Net-SNMP documentation recommends against using a DLL at the present time. svn path=/trunk/; revision=9177
2003-12-01Switch to the new (and official) zlib DLL from www.gzip.org.Gerald Combs1-4/+4
svn path=/trunk/; revision=9127
2003-11-15added gdk_pixbuf to GTK2 specific libs to link (needed in toolbar.c)Ulf Lamping1-1/+2
svn path=/trunk/; revision=8972
2003-11-11Get rid of GLib 1.3 support - current versions of GTK+ 1.3 require GLibGuy Harris1-30/+26
2.0, and earlier versions are sufficiently buggy that we don't want to support them. svn path=/trunk/; revision=8939
2003-11-07Let people configure whether to build with Zlib or not solely byGuy Harris1-1/+20
controlling whether ZLIB_DIR is defined or not in config.nmake. svn path=/trunk/; revision=8911
2003-11-02Bump the version number to 0.9.16.Gerald Combs1-3/+3
svn path=/trunk/; revision=8861
2003-10-10Configure whether we have WinPcap based on whether WINPCAP_VERSION isGuy Harris1-1/+19
set in the config.nmake file. Configure whether we have pcap_findalldevs() based on whether WINPCAP_VERSION is 2.3 (if so, we don't) or 3.0 or 3.1 (if so, we do). WinPcap 3.0 has the new libpcap declarations of "pcap_lookupnet()" and "pcap_open_live()" in which the first argument is a "const char *" rather than a "char *"; declare the functions and pointers to them appropriately based on the version of WinPcap. If we don't have pcap_findalldevs(), don't declare a pointer to it, as we don't have a declaration of pcap_if_t. We also need to refer to "pcap_freealldevs()", so make a pointer for it. "symbols[]" is a const array; make the pointer to elements in it a const pointer. Fix some typoes. svn path=/trunk/; revision=8660
2003-09-08Bump the version to 0.9.15. Update the NEWS and ChangeLog to August 27. MoreGerald Combs1-3/+3
updates to come. svn path=/trunk/; revision=8410
2003-08-24Add default development package locations to README.win32. Use zlib 1.1.4Gerald Combs1-2/+2
by default in config.nmake. svn path=/trunk/; revision=8246
2003-08-19Define GCC_GLIB_CFLAGS as a GCC equivalent of GLIB_CFLAGS, and use itGuy Harris1-1/+4
instead of -I$(GLIB_DIR) when running GCC to generate the xyzzy file, so that the right -I flags are used. svn path=/trunk/; revision=8190
2003-08-04Build with Glib 2.0 and GTK+ 1.3 by default. Don't build with zlib 1.13.Gerald Combs1-3/+3
Add minor updates to README.win32. svn path=/trunk/; revision=8126
2003-08-04From Lars Roland: add support for GTK+ 1.3 with GLib 2.0 (the latestGuy Harris1-1/+13
GTK+ 1.3[.x]-for-Win32, which fixes several GTK+ problems, requires GLib 2.0, not GLib 1.3). svn path=/trunk/; revision=8125
2003-07-23Prep for the 0.9.14 releaseGerald Combs1-3/+3
svn path=/trunk/; revision=8068
2003-06-26Well, you need more than just an escaped # to handle the undef, so goGuy Harris1-2/+2
back to defining it as nothing. svn path=/trunk/; revision=7939
2003-06-25OK, try bringing back the #undef, now that we know how to escape the #.Guy Harris1-2/+2
svn path=/trunk/; revision=7927
2003-06-24Properly escape the '#' character in the HAVE_GNU_ADNS definition.Gerald Combs1-2/+3
svn path=/trunk/; revision=7924
2003-06-17Handle the 1.3 vs. 2.x issue similarly to the way Lars Roland's patchesGuy Harris1-30/+30
did, basing the path name structure on the version number, but handle GLib and GTK+ orthogonally. svn path=/trunk/; revision=7896
2003-06-17From Lars Roland:Guy Harris1-5/+7
fix typo in my earlier checkin - GTK_GLIB_DIR should be GLIB_GTK_DIR; look for headers in "lib\glib-$(GLIB_VERSION)\include and "lib\gtk-$(GTK_VERSION)\include, as that's where the 2.x packages hide "glibconfig.h" and "gdkconfig.h". svn path=/trunk/; revision=7894
2003-06-16"!IFDEF" just takes the name of the variable as an argument.Guy Harris1-4/+4
We do have to look for headers in $(GTK_DIR)\gdk when using the development packages from the Ethereal Web site, as "gdkconfig.h" is in that directory but it's included as <gdkconfig.h>. The commented string for ADNS_CONFIG doesn't appear to get substituted as we want it to be; just use an empty string for now. svn path=/trunk/; revision=7892
2003-06-15Do all the tests for whether ADNS_DIR is defined or not inGuy Harris1-1/+11
"config.nmake", and just use the variables set based on the results of those tests in various "Makefile.nmake" files. svn path=/trunk/; revision=7891
2003-06-15Based on a change from Lars Roland, set the GLIB_CFLAGS, GTK_CFLAGS,Guy Harris1-2/+33
GLIB_LIBS, and GTK_LIBS variables based on whether the GLib and GTK+ header files and libraries are in separate "glib" and "gtk+" directories (as is the case for the developer's packages from the Ethereal Web site) or in the same directory (as is the case for the developer's packages from the GTK+-for-Win32 site). svn path=/trunk/; revision=7890
2003-06-14Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based onGuy Harris1-1/+6
variables the user configures - the user isn't expected to change GLIB_LIBS or GTK_LIBS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate libraries for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7885
2003-06-14Define GLIB_CFLAGS and GTK_CFLAGS variables in config.nmake (based onGuy Harris1-1/+13
variables the user configures - the user isn't expected to change GLIB_CFLAGS or GTK_CFLAGS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate "/I" flags for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7884
2003-06-14From Lars Roland: use $(COMMON_FILES_GNU) in the PATH setting, don'tGuy Harris1-2/+2
duplicate the setting of $(COMMON_FILES_GNU). svn path=/trunk/; revision=7883
2003-06-13As per a patch from Lars Roland, make RC_VERSION comma-separated.Guy Harris1-2/+13
Also put in a comment noting that it should be comma-separated, and noting why it should be comma-separated. svn path=/trunk/; revision=7880
2003-06-12Don't wire into "config.h.win32" files an indication of whether we haveGuy Harris1-1/+9
GNU ADNS or not - set it based on whether ADNS_DIR is defined by "config.nmake", and make "config.h.win32" files that specify whether we have GNU ADNS dependent on "config.nmake". Note in "config.nmake" that: if you have GNU ADNS, ADNS_DIR should be defined as the directory in which the ADNS .lib file resides; if you don't have GNU ADNS, ADNS_DIR shouldn't be defined. svn path=/trunk/; revision=7860
2003-06-10Bump the version to 0.9.13 and otherwise prep for the next release. ETA isGerald Combs1-3/+3
Wednesday. svn path=/trunk/; revision=7820
2003-06-02Add GNU ADNS to the Windows build environment. A precompiled DLL can beGerald Combs1-1/+2
found at http://adns.jgaa.com/ and http://www.ethereal.com/distribution/win32/development/ The modifications to the root-level config.h.win32 and Makefile.nmake may not be neccessary. svn path=/trunk/; revision=7769
2003-05-01Bump the version number to 0.9.12. Make NEWS and ChangeLog current.Gerald Combs1-3/+3
The next release will likely be tomorrow (May 1). svn path=/trunk/; revision=7622
2003-03-26From Graham Bloice: make the RC_VERSION variable in config.nmakeGuy Harris1-2/+2
comma-separated, so that the resources will be built correctly and the version number correctly displayed in the GUI, and make the resources dependent on "config.nmake" so that they're rebuilt if it's changed. svn path=/trunk/; revision=7373
2003-03-11Bump the version to 0.9.11. Let's hope the goat's blood and hastily carvedGerald Combs1-3/+3
idol is enough for the CVS gods. svn path=/trunk/; revision=7337
2003-03-04Bump the version to 0.9.10.Gerald Combs1-3/+3
svn path=/trunk/; revision=7271
2003-01-21Bump the version to 0.9.9. Update the NEWS and ChangeLog files.Gerald Combs1-3/+3
I'm shooting for a release on Wednesday evening. svn path=/trunk/; revision=6952
2002-12-04Bump the version to 0.9.8. Update NEWS and ChangeLog to October 24.Gerald Combs1-3/+3
svn path=/trunk/; revision=6741
2002-11-01Cygwin doesn't necessarily come with an "sh.exe", so use "$(SH)" ratherGuy Harris1-1/+2
than "sh" to run a Bourne-compatible shell in "Makefile.nmake", and define "SH" to be "bash" in "config.nmake". svn path=/trunk/; revision=6540
2002-10-09Link to libsnmp under Win32.Gerald Combs1-1/+2
In gtk/main.c and tethereal.c set MIBDIRS to <get_program_path()>\snmp\mibs so that we can drop the MIB files there, instead of the default c:\usr\... path. Add NET_SNMP_DIR to config.nmake and modify Makefile.nmake to adjust CFLAGs, ethereal_LIBS and tethereal_LIBS accordingly. Define HAVE_UCD_SNMP in config.h.win32. I tested this by creating c:\program files\ethereal\snmp\mibs and dropping in the MIB files that come with Net-SNMP. Ethereal resolved system.sysDescr.0 to "iso.3.6.1.2.1.1.1.0" under Windows. Under Linux it resolved to "SNMPv2-MIB::sysDescr.0". Ethereal.nsi still needs to be updated. A compiled version of the Net-SNMP library can be found at http://www.ethereal.com/distribution/win32/development/ svn path=/trunk/; revision=6385
2002-09-26Bump the version up to 0.9.7. The countdown begins. Too bad ourGerald Combs1-3/+3
releases don't involve explosive bolts like NASA launches do. Bring the ChangeLog and NEWS files up to date to the end of August. svn path=/trunk/; revision=6341
2002-08-19Add COMMON_FILES_GNU definition.Gerald Combs1-1/+3
svn path=/trunk/; revision=6021
2002-08-17Bump the version number to 0.9.6. Update the ChangeLog. Add roughGerald Combs1-3/+3
release notes to NEWS. svn path=/trunk/; revision=6006
2002-06-28Bump the version up to 0.9.5.Gerald Combs1-3/+3
svn path=/trunk/; revision=5779
2002-05-18Increment versions to 0.9.4, get NEWS current to April 25 (more NEWS toGerald Combs1-3/+3
come). svn path=/trunk/; revision=5500
2002-03-29Bump the version to 0.9.3. Update NEWS to be current toGerald Combs1-3/+3
http://www.ethereal.com/lists/ethereal-cvs/200203/msg00175.html (the rest will be added later). svn path=/trunk/; revision=5042
2002-03-03Bump the version to 0.9.2. Update NEWS to include everything from February.Gerald Combs1-3/+3
svn path=/trunk/; revision=4856
2002-02-02Update version to 0.9.1. Add NEWS entries for 0.9.1 changes.Gerald Combs1-3/+3
svn path=/trunk/; revision=4684
2002-01-04From Hamish Moffatt:Guy Harris1-3/+3
Additional Windows Makefile dependencies, so more stuff gets built as needed. Additional stuff cleaned up by "make clean" (well, "nmake -f makefile.nmake clean", anyway) Make PDB_FILE be "vc*.pdb", so it referes to the PDB files either for VC++ 5.0 or VC++ 6.0. svn path=/trunk/; revision=4481
2002-01-04From Hamish Moffatt:Guy Harris1-8/+9
Add some missing files in the "clean" targets. Use pod2html rather than man2html to build HTML man pages. Fix ethereal.nsi.in for recent versions of NSIS, and fix a typo. svn path=/trunk/; revision=4475
2001-12-23Bump the version up to 0.9.0. Update the NEWS file.Gerald Combs1-3/+3
svn path=/trunk/; revision=4440
2001-12-19From Motonori Shindo: don't put the PDB files into the release, asGuy Harris1-1/+3
they're not built and the executables already contain debugging information, and update the README.win32 file appropriately and add Text2Pcap and Mergecap to it. svn path=/trunk/; revision=4425