From owner-freebsd-current@FreeBSD.ORG Tue Jun 19 16:13:29 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A4AA106577D for ; Tue, 19 Jun 2012 16:13:26 +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 347188FC0A for ; Tue, 19 Jun 2012 16:13:26 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.5/8.14.5) with ESMTP id q5JGDJ52043390 for ; Tue, 19 Jun 2012 09:13:19 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.5/8.14.5/Submit) id q5JGDJ4Q043389 for freebsd-current@freebsd.org; Tue, 19 Jun 2012 09:13:19 -0700 (PDT) (envelope-from sgk) Date: Tue, 19 Jun 2012 09:13:19 -0700 From: Steve Kargl To: freebsd-current@freebsd.org Message-ID: <20120619161319.GA43198@troutmask.apl.washington.edu> References: <20120619154033.GA70250@mech-cluster241.men.bris.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120619154033.GA70250@mech-cluster241.men.bris.ac.uk> User-Agent: Mutt/1.4.2.3i Subject: Re: r232100: /usr/local/lib/libsasl2.so: undefined reference to `_ThreadRuneLocale@FBSD_1.3' X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 19 Jun 2012 16:13:29 -0000 On Tue, Jun 19, 2012 at 04:40:34PM +0100, Anton Shterenlikht wrote: > I'm doing a binary search for another > issue between r231193 and r233000. > > On r232100 I get: > > cc -O2 -pipe -I/usr/src/libexec/mail.local/../../contrib/sendmail/include -I. -I/usr/local/include -DSASL=2 -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -L/usr/local/lib -o mail.local mail.local.o /usr/obj/usr/src/libexec/mail.local/../../lib/libsm/libsm.a -lsasl2 > /usr/local/lib/libsasl2.so: undefined reference to `_ThreadRuneLocale@FBSD_1.3' % svn blame /usr/src/lib/libc/locale/Symbol.map | grep Thread 232498 theraven _ThreadRuneLocale; You did actually provide enough detail about your binary search, but 232498 falls within your range of 231193:233000. You also forgot to tell us what is in your src.conf and make.conf files, which is causing you to use something from /usr/local, which needs to be kept in sync with your binary search. -- Steve