aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/tpg
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-06-26 22:20:05 +0000
committerGerald Combs <gerald@wireshark.org>2008-06-26 22:20:05 +0000
commit83aacf0a09af8c9332a3ea314d3f8de673470466 (patch)
treebffa3f3638a12ca8a74ede2dde86b2aaa4c0c372 /plugins/tpg
parent708fbadf26bc819a621775250d663c982e028cbc (diff)
Add support for "API groups" in checkAPIs.pl. Make the "prohibited"
and "deprecated" groups the default. Add an "abort" group for code that shouldn't exit the program. Update the makefiles to call "checkAPIs.pl -g abort" for dissectors. Remove a dependency on "cat" in checkAPIs.pl. svn path=/trunk/; revision=25614
Diffstat (limited to 'plugins/tpg')
-rw-r--r--plugins/tpg/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/tpg/Makefile.nmake b/plugins/tpg/Makefile.nmake
index a8dbd785ff..1369afce13 100644
--- a/plugins/tpg/Makefile.nmake
+++ b/plugins/tpg/Makefile.nmake
@@ -65,4 +65,4 @@ $(LEMON)\lemon.exe:
cd ../../plugins/mate
checkapi:
- $(PERL) ../../tools/checkAPIs.pl $(DISSECTOR_SRC)
+ $(PERL) ../../tools/checkAPIs.pl -g abort $(DISSECTOR_SRC)