mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 12:49:34 +02:00
alsa-lib: 1.0.29 -> 1.1.0
Changelog: http://alsa-project.org/main/index.php/Changes_v1.0.29_v1.1.0 The most significant change is probably the addition of the "topology API", which is used to change the DSP topology from userspace. My understanding is that the API is (or will be) needed to support some new hardware, but I don't know any specifics about that. Rebased Check-if-wordexp-function-is-supported.patch. Dropped 0001-build-Do-not-try-to-detect-cross-compiler.patch, since it is included in the new release. (From OE-Core rev: 13a2786493bd91a54e3a5342da11c06a9b6c99b8) Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a8c25af91e
commit
180f17049e
@@ -1,4 +1,4 @@
|
||||
From e33357b59a10d44e9bec5d24100ce23ca300cc79 Mon Sep 17 00:00:00 2001
|
||||
From 3408f8e78776b12f131e433749721602f87e0a70 Mon Sep 17 00:00:00 2001
|
||||
From: "Hong H. Pham" <hong.pham@windriver.com>
|
||||
Date: Fri, 29 Aug 2014 17:13:55 +0300
|
||||
Subject: [PATCH] Check if wordexp function is supported
|
||||
@@ -18,15 +18,15 @@ Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
|
||||
2 files changed, 5 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index b8353a0..773b72f 100644
|
||||
index 9490d39..b08a90a 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -311,7 +311,10 @@ fi
|
||||
@@ -295,7 +295,10 @@ fi
|
||||
AC_SUBST(ALSA_DEPLIBS)
|
||||
|
||||
dnl Check for headers
|
||||
-AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h])
|
||||
+AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h],
|
||||
-AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h sys/shm.h])
|
||||
+AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h sys/shm.h],
|
||||
+ dnl Make sure wordexp is supported by the C library
|
||||
+ AC_CHECK_FUNCS([wordexp])
|
||||
+)
|
||||
@@ -34,7 +34,7 @@ index b8353a0..773b72f 100644
|
||||
dnl Check for resmgr support...
|
||||
AC_MSG_CHECKING(for resmgr support)
|
||||
diff --git a/src/userfile.c b/src/userfile.c
|
||||
index 3a73836..b8ce809 100644
|
||||
index 72779da..e9d13e6 100644
|
||||
--- a/src/userfile.c
|
||||
+++ b/src/userfile.c
|
||||
@@ -32,7 +32,7 @@
|
||||
@@ -47,5 +47,5 @@ index 3a73836..b8ce809 100644
|
||||
#include <assert.h>
|
||||
int snd_user_file(const char *file, char **result)
|
||||
--
|
||||
1.9.1
|
||||
2.6.4
|
||||
|
||||
|
||||
Reference in New Issue
Block a user