svn commit: r357275 - in head/sys/modules: if_lagg if_vlan

Kyle Evans kevans at FreeBSD.org
Wed Jan 29 22:43:57 UTC 2020


Author: kevans
Date: Wed Jan 29 22:43:56 2020
New Revision: 357275
URL: https://svnweb.freebsd.org/changeset/base/357275

Log:
  modules: adding some missing opt_* dependencies
  
  if_vlan grew a dependency on opt_inet6.h in r356993
  if_lagg and if_vlan both grew a dependency on opt_kern_tls.h in r351522
  
  This is needed for standalone module builds of these guys.

Modified:
  head/sys/modules/if_lagg/Makefile
  head/sys/modules/if_vlan/Makefile

Modified: head/sys/modules/if_lagg/Makefile
==============================================================================
--- head/sys/modules/if_lagg/Makefile	Wed Jan 29 22:40:13 2020	(r357274)
+++ head/sys/modules/if_lagg/Makefile	Wed Jan 29 22:43:56 2020	(r357275)
@@ -2,6 +2,7 @@
 
 .PATH:	${SRCTOP}/sys/net
 KMOD=	if_lagg
-SRCS=	if_lagg.c ieee8023ad_lacp.c opt_inet.h opt_inet6.h opt_ratelimit.h
+SRCS=	if_lagg.c ieee8023ad_lacp.c opt_inet.h opt_inet6.h opt_kern_tls.h
+SRCS+=	opt_ratelimit.h
 
 .include <bsd.kmod.mk>

Modified: head/sys/modules/if_vlan/Makefile
==============================================================================
--- head/sys/modules/if_vlan/Makefile	Wed Jan 29 22:40:13 2020	(r357274)
+++ head/sys/modules/if_vlan/Makefile	Wed Jan 29 22:43:56 2020	(r357275)
@@ -4,6 +4,6 @@
 
 KMOD=	if_vlan
 SRCS=	if_vlan.c
-SRCS+=	opt_inet.h opt_vlan.h opt_ratelimit.h
+SRCS+=	opt_inet.h opt_inet6.h opt_kern_tls.h opt_vlan.h opt_ratelimit.h
 
 .include <bsd.kmod.mk>


More information about the svn-src-head mailing list