nfs-utils: Add patch to work with uclibc
authorRichard Purdie <richard@openedhand.com>
Mon, 28 May 2007 22:43:37 +0000 (22:43 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 28 May 2007 22:43:37 +0000 (22:43 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1796 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/nfs-utils/files/uclibc_bzero_fix.patch [new file with mode: 0644]
meta/packages/nfs-utils/nfs-utils_1.0.6.bb

diff --git a/meta/packages/nfs-utils/files/uclibc_bzero_fix.patch b/meta/packages/nfs-utils/files/uclibc_bzero_fix.patch
new file mode 100644 (file)
index 0000000..2006192
--- /dev/null
@@ -0,0 +1,17 @@
+---
+ support/nfs/svc_socket.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: nfs-utils-1.0.6/support/nfs/svc_socket.c
+===================================================================
+--- nfs-utils-1.0.6.orig/support/nfs/svc_socket.c      2007-05-27 16:14:09.000000000 +0100
++++ nfs-utils-1.0.6/support/nfs/svc_socket.c   2007-05-28 22:43:55.000000000 +0100
+@@ -63,7 +63,7 @@ svc_socket (u_long number, int type, int
+       }
+     }
+-  __bzero ((char *) &addr, sizeof (addr));
++  memset ((char *) &addr,0, sizeof (addr));
+   addr.sin_family = AF_INET;
+ #ifndef __UCLIBC__    /* neither getrpcbynumber() nor getrpcbynumber_r() is SuSv3 */
index 012679b..fbc2a96 100644 (file)
@@ -2,7 +2,7 @@ DESCRIPTION = "userspace utilities for kernel nfs"
 PRIORITY = "optional"
 SECTION = "console/network"
 LICENSE = "GPL"
-PR = "r10"
+PR = "r11"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/nfs/nfs-utils-${PV}.tar.gz \
        file://acinclude-lossage.patch;patch=1 \
@@ -10,6 +10,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/nfs/nfs-utils-${PV}.tar.gz \
        file://stat-include.patch;patch=1 \
        file://nfs-utils-1.0.6-uclibc.patch;patch=1 \
        file://kernel-2.6.18+.patch;patch=1 \
+       file://uclibc_bzero_fix.patch;patch=1 \
        file://nfsserver \
        file://forgotten-defines"