diff options
author | paul <paul> | 2003-05-25 23:51:31 +0000 |
---|---|---|
committer | paul <paul> | 2003-05-25 23:51:31 +0000 |
commit | 143e7de59f8deabb168a75cc7e5cc7555ad076e0 (patch) | |
tree | f4d90107a5a3d1d65da1ef5efd4d63defc6cc008 | |
parent | f1ec7d191e881d386ef76976bb25eef6d9b53593 (diff) | |
download | quagga-143e7de59f8deabb168a75cc7e5cc7555ad076e0.tar.bz2 quagga-143e7de59f8deabb168a75cc7e5cc7555ad076e0.tar.xz |
Change rtadv to default to disabled.
-rwxr-xr-x | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index fba397e7..4c30bcee 100755 --- a/configure.ac +++ b/configure.ac @@ -99,7 +99,7 @@ AC_ARG_ENABLE(ospf-te, AC_ARG_ENABLE(multipath, [ --enable-multipath=ARG enable multipath function, ARG must be digit]) AC_ARG_ENABLE(rtadv, -[ --disable-rtadv disable IPV6 router advertisment feature]) +[ --enable-rtadv disable IPV6 router advertisment feature]) if test "${enable_broken_aliases}" = "yes"; then if test "${enable_netlink}" = "yes" @@ -129,11 +129,11 @@ if test "${enable_ospf_te}" = "yes"; then fi AC_MSG_CHECKING(Should Zebra's RTADV be used) -if test "${enable_rtadv}" = "no"; then - AC_MSG_RESULT(no) -else - AC_DEFINE(HAVE_RTADV) +if test "${enable_rtadv}" = "yes"; then AC_MSG_RESULT(yes) + AC_DEFINE(HAVE_RTADV) +else + AC_MSG_RESULT(no) fi changequote(, )dnl |