summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRuben Kerkhof <ruben@rubenkerkhof.com>2020-03-19 11:55:42 +0100
committerRuben Kerkhof <ruben@rubenkerkhof.com>2020-03-20 15:20:29 +0100
commit87559aa4744248f5447e83bbbc948722d1789bf1 (patch)
tree569f20365f09ba4e8ee882470b09ae9eb4f256d8 /configure.ac
parentMerge pull request #6053 from LabNConsulting/working/lb/centos6 (diff)
downloadfrr-87559aa4744248f5447e83bbbc948722d1789bf1.tar.xz
frr-87559aa4744248f5447e83bbbc948722d1789bf1.zip
build: disable pimd on MacOS
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac6
1 files changed, 5 insertions, 1 deletions
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"