diff options
author | David Lamparter <equinox@diac24.net> | 2019-12-04 04:18:12 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-12-11 11:40:47 +0100 |
commit | d621815a0e1d8649234222ea60c968dd0d4e0308 (patch) | |
tree | 94320640f682ae6f643e22df790a442c145cc85a /configure.ac | |
parent | Merge pull request #5511 from Jafaral/ipmroute (diff) | |
download | frr-d621815a0e1d8649234222ea60c968dd0d4e0308.tar.xz frr-d621815a0e1d8649234222ea60c968dd0d4e0308.zip |
zebra: create zebra_cumulus_mlag module
This is pretty much just to get rid of the HAVE_CUMULUS. The
hook/module API is as "wtf" as it was before...
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 124312b1e..34c8bb693 100755 --- a/configure.ac +++ b/configure.ac @@ -1061,6 +1061,8 @@ FRR_INCLUDES dnl V6 headers are checked below, after we check for v6 +is_linux=false + AC_MSG_CHECKING([which operating system interface to use]) case "$host_os" in sunos* | solaris2*) @@ -1089,6 +1091,8 @@ case "$host_os" in dnl how to fix it but no real progress on implementation dnl when they fix it, remove this AC_DEFINE([IPV6_MINHOPCOUNT], [73], [Linux ipv6 Min Hop Count]) + + is_linux=true ;; openbsd*) AC_MSG_RESULT([OpenBSD]) @@ -1116,6 +1120,7 @@ case "$host_os" in ;; esac AM_CONDITIONAL([SOLARIS], [test "${SOLARIS}" = "solaris"]) +AM_CONDITIONAL([LINUX], [${is_linux}]) AC_SYS_LARGEFILE |