mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
jack: upgrade 1.9.12 -> 1.9.13
This release contains various fixes / enhancements - from release announcement: * Meta-data API implementation. (and a few tools updated with support for it) * Correct GPL licence to LGPL for files needed to build libjack. * Remove FreeBoB backend (superseded by FFADO). * define JACK_LIB_EXPORT, useful for internal clients. * Mark jack_midi_reset_buffer as deprecated. * Add example systemd unit file * Signal to systemd when jackd is ready. * Set "seq" alsa midi driver to maximum resolution possible. * Fix loading internal clients from another internal client. * Code cleanup and various fixes. (too many to mention here, see git log for details) Backported patches can go. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,27 +0,0 @@
|
|||||||
From dd65685c24bb25a800ed42388ed0a1e8792b2ed2 Mon Sep 17 00:00:00 2001
|
|
||||||
From: falkTX <falktx@gmail.com>
|
|
||||||
Date: Sat, 24 Nov 2018 14:29:58 +0100
|
|
||||||
Subject: [PATCH] Fix OSX build
|
|
||||||
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
Upstream-Status: Backport [https://github.com/jackaudio/jack2/commit/d851fada460d42508a6f82b19867f63853062583]
|
|
||||||
---
|
|
||||||
posix/JackNetUnixSocket.cpp | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/posix/JackNetUnixSocket.cpp b/posix/JackNetUnixSocket.cpp
|
|
||||||
index 7a5585ef..a4cb5036 100644
|
|
||||||
--- a/posix/JackNetUnixSocket.cpp
|
|
||||||
+++ b/posix/JackNetUnixSocket.cpp
|
|
||||||
@@ -169,7 +169,7 @@ namespace Jack
|
|
||||||
|
|
||||||
int JackNetUnixSocket::Bind()
|
|
||||||
{
|
|
||||||
- return bind(fSockfd, reinterpret_cast<socket_address_t*>(&fRecvAddr), sizeof(socket_address_t));
|
|
||||||
+ return ::bind(fSockfd, reinterpret_cast<socket_address_t*>(&fRecvAddr), sizeof(socket_address_t));
|
|
||||||
}
|
|
||||||
|
|
||||||
int JackNetUnixSocket::BindWith(const char* ip)
|
|
||||||
--
|
|
||||||
2.20.1
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
From 72564b04151b61fa8d954bbb43afc58108ee50ec Mon Sep 17 00:00:00 2001
|
|
||||||
From: Thomas Nagy <tnagy@waf.io>
|
|
||||||
Date: Mon, 12 Mar 2018 20:42:55 +0100
|
|
||||||
Subject: [PATCH] Python 3.7 fixes #2126
|
|
||||||
|
|
||||||
Upstream-Status: Backport
|
|
||||||
[https://gitlab.com/ita1024/waf/commit/facdc0b173d933073832c768ec1917c553cb369c]
|
|
||||||
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
---
|
|
||||||
waflib/Node.py | 2 --
|
|
||||||
1 file changed, 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/waflib/Node.py b/waflib/Node.py
|
|
||||||
index fb3cd273..405a6fec 100644
|
|
||||||
--- a/waflib/Node.py
|
|
||||||
+++ b/waflib/Node.py
|
|
||||||
@@ -537,8 +537,6 @@ class Node(object):
|
|
||||||
if maxdepth:
|
|
||||||
for k in node.ant_iter(accept=accept, maxdepth=maxdepth - 1, pats=npats, dir=dir, src=src, remove=remove):
|
|
||||||
yield k
|
|
||||||
- raise StopIteration
|
|
||||||
-
|
|
||||||
def ant_glob(self, *k, **kw):
|
|
||||||
"""
|
|
||||||
This method is used for finding files across folders. It behaves like ant patterns:
|
|
||||||
@@ -14,12 +14,9 @@ LIC_FILES_CHKSUM = " \
|
|||||||
|
|
||||||
DEPENDS = "libsamplerate0 libsndfile1 readline"
|
DEPENDS = "libsamplerate0 libsndfile1 readline"
|
||||||
|
|
||||||
SRC_URI = "git://github.com/jackaudio/jack2.git \
|
SRC_URI = "git://github.com/jackaudio/jack2.git"
|
||||||
file://0001-Python-3.7-fixes-2126.patch \
|
SRCREV = "37250ff470277f9947fbf3ba738f943053e30525"
|
||||||
file://0001-Fix-OSX-build.patch \
|
PV = "1.9.13"
|
||||||
"
|
|
||||||
SRCREV = "c1647819eed6d11f94b21981d9c869629299f357"
|
|
||||||
PV = "1.9.12"
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
inherit waf pkgconfig
|
inherit waf pkgconfig
|
||||||
|
|||||||
Reference in New Issue
Block a user