From owner-freebsd-current@FreeBSD.ORG Fri Feb 15 06:03:22 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AC0C7E3B; Fri, 15 Feb 2013 06:03:22 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) by mx1.freebsd.org (Postfix) with ESMTP id 7AA353FB; Fri, 15 Feb 2013 06:03:22 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.6/8.14.6) with ESMTP id r1F63GG7099607; Thu, 14 Feb 2013 22:03:16 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.6/8.14.6/Submit) id r1F63GfB099606; Thu, 14 Feb 2013 22:03:16 -0800 (PST) (envelope-from sgk) Date: Thu, 14 Feb 2013 22:03:16 -0800 From: Steve Kargl To: Brett Wynkoop Subject: Re: Can not build world Message-ID: <20130215060316.GA99547@troutmask.apl.washington.edu> References: <20130215000415.7dea3055@ivory.wynn.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130215000415.7dea3055@ivory.wynn.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-arm@freebsd.org, freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Feb 2013 06:03:22 -0000 On Fri, Feb 15, 2013 at 12:04:15AM -0500, Brett Wynkoop wrote: > (installincludes) sh /usr/src/tools/install.sh -C -o root -g wheel -m > 444 _ctype.h _inttypes.h _langinfo.h _locale.h _monetary.h _stdio.h > _stdlib.h _string.h _time.h > _wchar.h /usr/obj/usr/src/tmp/usr/include/xlocale ===> kerberos5 > (includes) set -e; > cd /usr/src/kerberos5; /usr/obj/usr/src/make.arm/make > buildincludes; /usr/obj/usr/src/make.arm/make installincludes ===> > kerberos5/doc (buildincludes) ===> kerberos5/lib (buildincludes) ===> > kerberos5/lib/libasn1 (buildincludes) > compile_et /usr/src/kerberos5/lib/libasn1/../../../crypto/heimdal/lib/asn1/asn1_err.et > compile_et: No such file or directory *** [asn1_err.h] Error code 1 > > Stop in /usr/src/kerberos5/lib/libasn1. > *** [buildincludes] Error code 1 > Easy button: Add WITHOUT_KERBEROS to /etc/make.conf. See email archive for long story. The short story. You did not have kerberos on your system, which means that compile_et is not present in /usr/bin. Now, you want kerberos and kerberos does not build compile_et as a bootstrap tool. So, now you need to manually install compile_et. The fun really begins because you need some header/library from kerberos to build compile_et. So, once you figure out which header/library you need, you build and install it. Then build and install compile_et. And, finally, you can make world. -- Steve