From 903705604a34ebe311bc316dff000af25f659a36 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Fri, 29 Apr 2022 08:15:09 +0200 Subject: [PATCH] build: Disable libusb and libmnl for embedded builds Signed-off-by: Sylvain Munaut Change-Id: Ie7900098ffda7cebfab81c08b25b0001e6fd98ec --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 990d0e7e1..bf85c071f 100644 --- a/configure.ac +++ b/configure.ac @@ -381,7 +381,9 @@ then AM_CONDITIONAL(ENABLE_UTILITIES, false) AM_CONDITIONAL(ENABLE_GB, false) AM_CONDITIONAL(ENABLE_GNUTLS, false) + AM_CONDITIONAL(ENABLE_LIBMNL, false) AM_CONDITIONAL(ENABLE_LIBSCTP, false) + AM_CONDITIONAL(ENABLE_LIBUSB, false) AM_CONDITIONAL(ENABLE_PCSC, false) AM_CONDITIONAL(ENABLE_PSEUDOTALLOC, true) AM_CONDITIONAL(ENABLE_SERCOM_STUB, true)