build: disable pimd on MacOS

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
This commit is contained in:
Ruben Kerkhof 2020-03-19 11:55:42 +01:00
parent e64e77375c
commit 87559aa474

View file

@ -1782,11 +1782,15 @@ if test "$enable_rpki" = "yes"; then
fi
dnl ------------------------------------
dnl pimd is not supported on OpenBSD
dnl pimd is not supported on OpenBSD and MacOS
dnl ------------------------------------
if test "$enable_pimd" != "no"; then
AC_MSG_CHECKING([for pimd OS support])
case "$host_os" in
darwin*)
AC_MSG_RESULT([no])
enable_pimd="no"
;;
openbsd*)
AC_MSG_RESULT([no])
enable_pimd="no"