diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2017-02-03 09:06:35 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 20:06:41 -0800 |
commit | 36f6e71ccbba456e706dd7723cb0e69990b6b552 (patch) | |
tree | 2c244b1a0b5cb4f9928b1768325f4db40fabca51 /meta/recipes-multimedia/pulseaudio/pulseaudio_10.0.bb | |
parent | 8b4474aa727976bb40ad3115ebe28d6ea81794c2 (diff) | |
download | poky-36f6e71ccbba456e706dd7723cb0e69990b6b552.tar.gz |
pulseaudio: 9.0 -> 10.0
Relase notes:
https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/10.0/
The checksum of the LICENSE file changed due to some clarifications.
There were no changes to the actual licensing terms.
The LICENSE variable was not accurate, so I made changes to it.
Specifically:
* there's no GPL code in PulseAudio so I dropped GPL from the list
* the LGPL code allows using later versions of the license rather than
limiting to just 2.1
* there are some MIT and BSD licensed bits
I added more files to LIC_FILES_CHKSUM to have better coverage of all
the differently licensed code.
Dropped json-c and gdbm from DEPENDS. The new release doesn't use json-c
any more. gdbm isn't used when --with-database=simple is passed to
configure, so it should have been removed from DEPENDS a long time ago.
The new release dropped the Xen module, so the --without-xen configure
option isn't needed any more.
Added a comment for why --without-fftw is used.
Disabled the adrian echo canceller, because it has an unusual license,
and disabling the code was simpler than adding a new license to OE-Core.
Dropped upstreamed patches.
(From OE-Core rev: 4ddaf28fd36294fd940f26d55973da20eeeeb0d8)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/pulseaudio/pulseaudio_10.0.bb')
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/pulseaudio_10.0.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio_10.0.bb b/meta/recipes-multimedia/pulseaudio/pulseaudio_10.0.bb new file mode 100644 index 0000000000..f3a85737fc --- /dev/null +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio_10.0.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | require pulseaudio.inc | ||
2 | |||
3 | SRC_URI = "http://freedesktop.org/software/pulseaudio/releases/${BP}.tar.xz \ | ||
4 | file://0001-padsp-Make-it-compile-on-musl.patch \ | ||
5 | file://0001-client-conf-Add-allow-autospawn-for-root.patch \ | ||
6 | file://volatiles.04_pulse \ | ||
7 | " | ||
8 | SRC_URI[md5sum] = "4950d2799bf55ab91f6b7f990b7f0971" | ||
9 | SRC_URI[sha256sum] = "a3186824de9f0d2095ded5d0d0db0405dc73133983c2fbb37291547e37462f57" | ||
10 | |||
11 | do_compile_prepend() { | ||
12 | mkdir -p ${S}/libltdl | ||
13 | cp ${STAGING_LIBDIR}/libltdl* ${S}/libltdl | ||
14 | } | ||