From owner-freebsd-stable Sat Nov 16 10:55:25 1996 Return-Path: owner-stable Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA13288 for stable-outgoing; Sat, 16 Nov 1996 10:55:25 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id KAA13281 for ; Sat, 16 Nov 1996 10:55:23 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <16988(7)>; Sat, 16 Nov 1996 10:54:49 PST Received: by crevenia.parc.xerox.com id <177557>; Sat, 16 Nov 1996 10:54:37 -0800 From: Bill Fenner To: stable@freebsd.org Subject: RELENG_2_1_0 LINT doesn't build? Message-Id: <96Nov16.105437pst.177557@crevenia.parc.xerox.com> Date: Sat, 16 Nov 1996 10:54:26 PST Sender: owner-stable@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Have people been checking their commits to -stable? LINT has options "MAXMEM=(128*1024)" which "make depend" chokes on, "MAXMEM='(128*1024)'" works, though. I dunno if that'll work later in the compilation phase. Once I get past that, I quickly hit ../../dev/vx/if_vx.c: In function `vxioctl': ../../dev/vx/if_vx.c:891: parse error before `register' ../../dev/vx/if_vx.c:893: `ina' undeclared (first use this function) ../../dev/vx/if_vx.c:893: (Each undeclared identifier is reported only once ../../dev/vx/if_vx.c:893: for each function it appears in.) Case statements are not blocks, you can't declare a variable after a case label unless you create a block for that variable's scope. If gcc-2.7.2 lets you do this, it's C++ semantics seeping through and we shouldn't take advantage of it. We'll see what comes up after this one... Bill