]> git.puffer.fish Git - matthieu/frr.git/commitdiff
build: disable pimd on MacOS
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Thu, 19 Mar 2020 10:55:42 +0000 (11:55 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 20 Mar 2020 14:20:29 +0000 (15:20 +0100)
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
configure.ac

index b4d227e7944857cbc765c0e71e45da761264b022..41d1911c372cef42bbabd2e41b0608fae3a7b946 100755 (executable)
@@ -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"