diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-24 05:11:07 +0200 |
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-28 23:50:40 +0200 |
| commit | def695f4edd066156a8d16d6c382f0f00b7082ff (patch) | |
| tree | 984ae7de77a8dc297ef041a4752991e5311d21e4 /configure.ac | |
| parent | 259e3d4dac2da37b9abad9f84e41f90c81325a60 (diff) | |
zebra, build: disable irdp by default
IRDP client (rdisc) was deleted from iputils more than 2 years ago. It's
time to drop IRDP, but first let's stop building and including it in the
packages by default to see if anyone will be complaining.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d902f23d76..dbfae537b1 100644 --- a/configure.ac +++ b/configure.ac @@ -789,7 +789,7 @@ AC_ARG_ENABLE([realms], AC_ARG_ENABLE([rtadv], AS_HELP_STRING([--disable-rtadv], [disable IPV6 router advertisement feature])) AC_ARG_ENABLE([irdp], - AS_HELP_STRING([--disable-irdp], [disable IRDP server support in zebra (enabled by default if supported)])) + AS_HELP_STRING([--enable-irdp], [enable IRDP server support in zebra])) AC_ARG_ENABLE([capabilities], AS_HELP_STRING([--disable-capabilities], [disable using POSIX capabilities])) AC_ARG_ENABLE([gcc_ultra_verbose], @@ -2334,6 +2334,9 @@ yes) no) IRDP=false ;; +*) + IRDP=false + ;; esac |
