summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2022-12-08 12:45:38 +0100
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2022-12-12 08:44:56 +0000
commitb8e6418c554c2be8a9b1636c42200ce1ad4d20ec (patch)
treef39cfd7a2c4cc03062aacbea485dbdd54e0064a1
parente5abbaabae9e3a712eb35c34f06859fece6fbf19 (diff)
build: pim6d is Linux only
This stops breaking build on FreeBSD. Signed-off-by: David Lamparter <equinox@opensourcerouting.org> (cherry picked from commit d9a2d546da40fa6eb5b546eff34e07b8e67c2247)
-rw-r--r--configure.ac10
1 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 5af8022191..13224cf6ea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2088,17 +2088,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