diff options
| author | jabdoa2 <jabdoa2@users.noreply.github.com> | 2020-12-31 17:48:11 +0100 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2021-01-14 18:38:25 -0800 |
| commit | 6f1f055f62dbc86a34deaed3bc95cc8cb767622c (patch) | |
| tree | cc2cddd560b6888dead6447b5f29a2031fca5047 | |
| parent | 65d71ece83897b36891c106bec1eb37ca5859658 (diff) | |
| download | meta-openembedded-6f1f055f62dbc86a34deaed3bc95cc8cb767622c.tar.gz | |
libsdl2-mixer: Fix ogg/vorbis support in libsdl2-mixer
Remove --enable-music-ogg-tremor as it broke vorbis support:
checking tremor/ivorbisfile.h usability... no
checking tremor/ivorbisfile.h presence... no
checking for tremor/ivorbisfile.h... no
checking for ov_open_callbacks in -lvorbisidec... no
configure: WARNING: *** Unable to find Ogg Vorbis Tremor library (http://www.xiph.org/)
configure: WARNING: Ogg Vorbis support disabled
With this change:
checking vorbis/vorbisfile.h usability... yes
checking vorbis/vorbisfile.h presence... yes
checking for vorbis/vorbisfile.h... yes
checking for ov_open_callbacks in -lvorbisfile... yes
-- dynamic libvorbisfile -> libvorbisfile.so.3
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 074c7d9a1ebb86674f02d8a5545e1ed54f6d87fe)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
| -rw-r--r-- | meta-oe/recipes-graphics/libsdl/libsdl2-mixer_2.0.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-graphics/libsdl/libsdl2-mixer_2.0.4.bb b/meta-oe/recipes-graphics/libsdl/libsdl2-mixer_2.0.4.bb index aa246f9995..77e50d3841 100644 --- a/meta-oe/recipes-graphics/libsdl/libsdl2-mixer_2.0.4.bb +++ b/meta-oe/recipes-graphics/libsdl/libsdl2-mixer_2.0.4.bb | |||
| @@ -14,7 +14,7 @@ S = "${WORKDIR}/SDL2_mixer-${PV}" | |||
| 14 | inherit autotools-brokensep pkgconfig | 14 | inherit autotools-brokensep pkgconfig |
| 15 | 15 | ||
| 16 | EXTRA_AUTORECONF += "--include=acinclude" | 16 | EXTRA_AUTORECONF += "--include=acinclude" |
| 17 | EXTRA_OECONF = "--disable-music-mp3 --enable-music-ogg --enable-music-ogg-tremor LIBS=-L${STAGING_LIBDIR}" | 17 | EXTRA_OECONF = "--disable-music-mp3 --enable-music-ogg LIBS=-L${STAGING_LIBDIR}" |
| 18 | 18 | ||
| 19 | PACKAGECONFIG[mad] = "--enable-music-mp3-mad-gpl,--disable-music-mp3-mad-gpl,libmad" | 19 | PACKAGECONFIG[mad] = "--enable-music-mp3-mad-gpl,--disable-music-mp3-mad-gpl,libmad" |
| 20 | 20 | ||
