diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-03-13 11:33:50 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-03-13 11:33:50 +0100 |
commit | 93e868c730dc0b1825b2a685e0b066c051b1cb07 (patch) | |
tree | 732a24861785cbefac966c365a762628bac9c0ac /configure.in | |
parent | 9d67ffb0b4cdfbbf88779ce2b44ba810d1ba85d3 (diff) |
Implements Router Advertisement protocol.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 4d023324..6b067900 100644 --- a/configure.in +++ b/configure.in @@ -42,13 +42,15 @@ AC_SUBST(srcdir_rel_mf) if test "$enable_ipv6" = yes ; then ip=ipv6 SUFFIX6=6 + all_protocols=bgp,ospf,pipe,radv,rip,static else ip=ipv4 SUFFIX6="" + all_protocols=bgp,ospf,pipe,rip,static fi if test "$with_protocols" = all ; then - with_protocols=bgp,ospf,pipe,rip,static + with_protocols="$all_protocols" fi AC_SEARCH_LIBS(clock_gettime,[c rt posix4]) |