svn commit: r336087 - in stable/11/sys/modules: pflog pfsync
Kristof Provost
kp at FreeBSD.org
Sun Jul 8 10:54:12 UTC 2018
Author: kp
Date: Sun Jul 8 10:54:11 2018
New Revision: 336087
URL: https://svnweb.freebsd.org/changeset/base/336087
Log:
pflog/pfsync: Fix module build with VIMAGE=yes
pflog and pfsync's module Makefile fails to include opt_global.h to SRCS
leading to build error for VIMAGE case.
Reproduced with:
cd /usr/src/sys/modules/pflog && make VIMAGE=yes
PR: 229404
Submitted by: eugen@
Modified:
stable/11/sys/modules/pflog/Makefile
stable/11/sys/modules/pfsync/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/modules/pflog/Makefile
==============================================================================
--- stable/11/sys/modules/pflog/Makefile Sun Jul 8 10:08:24 2018 (r336086)
+++ stable/11/sys/modules/pflog/Makefile Sun Jul 8 10:54:11 2018 (r336087)
@@ -4,7 +4,7 @@
KMOD= pflog
SRCS= if_pflog.c \
- opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h
+ opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h opt_global.h
SRCS+= bus_if.h device_if.h
.if !defined(KERNBUILDDIR)
Modified: stable/11/sys/modules/pfsync/Makefile
==============================================================================
--- stable/11/sys/modules/pfsync/Makefile Sun Jul 8 10:08:24 2018 (r336086)
+++ stable/11/sys/modules/pfsync/Makefile Sun Jul 8 10:54:11 2018 (r336087)
@@ -4,7 +4,7 @@
KMOD= pfsync
SRCS= if_pfsync.c \
- opt_pf.h opt_inet.h opt_inet6.h
+ opt_pf.h opt_inet.h opt_inet6.h opt_global.h
SRCS+= bus_if.h device_if.h
.if !defined(KERNBUILDDIR)
More information about the svn-src-stable-11
mailing list