From owner-freebsd-current Sun Apr 29 12: 1:11 2001 Delivered-To: freebsd-current@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id B23E737B446 for ; Sun, 29 Apr 2001 12:01:03 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.3/8.11.1) with ESMTP id f3TJ0v000618; Sun, 29 Apr 2001 12:00:57 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.3/8.11.0) id f3TJ0uS39289; Sun, 29 Apr 2001 12:00:56 -0700 (PDT) (envelope-from jdp) Date: Sun, 29 Apr 2001 12:00:56 -0700 (PDT) Message-Id: <200104291900.f3TJ0uS39289@vashon.polstra.com> To: current@freebsd.org From: John Polstra Cc: david@catwhisker.org Subject: Re: World is broken... In-Reply-To: <200104291719.f3THJP726340@bunrab.catwhisker.org> References: <200104291719.f3THJP726340@bunrab.catwhisker.org> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <200104291719.f3THJP726340@bunrab.catwhisker.org>, David Wolfskill wrote: > >From: Poul-Henning Kamp > >Date: Sun, 29 Apr 2001 19:10:36 +0200 > > > /usr/obj/flat/src/sys/boot/i386/loader/../../ficl/libficl.a /usr/obj/flat/src/sys/boot/i386/loader/../libi386/libi386.a /usr/obj/flat/src/sys/boot/ > >i386/loader/../../../../lib/libstand/libstand.a > >/usr/obj/flat/src/sys/boot/i386/loader/../../ficl/libficl.a(words.o): In function `ficlParseNumber': > >words.o(.text+0x1ae): undefined reference to `isalnum' > >*** Error code 1 > >1 error > >*** Error code 2 > >1 error [...] > > The only reference to isalnum() I see is in boot/ficl/words.c:274, and > appears to replace a couple of references, one to isdigit() and the > other to isalpha(). > > Perhaps something was omitted in the upgrade to ficl 2.05? It's because words.c uses instead of , and is missing the #define for isalnum(). I imagine adding something like this to would fix it: #define isalnum(c) (isalpha(c) || isdigit(c)) John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message