diff mbox

[075/131] busybox: Remove remains of 1.20.2

Message ID 64061a85d4d5c275920f375c377c4e613787bc33.1389702652.git.christian.braunersorensen@prevas.dk
State Accepted
Delegated to: Esben Haabendal
Headers show

Commit Message

christian.braunersorensen@prevas.dk Jan. 14, 2014, 12:34 p.m. UTC
From: Christian Sørensen <christian.braunersorensen@prevas.dk>

Signed-off-by: Christian Sørensen <christian.braunersorensen@prevas.dk>
---
 .../busybox-1.20.2-fix-resource-h-failure.patch    | 30 ----------------------
 1 file changed, 30 deletions(-)
 delete mode 100644 recipes/busybox/busybox-1.20.2/busybox-1.20.2-fix-resource-h-failure.patch
diff mbox

Patch

diff --git a/recipes/busybox/busybox-1.20.2/busybox-1.20.2-fix-resource-h-failure.patch b/recipes/busybox/busybox-1.20.2/busybox-1.20.2-fix-resource-h-failure.patch
deleted file mode 100644
index 7667640..0000000
--- a/recipes/busybox/busybox-1.20.2/busybox-1.20.2-fix-resource-h-failure.patch
+++ /dev/null
@@ -1,30 +0,0 @@ 
-On a system running glibc trunk busybox doesn't compile:
-
-loginutils/passwd.c: In function ‘passwd_main’:
-loginutils/passwd.c:104:16: error: storage size of ‘rlimit_fsize’ isn’t known
-loginutils/passwd.c:188:2: warning: implicit declaration of function ‘setrlimit’ [-Wimplicit-function-declaration]
-loginutils/passwd.c:188:12: error: ‘RLIMIT_FSIZE’ undeclared (first use in this function)
-loginutils/passwd.c:188:12: note: each undeclared identifier is reported only once for each function it appears in
-loginutils/passwd.c:104:16: warning: unused variable ‘rlimit_fsize’ [-Wunused-variable]
-...
-miscutils/time.c:23:16: error: field ‘ru’ has incomplete type
-
-Fix this by including sys/resource.h.
-
-Signed-off-by: Markus Trippelsdorf <markus at trippelsdorf.de>
----
- include/libbb.h |    1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/libbb.h b/include/libbb.h
-index f12800f..e7806c2 100644
---- a/include/libbb.h
-+++ b/include/libbb.h
-@@ -40,6 +40,7 @@
- #include <sys/poll.h>
- #include <sys/ioctl.h>
- #include <sys/mman.h>
-+#include <sys/resource.h>
- #include <sys/socket.h>
- #include <sys/stat.h>
- #include <sys/time.h>