summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2022-12-08 12:45:38 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2022-12-08 12:45:38 +0100
commitd9a2d546da40fa6eb5b546eff34e07b8e67c2247 (patch)
treead01cc837c7b60763685304070d40bfc36d8c27a /configure.ac
parentbuild: fix sed regex in Lua macro (diff)
downloadfrr-d9a2d546da40fa6eb5b546eff34e07b8e67c2247.tar.xz
frr-d9a2d546da40fa6eb5b546eff34e07b8e67c2247.zip
build: pim6d is Linux only
This stops breaking build on FreeBSD. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 8040a1644..2d9d4f66b 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