diff options
author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2015-07-13 11:17:08 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-13 12:54:42 +0200 |
commit | e5e31fe92dd191480341d07a01f79f88abab9c2a (patch) | |
tree | a85a379147756004b60bf3b0caf2845ae99373cc /package/nfs-utils/0004-fix-build-with-uClibc.patch | |
parent | 5284dcf7de769e8612da3d4f1c4d12b4582870d5 (diff) | |
download | buildroot-e5e31fe92dd191480341d07a01f79f88abab9c2a.tar.gz buildroot-e5e31fe92dd191480341d07a01f79f88abab9c2a.zip |
nfs-utils: Bump version
Refresh the patches (Thanks to Thomas Petazzoni's work)
Patches removed:
0001-build-avoid-AM_CONDITIONAL-in-conditional-execution.patch
0004-fix-build-with-uClibc.patch
0004-fix-build-with-uClibc.patch
0005-Allow-usage-of-getrpcbynumber-when-getrpcbynumber_r-.patch
0007-sockaddr-h-needs-stddef-h-for-NULL.patch
0008-tirpc-with-pkgconfig.patch
Patches modified:
0002-Patch-taken-from-Gentoo.patch
0003-Switch-legacy-index-in-favour-of-strchr.patch
0006-Let-the-configure-script-find-getrpcbynumber-in-libt.patch
Patch addedd:
0004-statd-Fix-test-for-foreground-mode.patch
Also, change source of the package to git repository (and remove the hash,
sourceforce is clearly not a platform which can be trusted nowadays)
Rework the startup script to accomodate new rpc.statd
The startup scripts now uses rcp.statd -F for a startup in foreground,
also we avoid starting it twice, it makes rcp.statd crash the whole
script.
[Thomas: add patch to fix rpc.statd foreground/daemon mode backported
from upstream, and fix the S60nfs init script to not use the -F option
of rpc.statd.]
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/nfs-utils/0004-fix-build-with-uClibc.patch')
-rw-r--r-- | package/nfs-utils/0004-fix-build-with-uClibc.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/nfs-utils/0004-fix-build-with-uClibc.patch b/package/nfs-utils/0004-fix-build-with-uClibc.patch deleted file mode 100644 index 23da28f20c..0000000000 --- a/package/nfs-utils/0004-fix-build-with-uClibc.patch +++ /dev/null @@ -1,31 +0,0 @@ -From ff82d4c89d6ca771dea06bbaa06ddf3fed760402 Mon Sep 17 00:00:00 2001 -From: Peter Korsgaard <jacmet@sunsite.dk> -Date: Sat, 10 Nov 2012 18:58:48 +0100 -Subject: [PATCH] fix build with uClibc - -uClibc doesn't have/need libio.h, so don't include it from sockaddr.h - -Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> ---- - support/include/sockaddr.h | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/support/include/sockaddr.h b/support/include/sockaddr.h -index 9af2543..5eef2ec 100644 ---- a/support/include/sockaddr.h -+++ b/support/include/sockaddr.h -@@ -20,7 +20,10 @@ - #ifndef NFS_UTILS_SOCKADDR_H - #define NFS_UTILS_SOCKADDR_H - --#include <libio.h> -+/* uClibc doesn't have/need libio.h */ -+#ifndef __UCLIBC__ -+#include <libio.h> -+#endif - #include <stdbool.h> - #include <sys/socket.h> - #include <netinet/in.h> --- -1.7.9.5 - |