View | Details | Raw Unified | Return to bug 235450
Collapse All | Expand All

(-)Makefile (-7 / +1 lines)
Lines 16-25 Link Here
16
USES=		perl5
16
USES=		perl5
17
USE_PERL5=	configure
17
USE_PERL5=	configure
18
18
19
.include <bsd.port.pre.mk>
19
.include <bsd.port.mk>
20
21
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200072
22
BROKEN=		Fails to build.
23
.endif
24
25
.include <bsd.port.post.mk>
(-)files/patch-Quota.xs (+11 lines)
Line 0 Link Here
1
--- Quota.xs.orig	2013-08-15 04:56:35 UTC
2
+++ Quota.xs
3
@@ -309,7 +309,7 @@ struct rquota *rqp;
4
 #endif /* MY_XDR */
5
 
6
 #ifdef USE_EXT_RQUOTA
7
-bool_t
8
+int
9
 xdr_ext_getquota_args(xdrs, objp)
10
 XDR *xdrs;
11
 ext_getquota_args *objp;
(-)files/patch-hints_bsd.h (+14 lines)
Line 0 Link Here
1
--- hints/bsd.h.orig	2013-08-15 04:56:14 UTC
2
+++ hints/bsd.h
3
@@ -71,8 +71,9 @@
4
 
5
 #define NO_MNTENT
6
 
7
-#define GQA_TYPE_USR RQUOTA_USRQUOTA
8
-#define GQA_TYPE_GRP RQUOTA_GRPQUOTA
9
+/* from https://opensource.apple.com/source/NFS/NFS-63/rpc.rquotad/rquota.h.auto.html */
10
+#define GQA_TYPE_USR 0x00
11
+#define GQA_TYPE_GRP 0x01
12
 #define GQR_STATUS status
13
 #define GQR_RQUOTA getquota_rslt_u.gqr_rquota
14
 

Return to bug 235450