Change in ...osmo-msc[master]: Fix dependency version requirements

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Thu Aug 8 15:57:49 UTC 2019


pespin has submitted this change and it was merged. ( https://gerrit.osmocom.org/c/osmo-msc/+/15121 )

Change subject: Fix dependency version requirements
......................................................................

Fix dependency version requirements

libosmocore 1.1.0 0e8df1c7e48bcae2285c7c138bd50f932049bd24  osmo_use_count()
Fixes: 7c5346cd7005ad469702a2f74572b79de738fbbb

libosmocore 1.2.0 cdac620579b5bf44970b5f4bb11734fdfdf5bf59 GSM23003_MSISDN_MAX_DIGITS
Fixes: 8b0737fa71ea4b04cee8dc61c79a1f93779e66dc

libosmo-sccp 1.1.0 21ff9ae4264de159784a59ce4421365007bde08d osmo_sccp_addr_ri_cmp()
Fixes: c4628a3ad4d3c5f65782b152b771bf80357235d6

osmo-mgw 1.6.0 538d2c53d90074267e7a70a90c773baa03d6ec04 mgcp_client_endpoint_fsm.h
Fixes: c4628a3ad4d3c5f65782b152b771bf80357235d6

libosmo-netif 0.6.0 needed by osmo-mgw 1.6.0

libsmpp34 1.14.0 required due to needed heap allocation function overrides from smpp34_heap.h

Change-Id: I1cd2c7317933b416b74a412f10e4cad16ecd6e59
---
M configure.ac
M debian/control
2 files changed, 20 insertions(+), 20 deletions(-)

Approvals:
  Jenkins Builder: Verified
  neels: Looks good to me, but someone else must approve
  pespin: Looks good to me, approved



diff --git a/configure.ac b/configure.ac
index bb8fb39..5aa652d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,15 +35,15 @@
 	])
 
 
-PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.0.0)
+PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.2.0)
+PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.2.0)
+PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.2.0)
+PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.2.0)
 PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.6.0)
-PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.4.0)
-PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 1.0.0)
-PKG_CHECK_MODULES(LIBOSMOMGCPCLIENT, libosmo-mgcp-client >= 1.5.0)
+PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.6.0)
+PKG_CHECK_MODULES(LIBOSMOSIGTRAN, libosmo-sigtran >= 1.1.0)
+PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 1.1.0)
+PKG_CHECK_MODULES(LIBOSMOMGCPCLIENT, libosmo-mgcp-client >= 1.6.0)
 PKG_CHECK_MODULES(LIBOSMOGSUPCLIENT, libosmo-gsup-client >= 1.0.0)
 
 old_LIBS=$LIBS
@@ -91,7 +91,7 @@
 AC_ARG_ENABLE([smpp], [AS_HELP_STRING([--enable-smpp], [Build the SMPP interface])],
     [osmo_ac_build_smpp="$enableval"],[osmo_ac_build_smpp="no"])
 if test "$osmo_ac_build_smpp" = "yes" ; then
-    PKG_CHECK_MODULES(LIBSMPP34, libsmpp34 >= 1.13.0)
+    PKG_CHECK_MODULES(LIBSMPP34, libsmpp34 >= 1.14.0)
     AC_DEFINE(BUILD_SMPP, 1, [Define if we want to build SMPP])
 fi
 AM_CONDITIONAL(BUILD_SMPP, test "x$osmo_ac_build_smpp" = "xyes")
diff --git a/debian/control b/debian/control
index 887e386..f7a336a 100644
--- a/debian/control
+++ b/debian/control
@@ -13,17 +13,17 @@
                libdbd-sqlite3,
                libsctp-dev,
                libtalloc-dev,
-               libsmpp34-dev (>= 1.12),
-               libasn1c-dev (>= 0.9.28),
-               libosmocore-dev (>= 0.10.0),
-               libosmo-sccp-dev,
-               libosmo-sigtran-dev (>= 0.8.0),
-               libosmo-abis-dev,
-               libosmo-mgcp-client-dev (>= 1.1.0),
-               libosmo-gsup-client-dev (>= 0.2.1),
-               libosmo-netif-dev (>= 0.1.0),
-               libosmo-ranap-dev (>= 0.2.0),
-               osmo-gsm-manuals-dev
+               libsmpp34-dev (>= 1.14.0),
+               libasn1c-dev (>= 0.9.30),
+               libosmocore-dev (>= 1.2.0),
+               libosmo-sccp-dev (>= 1.1.0),
+               libosmo-sigtran-dev (>= 1.1.0),
+               libosmo-abis-dev (>= 0.6.0),
+               libosmo-mgcp-client-dev (>= 1.6.0),
+               libosmo-gsup-client-dev (>= 1.0.0),
+               libosmo-netif-dev (>= 0.6.0),
+               libosmo-ranap-dev (>= 0.3.0),
+               osmo-gsm-manuals-dev (>= 0.2.0)
 Standards-Version: 3.9.8
 Vcs-Git: git://git.osmocom.org/osmo-msc.git
 Vcs-Browser: https://git.osmocom.org/osmo-msc/

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/15121
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: I1cd2c7317933b416b74a412f10e4cad16ecd6e59
Gerrit-Change-Number: 15121
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: neels <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190808/379499be/attachment.htm>


More information about the gerrit-log mailing list