From 87559aa4744248f5447e83bbbc948722d1789bf1 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Thu, 19 Mar 2020 11:55:42 +0100 Subject: [PATCH] build: disable pimd on MacOS Signed-off-by: Ruben Kerkhof --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b4d227e79..41d1911c3 100755 --- a/configure.ac +++ b/configure.ac @@ -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"