mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 09:22:32 +00:00
parent
4b5e1359cf
commit
d2a0ccc634
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
|
||||||
|
|
||||||
|
* configure.ac: Compile in Router Advertisement support by
|
||||||
|
default. Note that this does not default to sending RAs; it just
|
||||||
|
makes 'ipv6 nd send-ra' and 'ipv6 nd prefix-advertisement'
|
||||||
|
available. While others may prefer other tools, no argument has
|
||||||
|
been made that router advertisement support is such bloat that it
|
||||||
|
should be compiled out by default (it 9556 bytes on NetBSD/i386 vs
|
||||||
|
8 bytes with the support compiled out). This reversion of a
|
||||||
|
previous change was done in consultation with Paul.
|
||||||
|
|
||||||
2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
|
2003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
|
||||||
|
|
||||||
* configure.ac: Move tests for v6 header files to after the check
|
* configure.ac: Move tests for v6 header files to after the check
|
||||||
|
@ -117,7 +117,7 @@ AC_ARG_ENABLE(vty_group,
|
|||||||
[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
|
[ --enable-vty-group=ARG set vty sockets to have specified group as owner])
|
||||||
|
|
||||||
AC_ARG_ENABLE(rtadv,
|
AC_ARG_ENABLE(rtadv,
|
||||||
[ --enable-rtadv enable IPV6 router advertisement feature])
|
[ --disable-rtadv disable IPV6 router advertisement feature])
|
||||||
|
|
||||||
if test "${enable_broken_aliases}" = "yes"; then
|
if test "${enable_broken_aliases}" = "yes"; then
|
||||||
if test "${enable_netlink}" = "yes"
|
if test "${enable_netlink}" = "yes"
|
||||||
@ -146,10 +146,10 @@ if test "${enable_ospf_te}" = "yes"; then
|
|||||||
AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
|
AC_DEFINE(HAVE_OSPF_TE,,OSPF TE)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_MSG_CHECKING(Should zebra's RTADV be used)
|
AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements)
|
||||||
if test "${enable_rtadv}" = "yes"; then
|
if test "${enable_rtadv}" != "no"; then
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
AC_DEFINE(HAVE_RTADV,,Enable zebra IPv6 Routing Advertisements)
|
AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user