diff options
author | Zhai Edwin <edwin.zhai@intel.com> | 2010-12-31 09:18:30 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-06 10:06:25 +0000 |
commit | fbd6f9f45fe8ee3f59a82cd5c66417a5afbfdb12 (patch) | |
tree | 2e9186c56a1075653a40b9e54d72d8efa2f3c863 /meta | |
parent | c19c5b49be39f5e1c8d253710f35fe90744cce84 (diff) | |
download | poky-fbd6f9f45fe8ee3f59a82cd5c66417a5afbfdb12.tar.gz |
libcanberra: Upgrade to 0.26
Remove nofallbackfix.patch it as already in upstream. Remove
autoconf_version.patch as already have new version of autoconf and no inbuild
libltdl now.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/libcanberra/autoconf_version.patch | 38 | ||||
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/libcanberra/nofallbackfix.patch | 16 | ||||
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/libcanberra_0.26.bb (renamed from meta/recipes-multimedia/pulseaudio/libcanberra_0.10.bb) | 10 |
3 files changed, 4 insertions, 60 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/libcanberra/autoconf_version.patch b/meta/recipes-multimedia/pulseaudio/libcanberra/autoconf_version.patch deleted file mode 100644 index 73a2ea6e49..0000000000 --- a/meta/recipes-multimedia/pulseaudio/libcanberra/autoconf_version.patch +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | Allow a slightly older autoconf and disable the inbuild libltdl | ||
2 | |||
3 | RP - 16/4/09 | ||
4 | |||
5 | Index: libcanberra-0.10/Makefile.am | ||
6 | =================================================================== | ||
7 | --- libcanberra-0.10.orig/Makefile.am 2009-04-16 14:38:53.000000000 +0100 | ||
8 | +++ libcanberra-0.10/Makefile.am 2009-04-16 14:39:04.000000000 +0100 | ||
9 | @@ -19,7 +19,7 @@ | ||
10 | dist_doc_DATA = README | ||
11 | |||
12 | EXTRA_DIST = bootstrap.sh autogen.sh LGPL libcanberra.schemas | ||
13 | -SUBDIRS = src gtkdoc libltdl doc | ||
14 | +SUBDIRS = src gtkdoc doc | ||
15 | |||
16 | MAINTAINERCLEANFILES = README | ||
17 | noinst_DATA = README | ||
18 | Index: libcanberra-0.10/configure.ac | ||
19 | =================================================================== | ||
20 | --- libcanberra-0.10.orig/configure.ac 2009-04-16 14:32:33.000000000 +0100 | ||
21 | +++ libcanberra-0.10/configure.ac 2009-04-16 14:37:50.000000000 +0100 | ||
22 | @@ -19,7 +19,7 @@ | ||
23 | # License along with libcanberra. If not, see | ||
24 | # <http://www.gnu.org/licenses/>. | ||
25 | |||
26 | -AC_PREREQ(2.62) | ||
27 | +AC_PREREQ(2.61) | ||
28 | |||
29 | AC_INIT([libcanberra], 0.10, [mzyvopnaoreen (at) 0pointer (dot) de]) | ||
30 | AC_CONFIG_SRCDIR([src/common.c]) | ||
31 | @@ -70,7 +70,6 @@ | ||
32 | AC_PROG_LIBTOOL | ||
33 | AC_SUBST(LTDLINCL) | ||
34 | AC_SUBST(LIBLTDL) | ||
35 | -AC_CONFIG_SUBDIRS(libltdl) | ||
36 | |||
37 | #### Determine build environment #### | ||
38 | |||
diff --git a/meta/recipes-multimedia/pulseaudio/libcanberra/nofallbackfix.patch b/meta/recipes-multimedia/pulseaudio/libcanberra/nofallbackfix.patch deleted file mode 100644 index 89a4fbf9f1..0000000000 --- a/meta/recipes-multimedia/pulseaudio/libcanberra/nofallbackfix.patch +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | Index: libcanberra-0.10/src/sound-theme-spec.c | ||
2 | =================================================================== | ||
3 | --- libcanberra-0.10.orig/src/sound-theme-spec.c 2009-05-22 17:08:23.000000000 +0100 | ||
4 | +++ libcanberra-0.10/src/sound-theme-spec.c 2009-05-22 17:12:50.000000000 +0100 | ||
5 | @@ -398,9 +398,9 @@ | ||
6 | if ((ret = load_theme_dir(t, name)) < 0) | ||
7 | goto fail; | ||
8 | |||
9 | + /* The fallback theme may intentionally not exist so ignore failure */ | ||
10 | if (!t->loaded_fallback_theme) | ||
11 | - if ((ret = load_theme_dir(t, FALLBACK_THEME)) < 0) | ||
12 | - goto fail; | ||
13 | + load_theme_dir(t, FALLBACK_THEME); | ||
14 | |||
15 | if (*_t) | ||
16 | ca_theme_data_free(*_t); | ||
diff --git a/meta/recipes-multimedia/pulseaudio/libcanberra_0.10.bb b/meta/recipes-multimedia/pulseaudio/libcanberra_0.26.bb index a94be2076c..7f91bdc978 100644 --- a/meta/recipes-multimedia/pulseaudio/libcanberra_0.10.bb +++ b/meta/recipes-multimedia/pulseaudio/libcanberra_0.26.bb | |||
@@ -5,16 +5,14 @@ LIC_FILES_CHKSUM = "file://LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \ | |||
5 | file://src/canberra.h;endline=24;md5=8dd99ba690687f5816f711d9313c8967" | 5 | file://src/canberra.h;endline=24;md5=8dd99ba690687f5816f711d9313c8967" |
6 | 6 | ||
7 | DEPENDS = "gtk+ pulseaudio alsa-lib libtool" | 7 | DEPENDS = "gtk+ pulseaudio alsa-lib libtool" |
8 | PR = "r3" | 8 | PR = "r0" |
9 | 9 | ||
10 | inherit gconf autotools | 10 | inherit gconf autotools |
11 | 11 | ||
12 | SRC_URI = "http://0pointer.de/lennart/projects/libcanberra/libcanberra-${PV}.tar.gz \ | 12 | SRC_URI = "http://0pointer.de/lennart/projects/libcanberra/libcanberra-${PV}.tar.gz" |
13 | file://nofallbackfix.patch;patch=1 \ | ||
14 | file://autoconf_version.patch;patch=1" | ||
15 | 13 | ||
16 | SRC_URI[md5sum] = "2623370bfcecaeecaeb85e5ec445f340" | 14 | SRC_URI[md5sum] = "ee2c66ada7c851a4e7b6eb1682285a24" |
17 | SRC_URI[sha256sum] = "b0e3cb59e605412a52352cf9cf36344b165463d4e65916c95deb73fc51838272" | 15 | SRC_URI[sha256sum] = "4b5d8d2c2835133620adbc53745dd107b6e58b9a2963059e8f457143fee00982" |
18 | 16 | ||
19 | EXTRA_OECONF = " --disable-oss --disable-ltdl-install" | 17 | EXTRA_OECONF = " --disable-oss --disable-ltdl-install" |
20 | 18 | ||