From d9a2d546da40fa6eb5b546eff34e07b8e67c2247 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Thu, 8 Dec 2022 12:45:38 +0100 Subject: [PATCH] build: pim6d is Linux only This stops breaking build on FreeBSD. Signed-off-by: David Lamparter --- configure.ac | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 8040a1644a..2d9d4f66b1 100644 --- a/configure.ac +++ b/configure.ac @@ -2100,17 +2100,13 @@ fi if test "$enable_pim6d" != "no"; then AC_MSG_CHECKING([for pim6d OS support]) case "$host_os" in - darwin*) - AC_MSG_RESULT([no]) - enable_pim6d="no" + linux*) + AC_MSG_RESULT([yes]) ;; - openbsd*) + *) AC_MSG_RESULT([no]) enable_pim6d="no" ;; - *) - AC_MSG_RESULT([yes]) - ;; esac fi -- 2.39.5