aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2019-05-01 19:02:34 +0100
committerJoão Valverde <j@v6e.pt>2019-05-03 21:57:05 +0000
commitc7d86568a07845d56508baa88ece7853ce193eae (patch)
tree479090a83edd0b8e98980e6195e4350a702efe0f /tools
parent4c5d2f5ccf822c07746853b065322c34dc322e8a (diff)
CMake: Remove wsutil pcap dependency
Change-Id: Ic5a3653cb8bcc33e0be108c8b201567e7090f9f5 Reviewed-on: https://code.wireshark.org/review/33043 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkAPIs.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index bd8c69e249..667bab1b00 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -530,14 +530,14 @@ sub check_included_files($$)
}
}
- # only our wrapper file wsutils/wspcap.h may include pcap.h
+ # only our wrapper file wspcap.h may include pcap.h
# all other files should include the wrapper
if ($filename !~ /wspcap\.h/) {
foreach (@incFiles) {
if ( m#([<"]|/+)pcap\.h[>"]$# ) {
print STDERR "Warning: ".$filename.
" includes pcap.h directly. ".
- "Include wsutil/wspcap.h instead.\n";
+ "Include wspcap.h instead.\n";
last;
}
}