aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/gryphon
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/gryphon
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/gryphon')
-rw-r--r--plugins/gryphon/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gryphon/Makefile.nmake b/plugins/gryphon/Makefile.nmake
index f4387832d2..dcf18805e8 100644
--- a/plugins/gryphon/Makefile.nmake
+++ b/plugins/gryphon/Makefile.nmake
@@ -100,4 +100,4 @@ distclean: clean
maintainer-clean: distclean
checkapi:
- $(PERL) ../../tools/checkAPIs.pl $(DISSECTOR_SRC)
+ $(PERL) ../../tools/checkAPIs.pl -g abort $(DISSECTOR_SRC)