From owner-freebsd-questions@FreeBSD.ORG Mon Dec 27 02:28:38 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 068FD16A4CE for ; Mon, 27 Dec 2004 02:28:38 +0000 (GMT) Received: from smtpauth08.mail.atl.earthlink.net (smtpauth08.mail.atl.earthlink.net [209.86.89.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1BD143D49 for ; Mon, 27 Dec 2004 02:28:37 +0000 (GMT) (envelope-from lane@joeandlane.com) Received: from [66.47.111.183] (helo=joeandlane.com) (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1Cikcf-0007mH-4Q; Sun, 26 Dec 2004 21:28:37 -0500 Received: from joeandlane.com (localhost [127.0.0.1]) by joeandlane.com (8.13.1/8.13.1) with ESMTP id iBR2TVC8058242; Sun, 26 Dec 2004 20:29:31 -0600 (CST) (envelope-from lane@joeandlane.com) Received: from localhost (localhost [[UNIX: localhost]]) by joeandlane.com (8.13.1/8.13.1/Submit) id iBR2TUjs058241; Sun, 26 Dec 2004 20:29:30 -0600 (CST) (envelope-from lane@joeandlane.com) X-Authentication-Warning: joeandlane.com: lholcombe set sender to lane@joeandlane.com using -f From: Lane To: freebsd-questions@freebsd.org Date: Sun, 26 Dec 2004 20:29:30 -0600 User-Agent: KMail/1.7.1 References: <200412261845.34625.sdhawley@eatel.net> In-Reply-To: <200412261845.34625.sdhawley@eatel.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200412262029.30834.lane@joeandlane.com> X-ELNK-Trace: e56a4b6ca9bdfda11aa676d7e74259b7b3291a7d08dfec79327b99be36f86d2bb2061cd4b244b838350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 66.47.111.183 cc: sdhawley Subject: Re: make buildworld 5.3.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Dec 2004 02:28:38 -0000 On Sunday 26 December 2004 18:45, sdhawley wrote: > Thanks for any help > stewart at sdhawley@eatel.net > Errors at end of make buildworld > xml.o(.text+0x1764): more undefined references to `xmalloc' follow > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/texinfo/makeinfo. > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/texinfo. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > Freebsd version # 5.3.0 > Contents of /var/run/dmesg.boot file attached > Output of uname -a > FreeBSD sdhawley.eatel.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 > 04:19:18 UTC 2004 > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 > Thankes stewart stewart, It's probably an issue with outdated source. do this: cd /usr/ports/net/cvsup-without-gui make all install clean rehash ... then create a supfile ... something like this: ee /etc/cvsupfile (to start the ee editor). Add the following lines: *default host=cvsup3.freebsd.org *default base=/usr *default prefix=/usr *default release=cvs tag=RELENG_5_3 *default delete use-rel-suffix *default compress src-all hit to exit, and save the file. Then, issue this command from the command line: cvsup -g -L 2 /etc/cvsupfile This will update your /usr/src directory with relevant code for FreeBSD 5.3-RELEASE Finally, start from where you started: cd /usr/src make buildworld make installworld ... etc Make sure you read /usr/src/UPDATING (all the way through) before you restart "make buildworld" good luck!