aboutsummaryrefslogtreecommitdiffstats
path: root/epan/Makefile.nmake
AgeCommit message (Collapse)AuthorFilesLines
2008-02-14Glib >= 2.14.5 does not require iconvBill Meier1-0/+2
svn path=/trunk/; revision=24330
2007-12-25Build with assembler support (NASM).Anders Broman1-1/+1
svn path=/trunk/; revision=23947
2007-11-28Various changes with focus to startup speedupTomas Kukosa1-1/+15
The startup timeout on Win32 is reduced to 80% without assembler and to 50% with assembler usage (which is optional) proto.c - do not look up in filed tree and inserts in two steps but do it at once - next few small speedups - some often called elementary functions can be optionally implemented in assembler - dispart some functions to see more exact result from profiling packet-tpnc.c - do not reallocate memory for each filed svn path=/trunk/; revision=23643
2007-10-15Fix Windows maintainer-clean/distclean/clean to recurse thru subdirs only ↵Bill Meier1-4/+9
once (instead of worst-case 1+2+3 times) svn path=/trunk/; revision=23187
2007-09-24Get rid of the remains of NET-SNMP in the build process.Jörg Mayer1-1/+0
svn path=/trunk/; revision=22934
2007-08-26This was missingLuis Ontanon1-1/+2
svn path=/trunk/; revision=22679
2007-08-04Treat runlex.sh-generated headers differently from Flex-generated .cGuy Harris1-1/+3
files - for one thing, the former aren't compiled into .o or .obj files. svn path=/trunk/; revision=22452
2007-08-04Add a script as a front-end for Flex, to work around various problems,Guy Harris1-4/+10
such as the fact that Flex strips all but the last component of the "-o" argument, and that it doesn't generate a header file to declare routines the generated lexical analyzer defines. Use that script when building lexical analyzers, and, for each lexical analyzer, include the generated header file in the generated analyzer. svn path=/trunk/; revision=22446
2007-08-01Add a Makefile.nmake.inc file, to hold rules etc. used by multipleGuy Harris1-8/+2
Makefile.nmake files; currently, it has the (F)lex-to-C rule and a .SUFFIXES pseudo-rule to add .l to the list of suffixes. Have Makefile.nmake files with .l.c rules include Makefile.nmake.inc to get that rule. The names Makefile.am.inc and Makefile.nmake.inc aren't necessarily the right names for the files in question. Use $(PACKAGE) in the Mate plugin's Makefile, rather than "mate". svn path=/trunk/; revision=22437
2007-08-01Use a common .l.c rule for running Flex on .l files, just as is done onGuy Harris1-13/+13
UN*X. svn path=/trunk/; revision=22434
2007-07-16Windows too needs diam_dict.c Luis Ontanon1-0/+3
svn path=/trunk/; revision=22320
2007-06-11Fix compilation under VS6 (hopefully without breaking compilationGerald Combs1-0/+7
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-22"make maintainer-clean" cleans up everything that "make distclean" does;Guy Harris1-3/+4
there's no need for files in DISTCLEANFILES to be in MAINTAINERCLEANFILES as well. In epan, split the generated source files into those that should be cleaned by "make distclean" and those that shouldn't, and have DISTCLEANFILES include only the ones that should be cleaned by "make distclean" and have MAINTAINERCLEANFILES include the ones that shouldn't be cleaned by "make distclean". This should fix bug 1595. The generated source files don't need to be in EXTRA_DIST. Use LIBWIRESHARK_DISTCLEAN_GENERATED_SRC and LIBWIRESHARK_NODISTCLEAN_GENERATED_SRC in epan/Makefile.nmake. svn path=/trunk/; revision=21882
2007-05-17Since code generated by lex may trigger gcc warnings, we are now generating twoSebastien Tandel1-1/+1
libraries. A single library is generated with the lex code without the barrier "stop on warning". Another library is generated from the remaining source files with the "stop on warning" barrier. svn path=/trunk/; revision=21813
2007-05-09fix manifest error: for dll's mt.exe must be given ;2Ulf Lamping1-1/+1
svn path=/trunk/; revision=21734
2007-05-06embed the manifest files for the unittest exe's as wellUlf Lamping1-3/+9
svn path=/trunk/; revision=21697
2007-05-06instead of copying the MSVC 2005 manifest files around, embed them into the ↵Ulf Lamping1-0/+4
.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-24Addt'l fixes so suite-unittests will run under windowsBill Meier1-5/+5
svn path=/trunk/; revision=21546
2007-04-18following advice from Gerald, Graham Bloice, and others, let's try copying ↵Richard van der Hoff1-0/+15
the unit test executables into the wireshark-gtk2 directory before running them. svn path=/trunk/; revision=21472
2007-04-13Fix for link commands for exntest.exe, tvbtest.exe and reassemble_test.exe;Bill Meier1-5/+4
(Seems to work using vc6 on Windows XP). svn path=/trunk/; revision=21400
2007-04-11try linking against user32.lib and wsock32.libRichard van der Hoff1-0/+1
svn path=/trunk/; revision=21386
2007-04-11fix typosRichard van der Hoff1-4/+5
svn path=/trunk/; revision=21382
2007-04-11right; this is going badly.Richard van der Hoff1-18/+4
Let's take a different tack: include only the bare minimum, and set up stubs for everything else. svn path=/trunk/; revision=21379
2007-04-10user32.lib and wsock32.lib shouldn't be make dependenciesRichard van der Hoff1-1/+1
svn path=/trunk/; revision=21365
2007-04-10more libs, more stubs... i'll get there one dayRichard van der Hoff1-0/+3
svn path=/trunk/; revision=21363
2007-04-08hrm, we even need dissectors.libRichard van der Hoff1-0/+1
svn path=/trunk/; revision=21353
2007-04-08another go at making reassemble_test build: give it lots more librariesRichard van der Hoff1-2/+16
svn path=/trunk/; revision=21352
2007-04-07link reassemble_test against the right libraryRichard van der Hoff1-2/+2
svn path=/trunk/; revision=21351
2007-04-06Remove build detritusGraham Bloice1-1/+1
svn path=/trunk/; revision=21347
2007-04-03Set $(LINK). I swear I'll get there in a minute with this.Richard van der Hoff1-0/+2
svn path=/trunk/; revision=21319
2007-04-03hmm, apparently $^ doesn't work for nmakeRichard van der Hoff1-3/+3
svn path=/trunk/; revision=21318
2007-04-03rules for making the unit testsRichard van der Hoff1-2/+23
svn path=/trunk/; revision=21316
2007-03-28Improved cleanup of build artifactsGraham Bloice1-1/+1
svn path=/trunk/; revision=21249
2007-03-25remove remaining warnings in epan dir and set the "treat warning as error" ↵Ulf Lamping1-1/+1
barrier (epan/dissectors still waiting for a cleanup) svn path=/trunk/; revision=21181
2007-02-07* Add a category param to the uat.Luis Ontanon1-4/+1
* UATify SNMP Users svn path=/trunk/; revision=20736
2007-01-31Add uat_load.c to the distclean target for generated files.Anders Broman1-1/+1
svn path=/trunk/; revision=20655
2007-01-28Although yet untested (but it compiles and is still unused) add UAT to the repo.Luis Ontanon1-0/+3
UAT is an API to handle User Accessible Tables, an UAT is basically an array of arbitrary structs that has a file representation as a mean for mantaining things like: - the snmp_users_table - dfilter macros - ipsec/ssl key bindings - k12 configuration, - and many other table-like user modifiable preferences comming soon gtk's uat_window() and prefs_add_uat() uat.h is fairly doc[uo]m[m]?ented, a README with a simple example of how is to be used will be available as I write them svn path=/trunk/; revision=20586
2007-01-14on my way to fix #301:Ulf Lamping1-1/+1
add a function get_persdatafile_dir() that will return the users personal default data dir Win32:"My Documents" UNIX:"" (for the current dir) svn path=/trunk/; revision=20431
2007-01-11load_snmp_users_file.c needs to be rebuilt after distclean to make tarballs ↵Anders Broman1-1/+1
work on Windows. svn path=/trunk/; revision=20395
2007-01-09the forgotten file strikes again...Luis Ontanon1-0/+3
svn path=/trunk/; revision=20355
2007-01-03remove the PDB_FILE setting from config.nmake - there's no real need for ↵Ulf Lamping1-2/+4
this info add some missing files to the clean targets svn path=/trunk/; revision=20290
2006-12-28Move the contents of airpdcap to epan/crypt. Try to fix the currentGerald Combs1-9/+21
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-04Use 'igncr' as needed with Bash (workaround for bug report 1162);Bill Meier1-1/+1
Change usage of 'nmake' to $(MAKE) /$(MAKEFLAGS) in a few places; Add one missing /$(MAKEFLAGS); svn path=/trunk/; revision=20034
2006-09-26Don't try to build wslua if LUA_DIR isn't defined.Gerald Combs1-7/+15
svn path=/trunk/; revision=19330
2006-09-26Lua 5.1.1 for windowsLuis Ontanon1-6/+20
svn path=/trunk/; revision=19324
2006-09-11tweak the nmake build so the NET-SNMP library is in fact optional (as it is ↵Ulf Lamping1-1/+1
in the UNIX builds) svn path=/trunk/; revision=19196
2006-08-05config and makefile magic we need when we integrate kerberos for windows ↵Ronnie Sahlberg1-0/+1
with the w32 build disabled for now svn path=/trunk/; revision=18838
2006-08-04ethereal -> wireshark.Gerald Combs1-4/+4
svn path=/trunk/; revision=18836
2006-07-20snprintf -> g_snprintf. Fix up whitespace.Gerald Combs1-1/+0
svn path=/trunk/; revision=18776
2006-06-17ethereal to wireshark changeRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=18497