Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Jan 2020 22:43:56 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357275 - in head/sys/modules: if_lagg if_vlan
Message-ID:  <202001292243.00TMhukT043866@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001292243.00TMhukT043866>