summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch')
-rw-r--r--meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch b/meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch
index 75a6eb8a3c..795e48ab2e 100644
--- a/meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch
+++ b/meta/recipes-multimedia/alsa/alsa-lib/Check-if-wordexp-function-is-supported.patch
@@ -1,4 +1,4 @@
1From e33357b59a10d44e9bec5d24100ce23ca300cc79 Mon Sep 17 00:00:00 2001 1From 3408f8e78776b12f131e433749721602f87e0a70 Mon Sep 17 00:00:00 2001
2From: "Hong H. Pham" <hong.pham@windriver.com> 2From: "Hong H. Pham" <hong.pham@windriver.com>
3Date: Fri, 29 Aug 2014 17:13:55 +0300 3Date: Fri, 29 Aug 2014 17:13:55 +0300
4Subject: [PATCH] Check if wordexp function is supported 4Subject: [PATCH] Check if wordexp function is supported
@@ -18,15 +18,15 @@ Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
18 2 files changed, 5 insertions(+), 2 deletions(-) 18 2 files changed, 5 insertions(+), 2 deletions(-)
19 19
20diff --git a/configure.ac b/configure.ac 20diff --git a/configure.ac b/configure.ac
21index b8353a0..773b72f 100644 21index 9490d39..b08a90a 100644
22--- a/configure.ac 22--- a/configure.ac
23+++ b/configure.ac 23+++ b/configure.ac
24@@ -311,7 +311,10 @@ fi 24@@ -295,7 +295,10 @@ fi
25 AC_SUBST(ALSA_DEPLIBS) 25 AC_SUBST(ALSA_DEPLIBS)
26 26
27 dnl Check for headers 27 dnl Check for headers
28-AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h]) 28-AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h sys/shm.h])
29+AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h], 29+AC_CHECK_HEADERS([wordexp.h endian.h sys/endian.h sys/shm.h],
30+ dnl Make sure wordexp is supported by the C library 30+ dnl Make sure wordexp is supported by the C library
31+ AC_CHECK_FUNCS([wordexp]) 31+ AC_CHECK_FUNCS([wordexp])
32+) 32+)
@@ -34,7 +34,7 @@ index b8353a0..773b72f 100644
34 dnl Check for resmgr support... 34 dnl Check for resmgr support...
35 AC_MSG_CHECKING(for resmgr support) 35 AC_MSG_CHECKING(for resmgr support)
36diff --git a/src/userfile.c b/src/userfile.c 36diff --git a/src/userfile.c b/src/userfile.c
37index 3a73836..b8ce809 100644 37index 72779da..e9d13e6 100644
38--- a/src/userfile.c 38--- a/src/userfile.c
39+++ b/src/userfile.c 39+++ b/src/userfile.c
40@@ -32,7 +32,7 @@ 40@@ -32,7 +32,7 @@
@@ -47,5 +47,5 @@ index 3a73836..b8ce809 100644
47 #include <assert.h> 47 #include <assert.h>
48 int snd_user_file(const char *file, char **result) 48 int snd_user_file(const char *file, char **result)
49-- 49--
501.9.1 502.6.4
51 51