[info=5fb369a588e583c622199334e0dd95e82715b97a7e71e14dd7f603c656780a3e]
OBS-URL: https://build.opensuse.org/package/show/network:telephony/libosmo-netif?expand=0&rev=44
This commit is contained in:
parent
9b651ea0da
commit
19b821e37e
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0cfd27fca1e0d50291eef3aa113cecd123e5485e3d2ec10d7cd3e3d50ac2fda2
|
||||
size 274737
|
BIN
1.5.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
1.5.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
mtime: 1698952911
|
||||
commit: 92e190f86689f4e93a65ba91ea6b6c0071f15f50eacc880ef9c7349abccc2ba1
|
||||
mtime: 1729951854
|
||||
commit: 5fb369a588e583c622199334e0dd95e82715b97a7e71e14dd7f603c656780a3e
|
||||
url: https://src.opensuse.org/jengelh/libosmo-netif
|
||||
revision: master
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb0ea03fee39b37028ff5a8aad55ed3d0fe4bca8f9e90fe87e5ee7de5b0525be
|
||||
oid sha256:36979dce313096ad294cbf25ad1b48790ff4234e814b28118aecb77e132cc3b5
|
||||
size 256
|
||||
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 26 14:09:15 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 1.5.1
|
||||
* stream: Add client-side (segmentation) support for IPA
|
||||
* Introduce generic osmo_stream_{cli,srv}_get_fd() API
|
||||
* stream_{cli,srv}: Add support for SCTP in OSMO_IO mode
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 1 19:06:32 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libosmo-netif
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: libosmo-netif
|
||||
Version: 1.4.0
|
||||
Version: 1.5.1
|
||||
Release: 0
|
||||
Summary: Osmocom library for muxed audio
|
||||
License: GPL-2.0-or-later
|
||||
@ -29,9 +29,9 @@ BuildRequires: automake
|
||||
BuildRequires: libtool >= 2
|
||||
BuildRequires: lksctp-tools-devel
|
||||
BuildRequires: pkg-config >= 0.20
|
||||
BuildRequires: pkgconfig(libosmocodec) >= 1.9.0
|
||||
BuildRequires: pkgconfig(libosmocore) >= 1.9.0
|
||||
BuildRequires: pkgconfig(libosmogsm) >= 1.9.0
|
||||
BuildRequires: pkgconfig(libosmocodec) >= 1.10.0
|
||||
BuildRequires: pkgconfig(libosmocore) >= 1.10.0
|
||||
BuildRequires: pkgconfig(libosmogsm) >= 1.10.0
|
||||
BuildRequires: pkgconfig(talloc)
|
||||
|
||||
%description
|
||||
|
@ -4,10 +4,10 @@
|
||||
src/Makefile.am | 2 +-
|
||||
3 files changed, 17 insertions(+), 16 deletions(-)
|
||||
|
||||
Index: libosmo-netif-1.4.0/configure.ac
|
||||
Index: libosmo-netif-1.5.1/configure.ac
|
||||
===================================================================
|
||||
--- libosmo-netif-1.4.0.orig/configure.ac
|
||||
+++ libosmo-netif-1.4.0/configure.ac
|
||||
--- libosmo-netif-1.5.1.orig/configure.ac
|
||||
+++ libosmo-netif-1.5.1/configure.ac
|
||||
@@ -125,6 +125,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
|
||||
LIBS=$old_LIBS
|
||||
])
|
||||
@ -16,10 +16,10 @@ Index: libosmo-netif-1.4.0/configure.ac
|
||||
found_pcap=yes
|
||||
AC_CHECK_HEADERS(pcap.h,,found_pcap=no)
|
||||
AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes)
|
||||
Index: libosmo-netif-1.4.0/examples/Makefile.am
|
||||
Index: libosmo-netif-1.5.1/examples/Makefile.am
|
||||
===================================================================
|
||||
--- libosmo-netif-1.4.0.orig/examples/Makefile.am
|
||||
+++ libosmo-netif-1.4.0/examples/Makefile.am
|
||||
--- libosmo-netif-1.5.1.orig/examples/Makefile.am
|
||||
+++ libosmo-netif-1.5.1/examples/Makefile.am
|
||||
@@ -1,5 +1,5 @@
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include
|
||||
-AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS)
|
||||
@ -99,12 +99,12 @@ Index: libosmo-netif-1.4.0/examples/Makefile.am
|
||||
osmux_test_output_LDADD = $(top_builddir)/src/libosmonetif.la \
|
||||
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
||||
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
||||
Index: libosmo-netif-1.4.0/src/Makefile.am
|
||||
Index: libosmo-netif-1.5.1/src/Makefile.am
|
||||
===================================================================
|
||||
--- libosmo-netif-1.4.0.orig/src/Makefile.am
|
||||
+++ libosmo-netif-1.4.0/src/Makefile.am
|
||||
--- libosmo-netif-1.5.1.orig/src/Makefile.am
|
||||
+++ libosmo-netif-1.5.1/src/Makefile.am
|
||||
@@ -3,7 +3,7 @@
|
||||
LIBVERSION=12:0:1
|
||||
LIBVERSION=13:1:2
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
|
||||
-AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
|
||||
|
Loading…
x
Reference in New Issue
Block a user