diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2015-12-22 11:49:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-28 09:25:17 +0000 |
commit | 7204a0f18ec46f6dec4246a46cee64293821474d (patch) | |
tree | 3088e5c510e713ad77a6f5c25621d5257a72d5cc /meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb | |
parent | 35bd2544eced75a916c9a8fb4ebc9b5c3607776b (diff) | |
download | poky-7204a0f18ec46f6dec4246a46cee64293821474d.tar.gz |
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
(From OE-Core rev: 7c7d436e660a8869179c4e5579aa2a992d636c22)
Signed-off-by: Tanu Kaskinen <tanuk@iki.fi>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/libsndfile/libsndfile1_1.0.26.bb')
-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 @@ | |||
1 | SUMMARY = "Audio format Conversion library" | 1 | SUMMARY = "Audio format Conversion library" |
2 | HOMEPAGE = "http://www.mega-nerd.com/libsndfile" | 2 | HOMEPAGE = "http://www.mega-nerd.com/libsndfile" |
3 | AUTHOR = "Erik de Castro Lopo" | 3 | AUTHOR = "Erik de Castro Lopo" |
4 | DEPENDS = "sqlite3" | 4 | DEPENDS = "flac libogg libvorbis sqlite3" |
5 | SECTION = "libs/multimedia" | 5 | SECTION = "libs/multimedia" |
6 | LICENSE = "LGPLv2.1" | 6 | LICENSE = "LGPLv2.1" |
7 | 7 | ||
@@ -17,8 +17,6 @@ S = "${WORKDIR}/libsndfile-${PV}" | |||
17 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)}" | 17 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'alsa', 'alsa', '', d)}" |
18 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | 18 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" |
19 | 19 | ||
20 | EXTRA_OECONF = "--disable-external-libs" | ||
21 | |||
22 | inherit autotools lib_package pkgconfig | 20 | inherit autotools lib_package pkgconfig |
23 | 21 | ||
24 | do_configure_prepend_arm() { | 22 | do_configure_prepend_arm() { |