summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Sowden <jeremy@azazel.net>2022-01-09 11:57:51 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2022-01-11 22:15:33 +0100
commitf807212797e94533f73c4e8640e43cd00d5648d9 (patch)
treebc596a2b942bfa91016dd2e9fd7bec98e43e9283
parent0efac6993adb339678890720bceb9432e85cd668 (diff)
build: if `--enable-pcap` is `yes`, abort if libpcap is not found
If libpcap support has been explicitly requested, abort if it is not available. Signed-off-by: Jeremy Sowden <jeremy@azazel.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 620cb34..41eeb52 100644
--- a/configure.ac
+++ b/configure.ac
@@ -213,6 +213,12 @@ AS_IF([test "x$enable_pcap" != "xno"], [
AC_MSG_RESULT([no])
])
+ AS_IF([test "x$libpcap_LIBS" = "x"], [
+ AS_IF([test "x$enable_pcap" = "xyes"], [
+ AC_MSG_ERROR([libpcap not found])
+ ])
+ ])
+
])
])