diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2015-12-22 11:49:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-27 11:26:59 +0000 |
commit | 7c7d436e660a8869179c4e5579aa2a992d636c22 (patch) | |
tree | a0026c774e9e0ca13c063de2f64937f2ea969973 /meta/recipes-multimedia/libsndfile | |
parent | 5f87ff116d9ccd5e95e638dfa84583169a3f99f3 (diff) | |
download | openembedded-core-7c7d436e660a8869179c4e5579aa2a992d636c22.tar.gz openembedded-core-7c7d436e660a8869179c4e5579aa2a992d636c22.tar.bz2 openembedded-core-7c7d436e660a8869179c4e5579aa2a992d636c22.zip |
libsndfile1: enable FLAC/Ogg/Vorbis support
This makes it possible to handle FLAC and Vorbis files in programs
that use libsndfile.
It seems that the external dependencies were disabled just as a
routine measure to make builds deterministic, since the dependencies
were missing from DEPENDS[1]. Therefore it seems likely that nobody
particularly wants to have libsndfile without support for these
formats.
[1] http://git.openembedded.org/openembedded-core/commit/?id=34a14ce3ea78be299175e1a803f92519aa02355b
Signed-off-by: Tanu Kaskinen <tanuk@iki.fi>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/libsndfile')
-rw-r--r-- | meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb index 3b11568c17..a5ac84e301 100644 --- a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb +++ b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb @@ -1,7 +1,7 @@ SUMMARY = "Audio format Conversion library" HOMEPAGE = "http://www.mega-nerd.com/libsndfile" AUTHOR = "Erik de Castro Lopo" -DEPENDS = "sqlite3" +DEPENDS = "flac libogg libvorbis sqlite3" SECTION = "libs/multimedia" LICENSE = "LGPLv2.1" @@ -17,8 +17,6 @@ S = "${WORKDIR}/libsndfile-${PV}" PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)}" PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" -EXTRA_OECONF = "--disable-external-libs" - inherit autotools lib_package pkgconfig do_configure_prepend_arm() { |