Index: head/sys/modules/nfscl/Makefile =================================================================== --- head/sys/modules/nfscl/Makefile (revision 365231) +++ head/sys/modules/nfscl/Makefile (revision 365232) @@ -1,45 +1,46 @@ # $FreeBSD$ .PATH: ${SRCTOP}/sys/fs/nfsclient ${SRCTOP}/sys/nfs KMOD= nfscl SRCS= vnode_if.h \ nfs_clrpcops.c \ nfs_clkrpc.c \ nfs_clstate.c \ nfs_clcomsubs.c \ nfs_clport.c \ nfs_clbio.c \ nfs_clnfsiod.c \ nfs_clnode.c \ nfs_clsubs.c \ nfs_clvfsops.c \ nfs_clvnops.c \ opt_bootp.h \ opt_inet.h \ opt_inet6.h \ + opt_kern_tls.h \ opt_kgssapi.h \ opt_nfs.h \ opt_nfsroot.h \ opt_ufs.h .if !defined(KERNBUILDDIR) NFS_ROOT?= 1 # 0/1 - requires NFS_ROOT to be configured in kernel .if ${NFS_ROOT} > 0 opt_nfsroot.h: echo "#define NFS_ROOT 1" > ${.TARGET} .endif .else OPT_NFS_ROOT!= cat ${KERNBUILDDIR}/opt_nfsroot.h .if empty(OPT_NFS_ROOT) NFS_ROOT= 0 .else NFS_ROOT= 1 .endif .endif .if ${NFS_ROOT} > 0 SRCS+= nfs_diskless.c .endif .include Index: head/sys/modules/nfsd/Makefile =================================================================== --- head/sys/modules/nfsd/Makefile (revision 365231) +++ head/sys/modules/nfsd/Makefile (revision 365232) @@ -1,20 +1,21 @@ # $FreeBSD$ .PATH: ${SRCTOP}/sys/fs/nfsserver KMOD= nfsd SRCS= vnode_if.h \ nfs_fha_new.c \ nfs_nfsdserv.c \ nfs_nfsdcache.c \ nfs_nfsdkrpc.c \ nfs_nfsdsocket.c \ nfs_nfsdstate.c \ nfs_nfsdsubs.c \ nfs_nfsdport.c \ opt_ufs.h \ opt_nfs.h \ opt_inet.h \ opt_inet6.h \ + opt_kern_tls.h \ opt_kgssapi.h .include