diff options
| author | Christian Hopps <chopps@labn.net> | 2023-12-30 22:40:07 +0000 |
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2023-12-31 13:51:21 +0000 |
| commit | c00002d0d061cf44dc986a6adaa434d9bfa43b3d (patch) | |
| tree | 1f1b7bd04d9a5dbcb0af6ff3e322356b16e9d797 /configure.ac | |
| parent | 353ee7bb819d5f06a180a1d062b47006456a98c7 (diff) | |
build: protobuf is required so update building docs
- recommend using libyang 2.1.128 but accept 2.0.0 for now.
- update ubuntu building doc to add GRPC section
- update ubuntu reference docker builds to match grpc doc change
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fc3775857f..a3b0370ec0 100644 --- a/configure.ac +++ b/configure.ac @@ -1953,6 +1953,10 @@ AC_SUBST([SNMP_CFLAGS]) dnl --------------- dnl libyang dnl --------------- +PKG_CHECK_MODULES([LIBYANG], [libyang >= 2.1.128], , [ + AC_MSG_WARN([Recommended libyang version is >= 2.1.128.]) +]) + PKG_CHECK_MODULES([LIBYANG], [libyang >= 2.0.0], , [ AC_MSG_ERROR([libyang (>= 2.0.0) was not found on your system.]) ]) |
