Print this page
195 Need replacement for nfs/lockd+klm
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Jeremy Jones <jeremy@delphix.com>
Reviewed by: Jeff Biseda <jbiseda@delphix.com>
*** 20,29 ****
--- 20,31 ----
#
#
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
+ # Copyright (c) 2012 by Delphix. All rights reserved.
+ #
# uts/common/rpcsvc/Makefile
# This makefile installs system header files that go into
# /usr/include/rpcsvc.
#
# include global definitions
*** 32,51 ****
# Protocol descriptions. Alas, the NFS protocol cannot be expressed
# completely via rpcgen. The NLM description should go here some day.
# Also, the v3 headers have been hacked so that they no longer
# quite reflect what goes over the wire.
IDMAP_PROT_X= idmap_prot.x
! RPCGEN_SRC= autofs_prot.x sm_inter.x nsm_addr.x $(IDMAP_PROT_X)
DERIVED_HDRS= $(RPCGEN_SRC:%.x=%.h)
ALLHDRS= $(RPCGEN_SRC) $(DERIVED_HDRS)
ROOTDIRS= $(ROOT)/usr/include/rpcsvc
ROOTHDRS= $(ALLHDRS:%=$(ROOTDIRS)/%)
$(ROOTDIRS)/%: %
$(INS.file)
.KEEP_STATE:
--- 34,60 ----
# Protocol descriptions. Alas, the NFS protocol cannot be expressed
# completely via rpcgen. The NLM description should go here some day.
# Also, the v3 headers have been hacked so that they no longer
# quite reflect what goes over the wire.
IDMAP_PROT_X= idmap_prot.x
! RPCGEN_SRC= autofs_prot.x nlm_prot.x sm_inter.x nsm_addr.x \
! $(IDMAP_PROT_X)
DERIVED_HDRS= $(RPCGEN_SRC:%.x=%.h)
ALLHDRS= $(RPCGEN_SRC) $(DERIVED_HDRS)
ROOTDIRS= $(ROOT)/usr/include/rpcsvc
ROOTHDRS= $(ALLHDRS:%=$(ROOTDIRS)/%)
+ RPCGENFLAGS = -C
+ idmap_prot.h := RPCGENFLAGS += -MN
+ nlm_prot.h := RPCGENFLAGS += -M
+ sm_inter.h := RPCGENFLAGS += -M
+ nsm_addr.h := RPCGENFLAGS += -M
+
$(ROOTDIRS)/%: %
$(INS.file)
.KEEP_STATE:
*** 66,74 ****
$(ROOTDIRS):
$(INS.dir)
%.h: %.x
! $(RPCGEN) -C -h $< -o $@
!
! idmap_prot.h: $(IDMAP_PROT_X)
! $(RPCGEN) -CMNh -o $@ $(IDMAP_PROT_X)
--- 75,80 ----
$(ROOTDIRS):
$(INS.dir)
%.h: %.x
! $(RPCGEN) $(RPCGENFLAGS) -h $< -o $@