From owner-freebsd-current Sat Jul 15 7:29:20 2000 Delivered-To: freebsd-current@freebsd.org Received: from guru.mired.org (zoom1-197.telepath.com [216.14.1.197]) by hub.freebsd.org (Postfix) with SMTP id D3CFC37B725 for ; Sat, 15 Jul 2000 07:29:15 -0700 (PDT) (envelope-from mwm@mired.org) Received: (qmail 68931 invoked by uid 100); 15 Jul 2000 14:28:39 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14704.29974.878920.494001@guru.mired.org> Date: Sat, 15 Jul 2000 09:28:38 -0500 (CDT) To: freebsd-current@freebsd.org Subject: Build broken? X-Mailer: VM 6.72 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The build broke this morning, and is still broken as of a few moments ago. The problem is that systat tries to use the (apparently now missing) m_mtypes element of the mbstat structure: su-2.04# pwd /usr/src/usr.bin/systat su-2.04# make cc -O -pipe -march=pentium -I/usr/src/usr.bin/systat/../../sys -c /usr/src/usr.bin/systat/mbufs.c /usr/src/usr.bin/systat/mbufs.c: In function `showmbufs': /usr/src/usr.bin/systat/mbufs.c:111: structure has no member named `m_mtypes' /usr/src/usr.bin/systat/mbufs.c:112: structure has no member named `m_mtypes' /usr/src/usr.bin/systat/mbufs.c:133: structure has no member named `m_mtypes' /usr/src/usr.bin/systat/mbufs.c:134: structure has no member named `m_mtypes' *** Error code 1 Stop in /usr/src/usr.bin/systat. And yes, "make buildworld" stops with the same set of error messages. /usr/src/usr.bin/netstat handles this correctly. It does leave one wondering why this the mbuf type names aren't shared in some way - though these seem to be the only places that it's used. Thanx,