summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2022-04-05 07:29:41 +0200
committerKhem Raj <raj.khem@gmail.com>2022-04-06 20:25:34 -0400
commit423a01e9ef6ba326a6fe534240a2adf50d2ce514 (patch)
treedd3c2294cbda84e92c7e48956cc53506f6d7bece
parent4c14cc3dc203e905a32f49ba6a778416599736ed (diff)
downloadmeta-openembedded-423a01e9ef6ba326a6fe534240a2adf50d2ce514.tar.gz
jack: upgrade 1.19.19 -> 1.19.20
* Patch to fix simdtests.cpp was merged * guess who initially wrote simdtests.cpp :) Changes * Add waf autooption --example-tools to allow optional build of executables, libraries and man pages provided by jack-example-tools (the files are built by default). * Building and installing the additional files can be disabled by using --example-tools=no or --no-example-tools. * Fix 32-bit support in ALSA driver * Fix incomplete ASIO support on Windows * Fix metadata usage with multiple users * Fix netsource tool missing on Windows * Fix semaphore usage on macOS * Official FreeBSD support Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-multimedia/jack/jack/0001-example-clients-Use-c-compiler-for-jack_simdtests.patch37
-rw-r--r--meta-oe/recipes-multimedia/jack/jack_1.19.20.bb (renamed from meta-oe/recipes-multimedia/jack/jack_1.19.19.bb)6
2 files changed, 2 insertions, 41 deletions
diff --git a/meta-oe/recipes-multimedia/jack/jack/0001-example-clients-Use-c-compiler-for-jack_simdtests.patch b/meta-oe/recipes-multimedia/jack/jack/0001-example-clients-Use-c-compiler-for-jack_simdtests.patch
deleted file mode 100644
index 1bdc5adbc1..0000000000
--- a/meta-oe/recipes-multimedia/jack/jack/0001-example-clients-Use-c-compiler-for-jack_simdtests.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From f8cb818ca96fc2a45a04448a51f25a277ec183db Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 15 Jan 2020 20:21:58 -0800
4Subject: [PATCH] example-clients: Use c++ compiler for jack_simdtests
5
6It uses c++ sources and runtime therefore its best to use c++ compiler
7to build it so it can find the correct runtime, cross compiling with
8clang fails
9
10x86_64-yoe-linux-ld: example-clients/simdtests.cpp.28.o: undefined reference to symbol '__cxa_call_unexpected@@CXXABI_1.3'
11
12Upstream-Status: Submitted [https://github.com/jackaudio/jack2/pull/536]
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 example-clients/wscript | 9 +++++++--
16 1 file changed, 7 insertions(+), 2 deletions(-)
17
18--- a/example-clients/wscript
19+++ b/example-clients/wscript
20@@ -49,10 +49,15 @@ def build(bld):
21 else:
22 use = ['clientlib']
23
24+ if example_program == 'jack_simdtests':
25+ ftrs = 'cxx cxxprogram'
26+ else:
27+ ftrs = 'c cprogram'
28+
29 if bld.env['IS_MACOSX']:
30- prog = bld(features='c cprogram', framework = ['Foundation'])
31+ prog = bld(features = ftrs, framework = ['Foundation'])
32 else:
33- prog = bld(features='c cprogram')
34+ prog = bld(features = ftrs)
35 prog.includes = os_incdir + ['../common/jack', '../common']
36 prog.source = example_program_source
37 prog.use = use
diff --git a/meta-oe/recipes-multimedia/jack/jack_1.19.19.bb b/meta-oe/recipes-multimedia/jack/jack_1.19.20.bb
index 97b0edeed0..452f066559 100644
--- a/meta-oe/recipes-multimedia/jack/jack_1.19.19.bb
+++ b/meta-oe/recipes-multimedia/jack/jack_1.19.20.bb
@@ -14,10 +14,8 @@ LIC_FILES_CHKSUM = " \
14 14
15DEPENDS = "libsamplerate0 libsndfile1 readline" 15DEPENDS = "libsamplerate0 libsndfile1 readline"
16 16
17SRC_URI = "git://github.com/jackaudio/jack2.git;branch=master;protocol=https \ 17SRC_URI = "git://github.com/jackaudio/jack2.git;branch=master;protocol=https"
18 file://0001-example-clients-Use-c-compiler-for-jack_simdtests.patch \ 18SRCREV = "a2fe7ec2fdbd315f112c8035282d94a429451178"
19 "
20SRCREV = "3e6ca6b734b69e2f5dfb85935068e15006fb5acf"
21 19
22S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"
23 21