diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-12-08 12:45:38 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-12-08 12:45:38 +0100 | 
| commit | d9a2d546da40fa6eb5b546eff34e07b8e67c2247 (patch) | |
| tree | ad01cc837c7b60763685304070d40bfc36d8c27a /configure.ac | |
| parent | 9e46405ca2c7b3d5380dc6ab619666a6d32bbbfb (diff) | |
build: pim6d is Linux only
This stops breaking build on FreeBSD.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 10 | 
1 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 8040a1644a..2d9d4f66b1 100644 --- a/configure.ac +++ b/configure.ac @@ -2100,17 +2100,13 @@ fi  if test "$enable_pim6d" != "no"; then  AC_MSG_CHECKING([for pim6d OS support])  case "$host_os" in -  darwin*) -    AC_MSG_RESULT([no]) -    enable_pim6d="no" +  linux*) +    AC_MSG_RESULT([yes])      ;; -  openbsd*) +  *)      AC_MSG_RESULT([no])      enable_pim6d="no"      ;; -  *) -    AC_MSG_RESULT([yes]) -    ;;  esac  fi  | 
