osmith submitted this change.

View Change

Approvals: fixeria: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
debian: libosmo-abis-dev dep on libosmo-netif-dev

Let libosmo-abis-dev depend on libosmo-netif-dev, so libosmonetif.pc is
available when using libosmoabis.pc (which now references
libosmonetif.pc).

Without this, osmo-pcu and osmo-remsim fail to build:

checking for libosmoabis >= 1.6.0... no
configure: error: Package requirements (libosmoabis >= 1.6.0) were not met:

Package 'libosmo-netif', required by 'libosmoabis', not found

Fixes: 258dcf71 ("ipaccess: Convert BTS OML & RSL link to use stream_cli")
Change-Id: I06031417406b4b3187eb9c7ed8b509e97e03bb7f
---
M debian/control
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 72aed59..80c2fea 100644
--- a/debian/control
+++ b/debian/control
@@ -2,6 +2,8 @@
Maintainer: Osmocom team <openbsc@lists.osmocom.org>
Section: libs
Priority: optional
+# NOTE: libosmo-netif-dev is also in Depends of libosmo-abis-dev below,
+# as libosmoabis.pc.in has "Requires.private: libosmo-netif"
Build-Depends: debhelper (>= 10),
autotools-dev,
autoconf,
@@ -61,7 +63,8 @@
Section: libdevel
Depends: ${misc:Depends},
libosmotrau10 (= ${binary:Version}),
- libosmoabis13 (= ${binary:Version})
+ libosmoabis13 (= ${binary:Version}),
+ libosmo-netif-dev (>= 1.5.0),
Description: Development headers for A-bis interface
The libosmo-abis library contains common/shared code regarding the A-bis
interface between GSM BTS and BSC. This package in particular contains the

To view, visit change 38982. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I06031417406b4b3187eb9c7ed8b509e97e03bb7f
Gerrit-Change-Number: 38982
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>