From d9bb2dc5f6fe4f7592d8fa7c07b77d14c31714da Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Thu, 13 Aug 2020 19:33:06 -0700 Subject: [PATCH] moreutils: fix compilation with uClibc-ng getloadavg is missing not just under cygwin. Signed-off-by: Rosen Penev --- utils/moreutils/Makefile | 2 +- utils/moreutils/patches/010-uclibc.patch | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 utils/moreutils/patches/010-uclibc.patch diff --git a/utils/moreutils/Makefile b/utils/moreutils/Makefile index 51e28235b..2f2326e75 100644 --- a/utils/moreutils/Makefile +++ b/utils/moreutils/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=moreutils PKG_VERSION:=0.63 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://git.kitenet.net/index.cgi/moreutils.git/snapshot diff --git a/utils/moreutils/patches/010-uclibc.patch b/utils/moreutils/patches/010-uclibc.patch new file mode 100644 index 000000000..8fff106d0 --- /dev/null +++ b/utils/moreutils/patches/010-uclibc.patch @@ -0,0 +1,11 @@ +--- a/parallel.c ++++ b/parallel.c +@@ -241,7 +241,7 @@ pid_t create_pipe_child(int *fd, int orig_fd) + return pipe_child(fds[0], orig_fd); + } + +-#if defined(__CYGWIN__) ++#if defined(__CYGWIN__) || defined(__UCLIBC__) + int getloadavg(double loadavg[], int nelem) { + int fd, n, elem; + char buf[128];