From owner-freebsd-current@FreeBSD.ORG Sun Sep 28 23:34:51 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AED291065689 for ; Sun, 28 Sep 2008 23:34:51 +0000 (UTC) (envelope-from bms@incunabulum.net) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.freebsd.org (Postfix) with ESMTP id 8332F8FC1E for ; Sun, 28 Sep 2008 23:34:51 +0000 (UTC) (envelope-from bms@incunabulum.net) Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id E484917128A for ; Sun, 28 Sep 2008 19:34:50 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by compute1.internal (MEProxy); Sun, 28 Sep 2008 19:34:50 -0400 X-Sasl-enc: EFqaZogSMcQkQ3vNO5EOTDGZkFMjXzWp6A5Gnh7kJv+b 1222644890 Received: from empiric.lon.incunabulum.net (82-35-112-254.cable.ubr07.dals.blueyonder.co.uk [82.35.112.254]) by mail.messagingengine.com (Postfix) with ESMTPSA id 67DDCD920 for ; Sun, 28 Sep 2008 19:34:50 -0400 (EDT) Message-ID: <48E01499.7010203@incunabulum.net> Date: Mon, 29 Sep 2008 00:34:49 +0100 From: Bruce M Simpson User-Agent: Thunderbird 2.0.0.14 (X11/20080514) MIME-Version: 1.0 To: FreeBSD Current X-Enigmail-Version: 0.95.6 Content-Type: multipart/mixed; boundary="------------000107060806020206020706" Subject: Possible netgraph snafu in build X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Sep 2008 23:34:51 -0000 This is a multi-part message in MIME format. --------------000107060806020206020706 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit FYI... looks like this breaks cross builds. --------------000107060806020206020706 Content-Type: text/plain; name="bsnmp-modules.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsnmp-modules.diff" Index: usr.sbin/bsnmpd/modules/Makefile =================================================================== --- usr.sbin/bsnmpd/modules/Makefile (revision 183441) +++ usr.sbin/bsnmpd/modules/Makefile (working copy) @@ -12,9 +12,12 @@ snmp_bridge \ snmp_hostres \ snmp_mibII \ - snmp_netgraph \ snmp_pf +.if ${MK_NETGRAPH_SUPPORT} != "no" +SUBDIR+=snmp_netgraph +.endif + INCS= snmpmod.h INCSDIR= ${INCLUDEDIR}/bsnmp --------------000107060806020206020706--