diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-05-01 16:33:50 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2020-05-02 15:12:14 -0700 |
commit | c77e6fa3af7bf9e587f2bd1c741fc54969cc5f24 (patch) | |
tree | b0205b8cff5198ae90cf8e7ff0cfb5fab80ae87a /libs/libtirpc/patches | |
parent | e7d5b5bc17284797e90f5e13f0974e229641a16b (diff) |
libtirpc: update to 1.2.6
Add HOST_BUILD_PARALLEL for faster compilation.
Remove upstreamed patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/libtirpc/patches')
-rw-r--r-- | libs/libtirpc/patches/010-xdr_float-do-not-include-bits-endian.h.patch | 31 |
1 files changed, 0 insertions, 31 deletions
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 5d365ec37..000000000 --- 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 <rosenp@gmail.com> -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 <rosenp@gmail.com> -Signed-off-by: Steve Dickson <steved@redhat.com> ---- - 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 <bits/endian.h> -+#include <endian.h> - #define IEEEFP - - #endif /* vax */ --- -2.20.1 - |