aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate
AgeCommit message (Collapse)AuthorFilesLines
2014-06-20Add .rc files to the sources to have them included in the buildJoerg Mayer1-0/+1
Change-Id: I84dda519e617b24d92fcf374670a4a6ee6f488ee Reviewed-on: https://code.wireshark.org/review/2506 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
2014-04-25Support out-of-source checkapiStig Bjørlykke1-1/+2
Always call $(top_srcdir)/tools/checkAPIs.pl with -sourcedir=$(srcdir) from Makefile.am to allow out-of-source 'make checkapi'. Change-Id: I60d7e0079984a8ededdacf4517a0738486fa7973 Reviewed-on: https://code.wireshark.org/review/1294 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte18-24/+2
(Using sed : sed -i '/^\# \$Id\$/,+1 d') (start with dash) Change-Id: Ia4b5a6c2302f6a531f6a86c1ec3a2f8205c8c2dd Reviewed-on: https://code.wireshark.org/review/881 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte6-12/+0
(Using sed : sed -i '/^\* \$Id\$/,+1 d') (no space before star) Change-Id: I318968db2b8512ba1303b5fc5c624c66441658f0 Reviewed-on: https://code.wireshark.org/review/879 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-03Fix (-W)documentation found by ClangAlexis La Goutte1-64/+64
Convert comment to doxygen type Change-Id: Ib7adc2ece99dc4baa8ec3a349896dfa89277e00b Reviewed-on: https://code.wireshark.org/review/84 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Evan Huus <eapache@gmail.com>
2014-01-01Fix [-Wmissing-prototypes]Anders Broman1-0/+3
svn path=/trunk/; revision=54528
2013-12-14Use "(void) <variable/>" to avoid unused variable warnings similar toGerald Combs1-1/+4
Qt's Q_UNUSED macro. svn path=/trunk/; revision=54110
2013-11-17Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris1-1/+1
packet dissection, they're specific to the entire Wireshark suite of programs. svn path=/trunk/; revision=53377
2013-11-12Now that fvalue_to_string_repr() returns NULL if the fvalue's ftype hasGuy Harris1-6/+2
no val_to_string_repr method, we don't need to check whether it has such a method, and thus don't need to include epan/ftypes/ftypes-int.h. svn path=/trunk/; revision=53293
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53230
2013-11-10Move struct _ftype_t + callback typedefs + free macro to ftypes-int.hJakub Zawadzki1-0/+2
svn path=/trunk/; revision=53223
2013-10-13Add CMake properties to targets so that they are logically organised when ↵Graham Bloice1-0/+1
using a Visual Studio solution. Add CMake properties to group the source files in epan into logical blocks when using a Visual Studio solution. svn path=/trunk/; revision=52580
2013-09-02Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-2/+0
svn path=/trunk/; revision=51678
2013-08-06Replace hfinfo pointer to same_name_prev, with same_name_prev_id.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=51175
2013-07-21Update plugins/ with recent change.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=50774
2013-07-15Move report_err.{h,c} from epan into wsutil: there's nothing epan-specific ↵Jeff Morriss1-1/+2
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-06Add our license header to plugin moduleinfo.h files. Cleans up a batch ofEvan Huus1-0/+23
licensecheck warnings. svn path=/trunk/; revision=50407
2013-06-25makefile.nmake -> Makefile.nmake and minor whitespace (spaces -> tabs) changes.Chris Maynard1-1/+1
svn path=/trunk/; revision=50140
2013-03-21From beroset:Bill Meier1-28/+28
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 attachments #10423,#10424 svn path=/trunk/; revision=48450
2013-03-21From beroset:Bill Meier6-88/+88
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 attachment #10409 svn path=/trunk/; revision=48449
2013-03-12From David Arnold:Jaap Keuter1-1/+1
Replace use of INCLUDES with AM_CPPFLAGS in all Makefiles to placate recent autotools. svn path=/trunk/; revision=48261
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-1/+1
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-02-26it's ==> its & its == > it's as needed.Bill Meier1-2/+2
svn path=/trunk/; revision=47893
2013-02-15Get rid of an extra blank line.Guy Harris1-1/+0
svn path=/trunk/; revision=47677
2013-02-12Fix the grammar.h/grammar.c/grammar.lemon dependency so thatGilbert Ramirez1-2/+2
grammar.h is not always out of date. Use the same pattern as in the Makefile.nmake files svn path=/trunk/; revision=47643
2013-02-10Add %option noinput to a bunch of Flex files, as we aren't using theGuy Harris1-0/+5
input() routine and thus don't need to have it generated - and as it produces warnings of a routine defined but not used, we don't want to have it generated. Squelch a casting-const-away warning. svn path=/trunk/; revision=47613
2013-02-09Pull the definition of NODIST_HEADER_FILES up intoGuy Harris1-3/+0
plugins/Makefile.common.inc. svn path=/trunk/; revision=47596
2013-02-09Get rid of trailing tabs, make comments more similar.Guy Harris1-1/+1
svn path=/trunk/; revision=47593
2013-02-09Define GENERATED_HEADER_FILES in plugins/Makefile.common.inc.Guy Harris1-4/+0
svn path=/trunk/; revision=47592
2013-02-09plugins/Makefile.common.inc defines NODIST_SRC_FILES, andGuy Harris1-4/+0
plugins/mate/Makefile.common includes it, so there's no need to define it in plugins/mate/Makefile.common. svn path=/trunk/; revision=47591
2013-02-09Define FLEX_GENERATED_SRC_FILES and LEMON_GENERATED_SRC_FILES inGuy Harris1-1/+1
plugins/Makefile.common.inc, and use it in plugins/mate/Makefile.nmake. svn path=/trunk/; revision=47590
2013-02-09plugins/Makefile.common.inc should already be definingGuy Harris1-4/+0
GENERATED_SRC_FILES, and plugins/mate/Makefile.common includes it, so it shouldn't need to define GENERATED_SRC_FILES itself. svn path=/trunk/; revision=47589
2013-02-09Try to fix the makefiles to be able to build mate after distclean.Anders Broman2-3/+15
svn path=/trunk/; revision=47586
2013-02-08Stick NONGENERATED_ in the front of the macros listing non-generatedGuy Harris1-3/+3
files. Define C_FILES and CPP_FILES in Makefile.common.inc to include *all* C and C++ files, respectively, including generated files. svn path=/trunk/; revision=47557
2013-02-08We don't care what source files are "dissector" source files, we onlyGuy Harris3-21/+18
need to care whether source files should be scanned for registration functions. Reduce the number of macros we define in Makefile.common.inc, getting rid of some only used internally. svn path=/trunk/; revision=47556
2013-02-06-Werror needs to be applied only to clean files, not to, for example,Guy Harris1-3/+6
Flex-generated files. Comment it out for now. svn path=/trunk/; revision=47516
2013-02-06Add -Werror if enabled.Guy Harris1-1/+5
Sort EXTRA_DIST. svn path=/trunk/; revision=47515
2013-02-06Only remove Flex-generated files with "nmake distclean", not allGuy Harris1-9/+9
generated files. Remove all generated files with "nmake maintainer-clean". svn path=/trunk/; revision=47514
2013-02-06Don't bother setting XXX_FILES to empty strings.Guy Harris1-16/+0
svn path=/trunk/; revision=47513
2013-02-06strtod() is locale-dependent; use g_ascii_strtod() instead.Guy Harris1-2/+2
If the intent is that floating-point representations be locale-dependent, change this and somehow arrange that this not fail the API test. However, I doubt anybody's actually done anything that uses this code path, given that... ...it was comparing a value against itself. Fix it to use op->v. svn path=/trunk/; revision=47512
2013-02-06Don't run Lemon-generated header files through checkAPI, either (theyGuy Harris3-4/+7
don't have an RCS ID, and they just define a pile of tokens). svn path=/trunk/; revision=47511
2013-02-06Do a bit more splitting and combining of file names, so that we canGuy Harris3-68/+42
avoid running the checkAPI stuff on Flex-generated files. svn path=/trunk/; revision=47506
2013-02-05mate_parser.obj depends on mate_grammar.h, as it's built fromGuy Harris1-1/+6
mate_parser.c and mate_parser.c includes mate_grammar.h, so we need to make sure mate_grammar.h is built before we try to compile mate_parser.c. However, mate_parser.obj isn't built by trying to compile mate_grammar.h, so don't use $? in the $(CC) line, as that will cause it to try to compile *all* the dependencies. Add a comment to explain why mate_parser_lex.h depends on mate_parser.c. svn path=/trunk/; revision=47504
2013-02-05Put NODIST_ at the beginning of macros containing NODIST, parallelingGuy Harris3-51/+87
the nodist_ convention for Automake variables. Regularize the lists of source files, dividing them according to several attributes. Build composite lists in a plugins/Makefile.common.inc file, to be included by plugin Makefile.common files, and use the composite lists as appropriate in Makefile.am and Makefile.nmake. svn path=/trunk/; revision=47502
2013-02-05Don't forget the .c files that we *don't* distribute.Guy Harris1-1/+8
svn path=/trunk/; revision=47491
2013-02-05mate_parser.c includes mate_grammar.h, so make mate_parser.obj depend onGuy Harris1-0/+1
mate_grammar.h. svn path=/trunk/; revision=47490
2013-02-05Don't distribute the results of running Lemon, as we distribute LemonGuy Harris3-14/+51
ourselves. Clean up various bits of "distribute" vs. "don't distribute" stuff in the process - use similar names, and make the "distribute vs. don't distribute" distinction the same as the "don't clean with "make distclean" vs. clean with "make distclean"" distinction. svn path=/trunk/; revision=47485
2013-02-04More silent build support.Gerald Combs1-5/+0
svn path=/trunk/; revision=47472
2013-02-04Prettify more build output.Gerald Combs1-1/+6
svn path=/trunk/; revision=47469