From owner-freebsd-stable@FreeBSD.ORG Fri Dec 23 17:20:11 2005 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E02716A429 for ; Fri, 23 Dec 2005 17:20:11 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id B77D043D6B for ; Fri, 23 Dec 2005 17:20:10 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.198] ([10.0.0.198]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id jBNHJuiE037044 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 23 Dec 2005 09:20:00 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <43AC31FE.9090806@errno.com> Date: Fri, 23 Dec 2005 09:21:02 -0800 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tofik Suleymanov References: <43AC2BA9.4090800@oxygen.az> In-Reply-To: <43AC2BA9.4090800@oxygen.az> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: stable@freebsd.org Subject: Re: troubles compiling latest RELENG_6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2005 17:20:11 -0000 Tofik Suleymanov wrote: > After cvsuping latest RELENG_6: > > make buildworld ( executes fine) > make buildkernel (gives an error - look below) > > cc -c -O -pipe -march=pentium3 -Wall -Wredundant-decls -Wnested-externs > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline > -Wcast-qual -fformat-extensions -std=c99 -g -nostdinc -I- -I. > -I/usr/src/sys -I/usr/src/sys/contrib/altq > -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/pf > -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd > -I/usr/src/sys/contrib/ngatm -I/usr/src/sys/dev/twa -D_KERNEL > -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common > -finline-limit=8000 --param inline-unit-growth=100 --param > large-function-growth=1000 -mno-align-long-strings > -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 > -ffreestanding -Werror /usr/src/sys/net80211/ieee80211_ioctl.c > /usr/src/sys/net80211/ieee80211_ioctl.c: In function > `ieee80211_ioctl_get80211': > /usr/src/sys/net80211/ieee80211_ioctl.c:1483: error: > `IEEE80211_IOC_MCAST_RATE' undeclared (first use in this function) > /usr/src/sys/net80211/ieee80211_ioctl.c:1483: error: (Each undeclared > identifier is reported only once > /usr/src/sys/net80211/ieee80211_ioctl.c:1483: error: for each function > it appears in.) > /usr/src/sys/net80211/ieee80211_ioctl.c:1484: error: structure has no > member named `ic_mcast_rate' > /usr/src/sys/net80211/ieee80211_ioctl.c: In function > `ieee80211_ioctl_set80211': > /usr/src/sys/net80211/ieee80211_ioctl.c:2375: error: > `IEEE80211_IOC_MCAST_RATE' undeclared (first use in this function) > /usr/src/sys/net80211/ieee80211_ioctl.c:2376: error: structure has no > member named `ic_mcast_rate' > *** Error code 1 Your tree/build area must be out of sync; rev 1.10.2.3 to ieee80211_ioctl.h defines IEEE80211_IOC_MCAST_RATE. Sam