diff options
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 35fb81e4..6d972966 100755 --- a/configure.ac +++ b/configure.ac @@ -125,6 +125,8 @@ AC_ARG_ENABLE(logfile_mask, AC_ARG_ENABLE(rtadv, [ --disable-rtadv disable IPV6 router advertisement feature]) +AC_ARG_ENABLE(irdp, +[ --enable-irdp enable IRDP server support in zebra]) AC_ARG_ENABLE(capabilities, [ --disable-capabilities disable using POSIX capabilities]) @@ -163,6 +165,10 @@ else AC_MSG_RESULT(no) fi +if test "${enable_irdp}" = "yes"; then + AC_DEFINE(HAVE_IRDP,, IRDP ) +fi + if test "${enable_user}" = "yes" || test x"${enable_user}" = x""; then enable_user="quagga" elif test "${enable_user}" = "no"; then |