[oe] fix for strl functions in alsautils

Khem Raj raj.khem at gmail.com
Mon Jan 26 07:49:53 UTC 2009


        * These funtions are provided by C libraries like uclibc
        Declaring them static here causes static not static declaration
        issues reported by gcc.
---
 packages/alsa/alsa-utils_1.0.18.bb                 |    2 +
 .../files/alsa-utils-strl-funcs-non-static.patch   |   22
++++++++++++++++++++
 2 files changed, 24 insertions(+), 0 deletions(-)
 create mode 100644
packages/alsa/files/alsa-utils-strl-funcs-non-static.patch

diff --git a/packages/alsa/alsa-utils_1.0.18.bb
b/packages/alsa/alsa-utils_1.0.18.bb
index 8f43982..4de9180 100644
--- a/packages/alsa/alsa-utils_1.0.18.bb
+++ b/packages/alsa/alsa-utils_1.0.18.bb
@@ -3,10 +3,12 @@ HOMEPAGE = "http://www.alsa-project.org"
 SECTION = "console/utils"
 LICENSE = "GPL"
 DEPENDS = "alsa-lib ncurses"
+PR = "r1"

 SRC_URI =
"ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \
            file://alsa-utils-automake.patch;patch=1 \
           file://alsa-utils-remove-xmlto.patch;patch=1 \
+          file://alsa-utils-strl-funcs-non-static.patch;patch=1 \
          "

 inherit autotools
diff --git a/packages/alsa/files/alsa-utils-strl-funcs-non-static.patch
b/packages/alsa/files/alsa-utils-strl-funcs-non-static.patch
new file mode 100644
index 0000000..db6bacf
--- /dev/null
+++ b/packages/alsa/files/alsa-utils-strl-funcs-non-static.patch
@@ -0,0 +1,22 @@
+Index: alsa-utils-1.0.18/alsactl/init_sysdeps.c
+===================================================================
+--- alsa-utils-1.0.18.orig/alsactl/init_sysdeps.c      2009-01-25
21:12:40.000000000 -0800
++++ alsa-utils-1.0.18/alsactl/init_sysdeps.c   2009-01-25
21:12:56.000000000 -0800
+@@ -18,7 +18,7 @@
+  */
+
+ #ifdef __GLIBC__
+-static size_t strlcpy(char *dst, const char *src, size_t size)
++size_t strlcpy(char *dst, const char *src, size_t size)
+ {
+       size_t bytes = 0;
+       char *q = dst;
+@@ -37,7 +37,7 @@
+       return bytes;
+ }
+
+-static size_t strlcat(char *dst, const char *src, size_t size)
++size_t strlcat(char *dst, const char *src, size_t size)
+ {
+       size_t bytes = 0;
+       char *q = dst;
--
1.6.0.4





More information about the Openembedded-devel mailing list