From owner-freebsd-current@FreeBSD.ORG Sun Jul 12 16:49:03 2009 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 DFA901065693 for ; Sun, 12 Jul 2009 16:49:03 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from sarah.protected-networks.net (sarah.protected-networks.net [IPv6:2001:470:1f07:4e1::1]) by mx1.freebsd.org (Postfix) with ESMTP id A08858FC14 for ; Sun, 12 Jul 2009 16:49:03 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [202.12.127.84]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Iain Michael Butler", Issuer "Protected Networks Certificate Authority" (verified OK)) (Authenticated sender: imb) by sarah.protected-networks.net (Postfix) with ESMTPSA id B38136192 for ; Sun, 12 Jul 2009 12:49:02 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=protected-networks.net; s=200705; t=1247417342; bh=/CjauevJrM0QDfZzYmzh+NWszezJ/cdHkBCQOT/Vupk=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type; b=awBzx88zxHFY1O9lZJFLIs4iox+7TozDVeFOqHH1foQC12s/V0YHLfDliUvmKmZiQ A1LGNeS07AJZyZWrtrwmPv7SuwfvTOxhdrGXLn/FthK8Ibk3op7dzj3PK8y5/sH DomainKey-Signature: a=rsa-sha1; s=200509; d=protected-networks.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:subject: x-enigmail-version:openpgp:content-type; b=YkbZyonujKeTFKEhcxbplr3qedKylLsZjed6+79PQLAWt3HLIz5ZAhd/zPhHlBRR7 F987ruerJBarrTBZBLlxb+ZaDvI/CmzXXf4wh9ER9dI0cgac3b587ZMPxXhcc86 Message-ID: <4A5A13F8.1030205@protected-networks.net> Date: Sun, 12 Jul 2009 12:48:56 -0400 From: Michael Butler User-Agent: Thunderbird 2.0.0.22 (X11/20090625) MIME-Version: 1.0 To: freebsd-current X-Enigmail-Version: 0.95.7 OpenPGP: id=0442D492 Content-Type: multipart/mixed; boundary="------------080600070408060305040900" Subject: 802.11 mesh and super-G compilation issue 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, 12 Jul 2009 16:49:04 -0000 This is a multi-part message in MIME format. --------------080600070408060305040900 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 If 'options IEEE80211_SUPPORT_SUPERG' is used in a custom kernel configuration, sys/net80211/ieee80211_mesh.c fails to compile. Attached is a patch to include the relevant header so that it does. Michael -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkpaE/gACgkQQv9rrgRC1JLeiACggX1IHNNBfv5cjtLz6krLcyeE Rs0An11Bh1AtHqHox9ew5M5Wc16hG+7F =qGIS -----END PGP SIGNATURE----- --------------080600070408060305040900 Content-Type: text/plain; name="patch_ieee80211_mesh.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch_ieee80211_mesh.txt" *** src/sys/net80211/ieee80211_mesh.c~ Sat Jul 11 12:32:13 2009 --- src/sys/net80211/ieee80211_mesh.c Sun Jul 12 12:15:22 2009 *************** *** 61,66 **** --- 61,69 ---- #include #include #include + #ifdef IEEE80211_SUPPORT_SUPERG + #include + #endif static int mesh_select_proto_path(struct ieee80211vap *, const char *); static int mesh_select_proto_metric(struct ieee80211vap *, const char *); --------------080600070408060305040900--