diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-09 18:26:22 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-09 18:26:22 +0100 |
commit | 49b63d5125cc7615caf773a6634a04e425b81af2 (patch) | |
tree | 67ef84fe43fe555c87d29dd49613865211f8f0af | |
parent | 1e31fcc92ce4502860f6f6fd8be9eb501c5ddc53 (diff) |
libtirpc: fix musl compile
-rw-r--r-- | package/libtirpc/patches/patch-src_clnt_bcast_c | 11 | ||||
-rw-r--r-- | package/libtirpc/patches/patch-src_clnt_fd_locks_h | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/package/libtirpc/patches/patch-src_clnt_bcast_c b/package/libtirpc/patches/patch-src_clnt_bcast_c new file mode 100644 index 000000000..86f56c7f2 --- /dev/null +++ b/package/libtirpc/patches/patch-src_clnt_bcast_c @@ -0,0 +1,11 @@ +--- libtirpc-1.3.4.orig/src/clnt_bcast.c 2023-10-07 09:54:42.000000000 +0200 ++++ libtirpc-1.3.4/src/clnt_bcast.c 2024-02-08 16:26:57.298094444 +0100 +@@ -40,7 +40,7 @@ + */ + #include <sys/socket.h> + #include <sys/types.h> +-#include <sys/queue.h> ++#include "queue.h" + + #include <net/if.h> + #include <netinet/in.h> diff --git a/package/libtirpc/patches/patch-src_clnt_fd_locks_h b/package/libtirpc/patches/patch-src_clnt_fd_locks_h new file mode 100644 index 000000000..6927fca68 --- /dev/null +++ b/package/libtirpc/patches/patch-src_clnt_fd_locks_h @@ -0,0 +1,11 @@ +--- libtirpc-1.3.4.orig/src/clnt_fd_locks.h 2023-10-07 09:54:42.000000000 +0200 ++++ libtirpc-1.3.4/src/clnt_fd_locks.h 2024-02-08 16:25:34.795598116 +0100 +@@ -30,7 +30,7 @@ + #ifndef _CLNT_FD_LOCKS_H + #define _CLNT_FD_LOCKS_H + +-#include <sys/queue.h> ++#include "queue.h" + #include <errno.h> + #include <reentrant.h> + #include <rpc/xdr.h> |