diff options
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-03-19 11:55:42 +0100 |
---|---|---|
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-03-20 15:20:29 +0100 |
commit | 87559aa4744248f5447e83bbbc948722d1789bf1 (patch) | |
tree | 569f20365f09ba4e8ee882470b09ae9eb4f256d8 /configure.ac | |
parent | Merge pull request #6053 from LabNConsulting/working/lb/centos6 (diff) | |
download | frr-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-x | configure.ac | 6 |
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" |