fc7bdc8
diff --git a/doc/bindresvport.blacklist b/doc/bindresvport.blacklist
fc7bdc8
index 8904277..a7ed193 100644
fc7bdc8
--- a/doc/bindresvport.blacklist
fc7bdc8
+++ b/doc/bindresvport.blacklist
fc7bdc8
@@ -8,6 +8,7 @@
fc7bdc8
 631     # cups
fc7bdc8
 636     # ldaps
fc7bdc8
 664     # Secure ASF, used by IPMI on some cards
fc7bdc8
+774     # rpasswd
fc7bdc8
 921     # lwresd
fc7bdc8
 993     # imaps
fc7bdc8
 995     # pops
fc7bdc8
diff --git a/src/rpc_com.h b/src/rpc_com.h
fc7bdc8
index 10bec79..76badef 100644
fc7bdc8
--- a/src/rpc_com.h
fc7bdc8
+++ b/src/rpc_com.h
fc7bdc8
@@ -61,8 +61,7 @@ void __xprt_unregister_unlocked(SVCXPRT *);
fc7bdc8
 void __xprt_set_raddr(SVCXPRT *, const struct sockaddr_storage *);
fc7bdc8
 
fc7bdc8
 
fc7bdc8
-SVCXPRT **__svc_xports;
fc7bdc8
-int __svc_maxrec;
fc7bdc8
+extern int __svc_maxrec;
fc7bdc8
 
fc7bdc8
 #ifdef __cplusplus
fc7bdc8
 }
fc7bdc8
diff --git a/src/rpc_soc.c b/src/rpc_soc.c
fc7bdc8
index ac7d312..fde121d 100644
fc7bdc8
--- a/src/rpc_soc.c
fc7bdc8
+++ b/src/rpc_soc.c
fc7bdc8
@@ -613,6 +613,13 @@ authdes_pk_create(servername, pkey, window, syncaddr, ckey)
fc7bdc8
 	des_block *ckey;		/* optional conversation key to use */
fc7bdc8
 { return (NULL); }
fc7bdc8
 
fc7bdc8
+AUTH *
fc7bdc8
+authdes_seccreate(const char *servername, const u_int win,
fc7bdc8
+	const char *timehost, const des_block *ckey)
fc7bdc8
+{
fc7bdc8
+	return (NULL);
fc7bdc8
+}
fc7bdc8
+
fc7bdc8
 #endif
fc7bdc8
 
fc7bdc8
 
fc7bdc8
diff --git a/src/svc.c b/src/svc.c
fc7bdc8
index b59467b..6db164b 100644
fc7bdc8
--- a/src/svc.c
fc7bdc8
+++ b/src/svc.c
fc7bdc8
@@ -57,6 +57,9 @@
fc7bdc8
 
fc7bdc8
 #define max(a, b) (a > b ? a : b)
fc7bdc8
 
fc7bdc8
+static SVCXPRT **__svc_xports;
fc7bdc8
+int __svc_maxrec;
fc7bdc8
+
fc7bdc8
 /*
fc7bdc8
  * The services list
fc7bdc8
  * Each entry represents a set of procedures (an rpc program).
fc7bdc8
diff --git a/src/xdr_float.c b/src/xdr_float.c
fc7bdc8
index 26bc865..349d48f 100644
fc7bdc8
--- a/src/xdr_float.c
fc7bdc8
+++ b/src/xdr_float.c
fc7bdc8
@@ -83,7 +83,7 @@ static struct sgl_limits {
fc7bdc8
 };
fc7bdc8
 #else
fc7bdc8
 
fc7bdc8
-#include <bits/endian.h>
fc7bdc8
+#include <endian.h>
fc7bdc8
 #define IEEEFP
fc7bdc8
 
fc7bdc8
 #endif /* vax */