From 950331a6f53cb25af81e1537cc14591eb3d8e20b Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Wed, 16 Jan 2019 22:41:54 +0100 Subject: fluidsynth: upgrade 1.1.11 -> 2.0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fallout caused by API change should be fixed in all recipes depending fluidsynth. To make this happen I sent out patches to many projects during last autumn. * Add PACKAGECONFIG for profiling (disabled by default). * ARM-NEON-patch was reworked and profiling runs were performed with and without the patch. See patch description for profiling results. * We need to split tool to generate parameter tables to native. Since target and native builds do not share much in common we don't use BBCALLSEXTEND * Add patch which allows clients to reduce useless copies of buffers. Fluidsynth-DSSI (in meta-qt5-extra currently) is going to make use of this. Signed-off-by: Andreas Müller Signed-off-by: Khem Raj --- .../fluidsynth/fluidsynth_git.bb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb (limited to 'meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb') diff --git a/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb new file mode 100644 index 0000000000..4f600a218d --- /dev/null +++ b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth_git.bb @@ -0,0 +1,22 @@ +require ${BPN}.inc + +DEPENDS = "${BPN}-native alsa-lib ncurses glib-2.0" + +SRC_URI += " \ + file://0001-Do-not-build-gentables-helper-we-have-to-use-native-.patch \ + file://0002-fluid_synth_nwrite_float-Allow-zero-pointer-for-left.patch \ + file://0003-Use-ARM-NEON-accelaration-for-float-multithreaded-se.patch \ +" + +EXTRA_OECMAKE = "-Denable-floats=ON -DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')}" + +do_configure_append() { + make_tables.exe ${B}/ +} + +PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'pulseaudio', d)}" +PACKAGECONFIG[sndfile] = "-Denable-libsndfile=ON,-Denable-libsndfile=OFF,libsndfile1" +PACKAGECONFIG[jack] = "-Denable-jack=ON,-Denable-jack=OFF,jack" +PACKAGECONFIG[pulseaudio] = "-Denable-pulseaudio=ON,-Denable-pulseaudio=OFF,pulseaudio" +PACKAGECONFIG[portaudio] = "-Denable-portaudio=ON,-Denable-portaudio=OFF,portaudio-v19" +PACKAGECONFIG[profiling] = "-Denable-profiling=ON,-Denable-profiling=OFF" -- cgit 1.2.3-korg