mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
portaudio-v19: upgrade 19.6.0 -> 19.7.0
* development continues on github * build with CMake * examples is a configure option -> replace (always empty) extra package by PACKAGECONFIG From announcement: * support for latest Mac OS APIs * Jack - fixes for device names that allows use on Linux systems with PipeWire * WASAPI - numerous improvements * OSS - better format support * ALSA - various fixes for hangs and crashes * WDMKS - improved performance and fixes * updated build scripts Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,51 +0,0 @@
|
|||||||
Upstream forgot to pass LDFLAGS to everything apart from the main library.
|
|
||||||
|
|
||||||
Upstream-Status: Pending
|
|
||||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
|
||||||
|
|
||||||
diff --git a/Makefile.in b/Makefile.in
|
|
||||||
index 5e1a764..61ecdd1 100644
|
|
||||||
--- a/Makefile.in
|
|
||||||
+++ b/Makefile.in
|
|
||||||
@@ -171,20 +171,20 @@ lib/$(PALIB): lib-stamp $(LTOBJS) $(MAKEFILE) $(PAINC)
|
|
||||||
@WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) $(PA_LDFLAGS) -o lib/$(PALIB) $(LTOBJS) $(DLL_LIBS)
|
|
||||||
|
|
||||||
$(ALL_TESTS): bin/%: lib/$(PALIB) $(MAKEFILE) $(PAINC) test/%.c
|
|
||||||
- @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(top_srcdir)/test/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
- @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(top_srcdir)/test/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(top_srcdir)/test/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(top_srcdir)/test/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
|
|
||||||
$(EXAMPLES): bin/%: lib/$(PALIB) $(MAKEFILE) $(PAINC) examples/%.c
|
|
||||||
- @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(top_srcdir)/examples/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
- @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(top_srcdir)/examples/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(top_srcdir)/examples/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(top_srcdir)/examples/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
|
|
||||||
$(SELFTESTS): bin/%: lib/$(PALIB) $(MAKEFILE) $(PAINC) qa/%.c
|
|
||||||
- @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(top_srcdir)/qa/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
- @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(top_srcdir)/qa/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(top_srcdir)/qa/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(top_srcdir)/qa/$*.c lib/$(PALIB) $(LIBS)
|
|
||||||
|
|
||||||
bin/paloopback: lib/$(PALIB) $(MAKEFILE) $(PAINC) $(LOOPBACK_OBJS)
|
|
||||||
- @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(LOOPBACK_OBJS) lib/$(PALIB) $(LIBS)
|
|
||||||
- @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(LOOPBACK_OBJS) lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_FALSE@ $(LIBTOOL) --mode=link $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(LOOPBACK_OBJS) lib/$(PALIB) $(LIBS)
|
|
||||||
+ @WITH_ASIO_TRUE@ $(LIBTOOL) --mode=link --tag=CXX $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(LOOPBACK_OBJS) lib/$(PALIB) $(LIBS)
|
|
||||||
|
|
||||||
install: lib/$(PALIB) portaudio-2.0.pc
|
|
||||||
$(INSTALL) -d $(DESTDIR)$(libdir)
|
|
||||||
@@ -224,10 +224,10 @@ distclean: clean
|
|
||||||
$(CC) -c $(CFLAGS) $< -o $@
|
|
||||||
|
|
||||||
%.lo: %.c $(MAKEFILE) $(PAINC)
|
|
||||||
- $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $< -o $@
|
|
||||||
+ $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) $(LDFLAGS) $< -o $@
|
|
||||||
|
|
||||||
%.lo: %.cpp $(MAKEFILE) $(PAINC)
|
|
||||||
- $(LIBTOOL) --mode=compile --tag=CXX $(CXX) -c $(CXXFLAGS) $< -o $@
|
|
||||||
+ $(LIBTOOL) --mode=compile --tag=CXX $(CXX) -c $(CXXFLAGS) $(LDFLAGS) $< -o $@
|
|
||||||
|
|
||||||
%.o: %.cpp $(MAKEFILE) $(PAINC)
|
|
||||||
$(CXX) -c $(CXXFLAGS) $< -o $@
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
From 8ec1b100afda5b3e31f9d44af04b04b16dfff2e4 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||||
|
Date: Tue, 18 May 2021 00:15:46 +0200
|
||||||
|
Subject: [PATCH] Find jack with pkgconfig
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
|
||||||
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||||
|
---
|
||||||
|
CMakeLists.txt | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index 122fe93..ab7d7f5 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -274,7 +274,8 @@ ELSE()
|
||||||
|
|
||||||
|
ELSEIF(UNIX)
|
||||||
|
|
||||||
|
- FIND_PACKAGE(Jack)
|
||||||
|
+ find_package(PkgConfig REQUIRED)
|
||||||
|
+ pkg_check_modules (JACK jack)
|
||||||
|
IF(JACK_FOUND)
|
||||||
|
OPTION(PA_USE_JACK "Enable support for Jack" ON)
|
||||||
|
ELSE()
|
||||||
|
--
|
||||||
|
2.31.1
|
||||||
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
SUMMARY = "A portable audio library"
|
||||||
|
SECTION = "libs/multimedia"
|
||||||
|
LICENSE = "MIT"
|
||||||
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=26107732c2ab637c5710446fcfaf02df"
|
||||||
|
|
||||||
|
PV = "v190700"
|
||||||
|
|
||||||
|
SRC_URI = " \
|
||||||
|
git://github.com/PortAudio/portaudio.git \
|
||||||
|
file://0001-Find-jack.patch \
|
||||||
|
"
|
||||||
|
SRCREV = "147dd722548358763a8b649b3e4b41dfffbcfbb6"
|
||||||
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
|
inherit cmake
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "alsa jack"
|
||||||
|
PACKAGECONFIG[alsa] = ",,alsa-lib"
|
||||||
|
PACKAGECONFIG[jack] = ",,jack"
|
||||||
|
PACKAGECONFIG[examples] = "-DPA_BUILD_EXAMPLES=ON,-DPA_BUILD_EXAMPLES=OFF"
|
||||||
|
|
||||||
|
do_install_append() {
|
||||||
|
if [ -d ${B}/examples ]; then
|
||||||
|
install -d ${D}${bindir}
|
||||||
|
for example in ${B}/examples/pa*; do
|
||||||
|
install -m755 $example ${D}${bindir}/
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
FILES_SOLIBSDEV = ""
|
||||||
|
FILES_${PN} += "${libdir}/libportaudio.so"
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
SUMMARY = "A portable audio library"
|
|
||||||
SECTION = "libs/multimedia"
|
|
||||||
LICENSE = "MIT"
|
|
||||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=26107732c2ab637c5710446fcfaf02df"
|
|
||||||
|
|
||||||
PV = "v190600"
|
|
||||||
|
|
||||||
SRC_URI = "http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz \
|
|
||||||
file://ldflags.patch"
|
|
||||||
SRC_URI[md5sum] = "4df8224e047529ca9ad42f0521bf81a8"
|
|
||||||
SRC_URI[sha256sum] = "f5a21d7dcd6ee84397446fa1fa1a0675bb2e8a4a6dceb4305a8404698d8d1513"
|
|
||||||
|
|
||||||
S = "${WORKDIR}/portaudio"
|
|
||||||
|
|
||||||
inherit autotools pkgconfig
|
|
||||||
|
|
||||||
PACKAGECONFIG ??= "alsa jack"
|
|
||||||
PACKAGECONFIG[alsa] = "--with-alsa, --without-alsa, alsa-lib,"
|
|
||||||
PACKAGECONFIG[jack] = "--with-jack, --without-jack, jack,"
|
|
||||||
|
|
||||||
EXTRA_OECONF = "--without-oss --without-asihpi"
|
|
||||||
|
|
||||||
do_install_append() {
|
|
||||||
mkdir --parents ${D}${bindir}
|
|
||||||
for b in ${B}/bin/pa*; do
|
|
||||||
# Bit nasty, should always work
|
|
||||||
${B}/*-libtool --mode install install $b ${D}${bindir}
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
PACKAGES += "portaudio-examples"
|
|
||||||
FILES_portaudio-examples = "${bindir}"
|
|
||||||
Reference in New Issue
Block a user