From owner-svn-src-stable@freebsd.org Sun Jul 8 10:54:12 2018 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FF7A1037492; Sun, 8 Jul 2018 10:54:12 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 40FFD8ED5D; Sun, 8 Jul 2018 10:54:12 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 22466250F0; Sun, 8 Jul 2018 10:54:12 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w68AsCHQ093031; Sun, 8 Jul 2018 10:54:12 GMT (envelope-from kp@FreeBSD.org) Received: (from kp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w68AsBNs093029; Sun, 8 Jul 2018 10:54:11 GMT (envelope-from kp@FreeBSD.org) Message-Id: <201807081054.w68AsBNs093029@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kp set sender to kp@FreeBSD.org using -f From: Kristof Provost Date: Sun, 8 Jul 2018 10:54:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r336087 - in stable/11/sys/modules: pflog pfsync X-SVN-Group: stable-11 X-SVN-Commit-Author: kp X-SVN-Commit-Paths: in stable/11/sys/modules: pflog pfsync X-SVN-Commit-Revision: 336087 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jul 2018 10:54:12 -0000 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)