summaryrefslogtreecommitdiff
path: root/package/rpcbind
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-08-05 02:29:58 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-08-05 02:30:07 +0200
commit12c51c85f054659154e201d0d631a98dc50006fd (patch)
treefbd304d8094be7738025aa4043048470f25a2c93 /package/rpcbind
parent98cecf07cca851eba5b65a19c6bd7248f6974d6d (diff)
rpcbind: fix musl compile, use local queue.h
Diffstat (limited to 'package/rpcbind')
-rw-r--r--package/rpcbind/Makefile2
-rw-r--r--package/rpcbind/patches/patch-src_util_c11
2 files changed, 12 insertions, 1 deletions
diff --git a/package/rpcbind/Makefile b/package/rpcbind/Makefile
index 3a91521f0..ec4604c58 100644
--- a/package/rpcbind/Makefile
+++ b/package/rpcbind/Makefile
@@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= rpcbind
PKG_VERSION:= 0.2.4
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_HASH:= 074a9a530dc7c11e0d905aa59bcb0847c009313f02e98d3d798aa9568f414c66
PKG_DESCR:= converts rpc program numbers into universal addresses
PKG_SECTION:= net/misc
diff --git a/package/rpcbind/patches/patch-src_util_c b/package/rpcbind/patches/patch-src_util_c
new file mode 100644
index 000000000..15f9baec4
--- /dev/null
+++ b/package/rpcbind/patches/patch-src_util_c
@@ -0,0 +1,11 @@
+--- rpcbind-0.2.4.orig/src/util.c 2016-11-28 21:47:28.000000000 +0100
++++ rpcbind-0.2.4/src/util.c 2017-08-05 02:28:09.880017183 +0200
+@@ -41,7 +41,7 @@
+
+ #include <sys/types.h>
+ #include <sys/socket.h>
+-#include <sys/queue.h>
++#include "queue.h"
+ #include <net/if.h>
+ #include <netinet/in.h>
+ #include <ifaddrs.h>