mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-02 13:59:59 +00:00
fluidsynth: upgrade 2.1.2 -> 2.1.3
>From [1]: * fix a cross-compilation failure from Win32 to WinARM (#630) * fix issues while fluid_player is seeking (#634, #646) * fix a NULL pointer dereference if synth.dynamic-sample-loading is enabled (#635) * fix a NULL pointer dereference in delete_rvoice_mixer_threads() (#640) * fix a NULL pointer dereference in the soundfont loader (#647, thanks to @jjceresa) * fix dsound driver playing garbage when terminating fluidsynth (#642, thanks to @jjceresa) * avoid memory leaks when using libinstpatch (#643) [1] https://github.com/FluidSynth/fluidsynth/releases/tag/v2.1.3 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -5,8 +5,8 @@ LICENSE = "LGPL-2.1"
|
|||||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=fc178bcd425090939a8b634d1d6a9594"
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fc178bcd425090939a8b634d1d6a9594"
|
||||||
|
|
||||||
SRC_URI = "git://github.com/FluidSynth/fluidsynth.git"
|
SRC_URI = "git://github.com/FluidSynth/fluidsynth.git"
|
||||||
SRCREV = "d9ad6a0725840388a48f45e38eda903a65ec1cf5"
|
SRCREV = "19a20eb8526465fdf940b740b13462d71e190a1a"
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
PV = "2.1.2"
|
PV = "2.1.3"
|
||||||
|
|
||||||
inherit cmake pkgconfig lib_package
|
inherit cmake pkgconfig lib_package
|
||||||
|
|||||||
+22
-10
@@ -10,28 +10,40 @@ Upstream-Status: Inappropriate [embedded specific]
|
|||||||
|
|
||||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||||
---
|
---
|
||||||
src/CMakeLists.txt | 11 -----------
|
src/CMakeLists.txt | 23 +----------------------
|
||||||
1 file changed, 11 deletions(-)
|
1 file changed, 1 insertion(+), 22 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
||||||
index a0ba53d1..1c626717 100644
|
index 356bb734..58ff7635 100644
|
||||||
--- a/src/CMakeLists.txt
|
--- a/src/CMakeLists.txt
|
||||||
+++ b/src/CMakeLists.txt
|
+++ b/src/CMakeLists.txt
|
||||||
@@ -359,14 +359,3 @@ else ( MACOSX_FRAMEWORK )
|
@@ -399,25 +399,4 @@ else ( MACOSX_FRAMEWORK )
|
||||||
)
|
|
||||||
install ( FILES ${public_main_HEADER} DESTINATION ${INCLUDE_INSTALL_DIR} )
|
install ( FILES ${public_main_HEADER} DESTINATION ${INCLUDE_INSTALL_DIR} )
|
||||||
endif ( MACOSX_FRAMEWORK )
|
endif ( MACOSX_FRAMEWORK )
|
||||||
-
|
|
||||||
-# ******* Auto Generated Lookup Tables ******
|
-# ******* Auto Generated Lookup Tables ******
|
||||||
-
|
-
|
||||||
-include(ExternalProject)
|
-include(ExternalProject)
|
||||||
|
-
|
||||||
|
-set (GENTAB_SDIR ${CMAKE_CURRENT_SOURCE_DIR}/gentables)
|
||||||
|
-set (GENTAB_BDIR ${CMAKE_CURRENT_BINARY_DIR}/gentables)
|
||||||
|
-
|
||||||
|
-# Use external project to ensure that cmake uses the host compiler when building make_tables.exe
|
||||||
|
-# To fix cross-compiling fluidsynth from Win32 to ARM (using vcpkg), we need to pass the current generator
|
||||||
|
-# on to the external project, otherwise (for some unknown reason) the target compiler will be used rather
|
||||||
|
-# than the host compiler.
|
||||||
-ExternalProject_Add(gentables
|
-ExternalProject_Add(gentables
|
||||||
- DOWNLOAD_COMMAND ""
|
- DOWNLOAD_COMMAND ""
|
||||||
- SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/gentables
|
- SOURCE_DIR ${GENTAB_SDIR}
|
||||||
- BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/gentables
|
- BINARY_DIR ${GENTAB_BDIR}
|
||||||
- INSTALL_COMMAND ${CMAKE_CURRENT_BINARY_DIR}/gentables/make_tables.exe "${CMAKE_BINARY_DIR}/"
|
- CONFIGURE_COMMAND
|
||||||
|
- "${CMAKE_COMMAND}" -DCMAKE_VERBOSE_MAKEFILE=${CMAKE_VERBOSE_MAKEFILE} -G "${CMAKE_GENERATOR}" -B "${GENTAB_BDIR}" "${GENTAB_SDIR}"
|
||||||
|
- BUILD_COMMAND
|
||||||
|
- "${CMAKE_COMMAND}" --build "${GENTAB_BDIR}"
|
||||||
|
- INSTALL_COMMAND ${GENTAB_BDIR}/make_tables.exe "${CMAKE_BINARY_DIR}/"
|
||||||
-)
|
-)
|
||||||
-add_dependencies(libfluidsynth-OBJ gentables)
|
-add_dependencies(libfluidsynth-OBJ gentables)
|
||||||
|
+
|
||||||
--
|
--
|
||||||
2.14.5
|
2.21.1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user