From owner-svn-src-stable@FreeBSD.ORG Mon Oct 7 12:57:28 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 832BA814; Mon, 7 Oct 2013 12:57:28 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56EFC216E; Mon, 7 Oct 2013 12:57:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r97CvSTW004669; Mon, 7 Oct 2013 12:57:28 GMT (envelope-from pluknet@svn.freebsd.org) Received: (from pluknet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r97CvRS1004666; Mon, 7 Oct 2013 12:57:27 GMT (envelope-from pluknet@svn.freebsd.org) Message-Id: <201310071257.r97CvRS1004666@svn.freebsd.org> From: Sergey Kandaurov Date: Mon, 7 Oct 2013 12:57:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r256109 - in stable/9/sys/modules: dtrace/sdt rdma/krping toecore X-SVN-Group: stable-9 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.14 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: Mon, 07 Oct 2013 12:57:28 -0000 Author: pluknet Date: Mon Oct 7 12:57:27 2013 New Revision: 256109 URL: http://svnweb.freebsd.org/changeset/base/256109 Log: MFC r237560,254319 (by uqs): Fix 'make depend'. PR: misc/180918 Submitted by: Eugene Grosbein Modified: stable/9/sys/modules/dtrace/sdt/Makefile stable/9/sys/modules/rdma/krping/Makefile stable/9/sys/modules/toecore/Makefile Directory Properties: stable/9/sys/ (props changed) stable/9/sys/modules/ (props changed) Modified: stable/9/sys/modules/dtrace/sdt/Makefile ============================================================================== --- stable/9/sys/modules/dtrace/sdt/Makefile Mon Oct 7 12:07:40 2013 (r256108) +++ stable/9/sys/modules/dtrace/sdt/Makefile Mon Oct 7 12:57:27 2013 (r256109) @@ -4,7 +4,7 @@ KMOD= sdt SRCS= sdt.c -SRCS+= vnode_if.h +SRCS+= vnode_if.h opt_kdtrace.h CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris \ -I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \ Modified: stable/9/sys/modules/rdma/krping/Makefile ============================================================================== --- stable/9/sys/modules/rdma/krping/Makefile Mon Oct 7 12:07:40 2013 (r256108) +++ stable/9/sys/modules/rdma/krping/Makefile Mon Oct 7 12:57:27 2013 (r256109) @@ -5,8 +5,8 @@ RDMA= ${.CURDIR}/../../../contrib/rdma/k KMOD= krping SRCS= krping.c krping_dev.c getopt.c -SRCS+= bus_if.h device_if.h opt_sched.h pci_if.h pcib_if.h -SRCS+= vnode_if.h -CFLAGS+= -I${.CURDIR}/../../../ofed/include +SRCS+= bus_if.h device_if.h pci_if.h pcib_if.h vnode_if.h +SRCS+= opt_sched.h opt_inet.h opt_inet6.h +CFLAGS+= -I${.CURDIR}/../../../ofed/include .include Modified: stable/9/sys/modules/toecore/Makefile ============================================================================== --- stable/9/sys/modules/toecore/Makefile Mon Oct 7 12:07:40 2013 (r256108) +++ stable/9/sys/modules/toecore/Makefile Mon Oct 7 12:57:27 2013 (r256109) @@ -4,6 +4,6 @@ KMOD= toecore SRCS= toecore.c -SRCS+= opt_ofed.h +SRCS+= opt_ofed.h opt_inet.h opt_inet6.h .include