alsa-utils: Do not make strl* functions as static.
authorKhem Raj <raj.khem@gmail.com>
Mon, 26 Jan 2009 07:13:20 +0000 (23:13 -0800)
committerKhem Raj <raj.khem@gmail.com>
Mon, 26 Jan 2009 07:13:20 +0000 (23:13 -0800)
* 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
packages/alsa/files/alsa-utils-strl-funcs-non-static.patch [new file with mode: 0644]

index 8f43982..4de9180 100644 (file)
@@ -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 (file)
index 0000000..db6bacf
--- /dev/null
@@ -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;