From c77e6fa3af7bf9e587f2bd1c741fc54969cc5f24 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 1 May 2020 16:33:50 -0700 Subject: [PATCH] libtirpc: update to 1.2.6 Add HOST_BUILD_PARALLEL for faster compilation. Remove upstreamed patch. Signed-off-by: Rosen Penev --- libs/libtirpc/Makefile | 7 +++-- ...r_float-do-not-include-bits-endian.h.patch | 31 ------------------- 2 files changed, 4 insertions(+), 34 deletions(-) delete mode 100644 libs/libtirpc/patches/010-xdr_float-do-not-include-bits-endian.h.patch diff --git a/libs/libtirpc/Makefile b/libs/libtirpc/Makefile index ed67b11219..33b565a86e 100644 --- a/libs/libtirpc/Makefile +++ b/libs/libtirpc/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libtirpc -PKG_VERSION:=1.2.5 -PKG_RELEASE:=2 +PKG_VERSION:=1.2.6 +PKG_RELEASE:=1 PKG_SOURCE_URL:=@SF/libtirpc PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 -PKG_HASH:=f3b6350c7e9c3cd9c58fc7a5e5f8e6be469cc571bb5eb31eb9790b3e675186ca +PKG_HASH:=4278e9a5181d5af9cd7885322fdecebc444f9a3da87c526e7d47f7a12a37d1cc PKG_MAINTAINER:=Andy Walsh PKG_LICENSE:=BSD-3-Clause @@ -14,6 +14,7 @@ PKG_LICENSE_FILES:=COPYING PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 +HOST_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/host-build.mk diff --git a/libs/libtirpc/patches/010-xdr_float-do-not-include-bits-endian.h.patch b/libs/libtirpc/patches/010-xdr_float-do-not-include-bits-endian.h.patch deleted file mode 100644 index 5d365ec379..0000000000 --- a/libs/libtirpc/patches/010-xdr_float-do-not-include-bits-endian.h.patch +++ /dev/null @@ -1,31 +0,0 @@ -From d04f4d6f0e682f16b0ce96839ab4eadade591eb1 Mon Sep 17 00:00:00 2001 -From: Rosen Penev -Date: Tue, 21 Jan 2020 11:51:16 -0500 -Subject: [PATCH] xdr_float: do not include bits/endian.h - -bits/endian.h is an internal header. endian.h should be included. - -Fixes compilation with recent musl. - -Signed-off-by: Rosen Penev -Signed-off-by: Steve Dickson ---- - src/xdr_float.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/xdr_float.c b/src/xdr_float.c -index 26bc865..349d48f 100644 ---- a/src/xdr_float.c -+++ b/src/xdr_float.c -@@ -83,7 +83,7 @@ static struct sgl_limits { - }; - #else - --#include -+#include - #define IEEEFP - - #endif /* vax */ --- -2.20.1 -