- Update to release 1.2.0
OBS-URL: https://build.opensuse.org/package/show/network:telephony/libosmo-netif?expand=0&rev=36
This commit is contained in:
parent
7432eaf6ee
commit
c4c2d50a20
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ac104ecad5ca23193152171d8dec2e1bc7cb603a2811b9aa26baa2ab9260f7dd
|
|
||||||
size 240153
|
|
3
1.2.0.tar.gz
Normal file
3
1.2.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5dd38ceccc1cdb9b53b169df36bddc07eccbb136702360899d900ec461e68378
|
||||||
|
size 247900
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 3 15:52:24 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.2.0
|
||||||
|
* stream: Add support for AF_UNIX sockets
|
||||||
|
* Introduce osmo_prim_srv APIs
|
||||||
|
* prim: Add internal CTL SAPI to negotiate SAP versions
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Mar 14 20:55:09 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
Sun Mar 14 20:55:09 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libosmo-netif
|
# spec file for package libosmo-netif
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libosmo-netif
|
Name: libosmo-netif
|
||||||
Version: 1.1.0
|
Version: 1.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Osmocom library for muxed audio
|
Summary: Osmocom library for muxed audio
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -84,7 +84,7 @@ fi
|
|||||||
%postun -n libosmonetif8 -p /sbin/ldconfig
|
%postun -n libosmonetif8 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n libosmonetif8
|
%files -n libosmonetif8
|
||||||
%_libdir/libosmonetif.so.8*
|
%_libdir/libosmonetif.so.*
|
||||||
|
|
||||||
%files -n libosmonetif-devel
|
%files -n libosmonetif-devel
|
||||||
%license COPYING
|
%license COPYING
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
src/Makefile.am | 2 +-
|
src/Makefile.am | 2 +-
|
||||||
3 files changed, 17 insertions(+), 16 deletions(-)
|
3 files changed, 17 insertions(+), 16 deletions(-)
|
||||||
|
|
||||||
Index: libosmo-netif-1.1.0/configure.ac
|
Index: libosmo-netif-1.2.0/configure.ac
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-netif-1.1.0.orig/configure.ac
|
--- libosmo-netif-1.2.0.orig/configure.ac
|
||||||
+++ libosmo-netif-1.1.0/configure.ac
|
+++ libosmo-netif-1.2.0/configure.ac
|
||||||
@@ -124,6 +124,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
|
@@ -124,6 +124,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
|
||||||
LIBS=$old_LIBS
|
LIBS=$old_LIBS
|
||||||
])
|
])
|
||||||
@ -16,10 +16,10 @@ Index: libosmo-netif-1.1.0/configure.ac
|
|||||||
found_pcap=yes
|
found_pcap=yes
|
||||||
AC_CHECK_HEADERS(pcap.h,,found_pcap=no)
|
AC_CHECK_HEADERS(pcap.h,,found_pcap=no)
|
||||||
AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes)
|
AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes)
|
||||||
Index: libosmo-netif-1.1.0/examples/Makefile.am
|
Index: libosmo-netif-1.2.0/examples/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-netif-1.1.0.orig/examples/Makefile.am
|
--- libosmo-netif-1.2.0.orig/examples/Makefile.am
|
||||||
+++ libosmo-netif-1.1.0/examples/Makefile.am
|
+++ libosmo-netif-1.2.0/examples/Makefile.am
|
||||||
@@ -1,5 +1,5 @@
|
@@ -1,5 +1,5 @@
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/include
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
||||||
-AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS)
|
-AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS)
|
||||||
@ -99,12 +99,12 @@ Index: libosmo-netif-1.1.0/examples/Makefile.am
|
|||||||
osmux_test_output_LDADD = $(top_builddir)/src/libosmonetif.la \
|
osmux_test_output_LDADD = $(top_builddir)/src/libosmonetif.la \
|
||||||
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
||||||
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
||||||
Index: libosmo-netif-1.1.0/src/Makefile.am
|
Index: libosmo-netif-1.2.0/src/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-netif-1.1.0.orig/src/Makefile.am
|
--- libosmo-netif-1.2.0.orig/src/Makefile.am
|
||||||
+++ libosmo-netif-1.1.0/src/Makefile.am
|
+++ libosmo-netif-1.2.0/src/Makefile.am
|
||||||
@@ -3,7 +3,7 @@
|
@@ -3,7 +3,7 @@
|
||||||
LIBVERSION=9:1:1
|
LIBVERSION=10:0:2
|
||||||
|
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
|
||||||
-AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
|
-AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
|
||||||
|
Loading…
Reference in New Issue
Block a user