Thu Aug 17 00:06:00 2017 UTC ()
Revert accidently committed enabling WARMSTART.


(ginsbach)
diff -r1.13 -r1.14 src/usr.sbin/rpcbind/Makefile

cvs diff -r1.13 -r1.14 src/usr.sbin/rpcbind/Makefile (expand / switch to unified diff)

--- src/usr.sbin/rpcbind/Makefile 2017/08/16 23:38:16 1.13
+++ src/usr.sbin/rpcbind/Makefile 2017/08/17 00:06:00 1.14
@@ -1,31 +1,30 @@ @@ -1,31 +1,30 @@
1# $NetBSD: Makefile,v 1.13 2017/08/16 23:38:16 ginsbach Exp $ 1# $NetBSD: Makefile,v 1.14 2017/08/17 00:06:00 ginsbach Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4 4
5USE_FORT?= yes # network client 5USE_FORT?= yes # network client
6 6
7PROG= rpcbind 7PROG= rpcbind
8MAN= rpcbind.8 8MAN= rpcbind.8
9SRCS= check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \ 9SRCS= check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \
10 rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c  10 rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c
11 11
12LIBCDIR= ${NETBSDSRCDIR}/lib/libc 12LIBCDIR= ${NETBSDSRCDIR}/lib/libc
13LIBCRPCDIR= ${LIBCDIR}/rpc 13LIBCRPCDIR= ${LIBCDIR}/rpc
14 14
15CPPFLAGS+= -I${LIBCRPCDIR} -DPORTMAP -DLIBWRAP 15CPPFLAGS+= -I${LIBCRPCDIR} -DPORTMAP -DLIBWRAP
16 16
17.if (${USE_INET6} != "no") 17.if (${USE_INET6} != "no")
18CPPFLAGS+= -DINET6 18CPPFLAGS+= -DINET6
19.endif 19.endif
20 20
21# Uncomment these to get any useful output from 'rpcbind -d' 21# Uncomment these to get any useful output from 'rpcbind -d'
22# CPPFLAGS+= -DRPCBIND_DEBUG 22# CPPFLAGS+= -DRPCBIND_DEBUG
23# CPPFLAGS+= -DSVC_RUN_DEBUG 23# CPPFLAGS+= -DSVC_RUN_DEBUG
24CPPFLAGS+= -DWARMSTART 
25 24
26LDADD+= -lwrap -lutil 25LDADD+= -lwrap -lutil
27DPADD+= ${LIBWRAP} ${LIBUTIL} 26DPADD+= ${LIBWRAP} ${LIBUTIL}
28 27
29.PATH: ${LIBCRPCDIR} 28.PATH: ${LIBCRPCDIR}
30 29
31.include <bsd.prog.mk> 30.include <bsd.prog.mk>