pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-pcu/+/15090
Change subject: Require newer libosmocore to avoid compile failures ...................................................................... Require newer libosmocore to avoid compile failures Older commit started using OSMO_IMSI_BUF_SIZE, only available in libosmocore 1.1.0 onwards, but forgot to increase the values in configure.ac. Fixes: 2c076bcb4dc1bc2ada340441c2f898c55318209f Change-Id: Iaf5f276a092c695a5f077551d9784652c2289424 --- M configure.ac 1 file changed, 4 insertions(+), 4 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/90/15090/1 diff --git a/configure.ac b/configure.ac index 149162e..5ecd133 100644 --- a/configure.ac +++ b/configure.ac @@ -74,10 +74,10 @@ fi dnl checks for libraries -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.12.0) -PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.12.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.12.0) -PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.12.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.1.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.1.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.1.0) +PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 1.1.0) AC_MSG_CHECKING([whether to enable direct DSP access for PDCH of sysmocom-bts]) AC_ARG_ENABLE(sysmocom-dsp, -- To view, visit https://gerrit.osmocom.org/c/osmo-pcu/+/15090 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: osmo-pcu Gerrit-Branch: master Gerrit-Change-Id: Iaf5f276a092c695a5f077551d9784652c2289424 Gerrit-Change-Number: 15090 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <[email protected]> Gerrit-MessageType: newchange
