From 78373a5faa3bab46d247c10a7059e484bc634504 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Wed, 29 Jan 2020 22:43:56 +0000 Subject: [PATCH] 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. --- sys/modules/if_lagg/Makefile | 3 ++- sys/modules/if_vlan/Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/modules/if_lagg/Makefile b/sys/modules/if_lagg/Makefile index 30e81d4dfaad..897e4cb6040a 100644 --- a/sys/modules/if_lagg/Makefile +++ b/sys/modules/if_lagg/Makefile @@ -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 diff --git a/sys/modules/if_vlan/Makefile b/sys/modules/if_vlan/Makefile index 56b9cdaaf12f..36a84590be1d 100644 --- a/sys/modules/if_vlan/Makefile +++ b/sys/modules/if_vlan/Makefile @@ -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