summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2011-03-13 11:33:50 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2011-03-13 11:33:50 +0100
commit93e868c730dc0b1825b2a685e0b066c051b1cb07 (patch)
tree732a24861785cbefac966c365a762628bac9c0ac /configure.in
parent9d67ffb0b4cdfbbf88779ce2b44ba810d1ba85d3 (diff)
downloadbird-93e868c730dc0b1825b2a685e0b066c051b1cb07.tar
bird-93e868c730dc0b1825b2a685e0b066c051b1cb07.zip
Implements Router Advertisement protocol.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 4d02332..6b06790 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])