diff options
author | gdt <gdt> | 2003-12-03 18:13:48 +0000 |
---|---|---|
committer | gdt <gdt> | 2003-12-03 18:13:48 +0000 |
commit | 67a0d01be1d682e7190dfade6124a4b0c1799a3c (patch) | |
tree | d54bf49a9cacbe15339a6eabaecf09a88c0fe306 /configure.ac | |
parent | 5ed1df277fcf5e060fcca1177dae04eb12d5d955 (diff) | |
download | quagga-67a0d01be1d682e7190dfade6124a4b0c1799a3c.tar.bz2 quagga-67a0d01be1d682e7190dfade6124a4b0c1799a3c.tar.xz |
Enable rtadv by default.
Resolves bug #66.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index b3fd50ec..725ce72f 100755 --- a/configure.ac +++ b/configure.ac @@ -117,7 +117,7 @@ AC_ARG_ENABLE(vty_group, [ --enable-vty-group=ARG set vty sockets to have specified group as owner]) 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_netlink}" = "yes" @@ -146,10 +146,10 @@ if test "${enable_ospf_te}" = "yes"; then AC_DEFINE(HAVE_OSPF_TE,,OSPF TE) fi -AC_MSG_CHECKING(Should zebra's RTADV be used) -if test "${enable_rtadv}" = "yes"; then +AC_MSG_CHECKING(if zebra should be configurable to send Route Advertisements) +if test "${enable_rtadv}" != "no"; then AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_RTADV,,Enable zebra IPv6 Routing Advertisements) + AC_DEFINE(HAVE_RTADV,,Enable IPv6 Routing Advertisement support) else AC_MSG_RESULT(no) fi |