summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-07-09 11:50:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-10 09:56:22 +0100
commit49f3519181c2a69d49df1479dbdb61b783d4efe3 (patch)
tree552571488a3d5d4a2bd9586a609fa7f5b80da1fd /meta/recipes-multimedia
parent2a6094ca8c4aa5c00636df77669e5bca6ad52bcf (diff)
downloadpoky-49f3519181c2a69d49df1479dbdb61b783d4efe3.tar.gz
libsndfile1: disable use of sqlite3 by default
sqlite3 is only used by the regression testing tool, which is of limited use unless you're the developer of libsndfile. Add a PACKAGECONFIG for this, but disable by default. (From OE-Core rev: 5f01497dee9fcd5e5fc6bddb061b6cc55909fe65) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r--meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb
index 77393db847..7dfee4e96f 100644
--- a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb
+++ b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb
@@ -1,7 +1,7 @@
1SUMMARY = "Audio format Conversion library" 1SUMMARY = "Audio format Conversion library"
2HOMEPAGE = "http://www.mega-nerd.com/libsndfile" 2HOMEPAGE = "http://www.mega-nerd.com/libsndfile"
3AUTHOR = "Erik de Castro Lopo" 3AUTHOR = "Erik de Castro Lopo"
4DEPENDS = "flac libogg libvorbis sqlite3" 4DEPENDS = "flac libogg libvorbis"
5SECTION = "libs/multimedia" 5SECTION = "libs/multimedia"
6LICENSE = "LGPLv2.1" 6LICENSE = "LGPLv2.1"
7 7
@@ -30,6 +30,7 @@ S = "${WORKDIR}/libsndfile-${PV}"
30 30
31PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}" 31PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}"
32PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" 32PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib"
33PACKAGECONFIG[regtest] = "--enable-sqlite,--disable-sqlite,sqlite3"
33 34
34inherit autotools lib_package pkgconfig 35inherit autotools lib_package pkgconfig
35 36