diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-09-08 18:06:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 18:06:10 +0200 |
commit | 9dc05033459a8725f03836c142d764fd48962ec4 (patch) | |
tree | 663fcd24ce93e4245add5c2657561d8d443f3bd3 /configure.ac | |
parent | Merge pull request #6969 from ton31337/feature/autoshutdown_if_rtt_higher_tha... (diff) | |
parent | build, yang: bump libyang minimum required version to 1.0.184 (diff) | |
download | frr-9dc05033459a8725f03836c142d764fd48962ec4.tar.xz frr-9dc05033459a8725f03836c142d764fd48962ec4.zip |
Merge pull request #6376 from opensourcerouting/bump-libyang-req-version-1.x
build, yang: bump libyang minimum required version to 1.0.184
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ae116ef75..715efbcda 100755 --- a/configure.ac +++ b/configure.ac @@ -1728,8 +1728,8 @@ AC_SUBST([SNMP_CFLAGS]) dnl --------------- dnl libyang dnl --------------- -PKG_CHECK_MODULES([LIBYANG], [libyang >= 0.16.105], , [ - AC_MSG_ERROR([libyang (>= 0.16.105) was not found on your system.]) +PKG_CHECK_MODULES([LIBYANG], [libyang >= 1.0.184], , [ + AC_MSG_ERROR([libyang (>= 1.0.184) was not found on your system.]) ]) ac_cflags_save="$CFLAGS" CFLAGS="$CFLAGS $LIBYANG_CFLAGS" |