summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2019-04-24 19:33:41 +0200
committerDavid Lamparter <equinox@diac24.net>2019-08-30 19:22:23 +0200
commited18356f1f2deef5ed564fad6897a84b282ba992 (patch)
treed4a2a89b27d7ec82852939be386b483e9ca0d747 /configure.ac
parentbgpd/bmp: convert BMP code into module (diff)
downloadfrr-ed18356f1f2deef5ed564fad6897a84b282ba992.tar.xz
frr-ed18356f1f2deef5ed564fad6897a84b282ba992.zip
bgpd/bmp: BMP implementation
This implements BMP. There's no fine-grained history here, the non-BMP preparations are already split out from here so all that remains is BMP proper. Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac10
1 files changed, 4 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 676c98438..af18723ab 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1563,12 +1563,10 @@ dnl ##########################################################################
dnl ------------------
dnl check C-Ares library
dnl ------------------
-if test "${NHRPD}" != ""; then
- PKG_CHECK_MODULES([CARES], [libcares], ,[
- AC_MSG_ERROR([trying to build nhrpd, but libcares not found. install c-ares and its -dev headers.])
- ])
-fi
-AM_CONDITIONAL([CARES], [test "${NHRPD}" != ""])
+PKG_CHECK_MODULES([CARES], [libcares], ,[
+ AC_MSG_ERROR([libcares not found. install c-ares and its -dev headers.])
+])
+AM_CONDITIONAL([CARES], [true])
dnl ------------------
dnl check Net-SNMP library