diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-05-05 22:14:37 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-05-10 08:48:30 +0200 |
commit | 124bd0e1b253c0b20b9dc414f809f4e13253fbb3 (patch) | |
tree | 35a16c01488621d0acead860e777e56f527cbf0f /configure.ac | |
parent | configure: Drop trailing whitespaces (diff) | |
download | frr-124bd0e1b253c0b20b9dc414f809f4e13253fbb3.tar.xz frr-124bd0e1b253c0b20b9dc414f809f4e13253fbb3.zip |
configure: Require librtr >= 0.8.0
We ship 0.8.0 in our repos.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f3a379d27..36058c1db 100644 --- a/configure.ac +++ b/configure.ac @@ -2040,7 +2040,7 @@ dnl ------------------------------------ dnl Enable RPKI and add librtr to libs dnl ------------------------------------ if test "$enable_rpki" = "yes"; then - PKG_CHECK_MODULES([RTRLIB], [rtrlib >= 0.5.0], + PKG_CHECK_MODULES([RTRLIB], [rtrlib >= 0.8.0], [RPKI=true], [RPKI=false AC_MSG_ERROR([rtrlib was not found on your system or is too old.])] |