lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit ccadda422b1bc387b396118c6148fdea75b8a8ac
parent 52a5e8c4ec7951d7179028c5aebf8bc521c20279
Author: Steven Barth <steven@midlink.org>
Date:   Tue, 16 Jun 2015 10:30:20 +0200

procps: fix for new musl libc

Signed-off-by: Steven Barth <steven@midlink.org>

Diffstat:
Autils/procps/patches/040-musl-compatibility.patch | 29+++++++++++++++++++++++++++++
1 file changed, 29 insertions(+), 0 deletions(-)

diff --git a/utils/procps/patches/040-musl-compatibility.patch b/utils/procps/patches/040-musl-compatibility.patch @@ -0,0 +1,29 @@ +From 6f2fd55ef7621fd7ab7897aee2c2651b6faf9e6a Mon Sep 17 00:00:00 2001 +From: Paul Barker <paul@paulbarker.me.uk> +Date: Wed, 20 Aug 2014 11:56:11 +0200 +Subject: [PATCH] Fix musl build failure + +Include <limits.h> for PATH_MAX. + +Signed-off-by: Paul Barker <paul@paulbarker.me.uk> + +Upstream-status: Pending +--- + proc/readproc.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/proc/readproc.c b/proc/readproc.c +index 4fad11d..c5b1869 100644 +--- a/proc/readproc.c ++++ b/proc/readproc.c +@@ -26,6 +26,7 @@ + #include <sys/dir.h> + #include <sys/types.h> + #include <sys/stat.h> ++#include <limits.h> + + // sometimes it's easier to do this manually, w/o gcc helping + #ifdef PROF +-- +1.9.1 +