diff options
author | Ross Burton <ross.burton@intel.com> | 2019-07-09 11:50:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-10 09:56:22 +0100 |
commit | 49f3519181c2a69d49df1479dbdb61b783d4efe3 (patch) | |
tree | 552571488a3d5d4a2bd9586a609fa7f5b80da1fd /meta/recipes-multimedia/libsndfile | |
parent | 2a6094ca8c4aa5c00636df77669e5bca6ad52bcf (diff) | |
download | poky-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/libsndfile')
-rw-r--r-- | meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb | 3 |
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 @@ | |||
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 = "flac libogg libvorbis sqlite3" | 4 | DEPENDS = "flac libogg libvorbis" |
5 | SECTION = "libs/multimedia" | 5 | SECTION = "libs/multimedia" |
6 | LICENSE = "LGPLv2.1" | 6 | LICENSE = "LGPLv2.1" |
7 | 7 | ||
@@ -30,6 +30,7 @@ S = "${WORKDIR}/libsndfile-${PV}" | |||
30 | 30 | ||
31 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}" | 31 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}" |
32 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | 32 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" |
33 | PACKAGECONFIG[regtest] = "--enable-sqlite,--disable-sqlite,sqlite3" | ||
33 | 34 | ||
34 | inherit autotools lib_package pkgconfig | 35 | inherit autotools lib_package pkgconfig |
35 | 36 | ||