From owner-cvs-src@FreeBSD.ORG Thu Oct 11 18:23:20 2007 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3943916A418; Thu, 11 Oct 2007 18:23:20 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.freebsd.org (Postfix) with ESMTP id A4D4813C46A; Thu, 11 Oct 2007 18:23:19 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.8p) with ESMTP id 214002314-1834499 for multiple; Thu, 11 Oct 2007 14:21:14 -0400 Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l9BIMwdJ028171; Thu, 11 Oct 2007 14:22:59 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: obrien@freebsd.org Date: Thu, 11 Oct 2007 14:22:43 -0400 User-Agent: KMail/1.9.6 References: <200710091342.l99DgZDB097501@repoman.freebsd.org> <20071011085836.GC14241@team.vega.ru> <20071011172823.GB43603@dragon.NUXI.org> In-Reply-To: <20071011172823.GB43603@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200710111422.44320.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 11 Oct 2007 14:23:00 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/4529/Thu Oct 11 02:54:06 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Dag-Erling =?iso-8859-1?q?Sm=C3=B8rgrav?= , src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src Makefile.inc1 UPDATING src/cddl/lib Makefile src/cddl/usr.bin Makefile src/cddl/usr.sbin Makefile src/lib Makefile src/lib/libkse Makefile kse.map pthread.map src/lib/libkse/arch/amd64 Makefile.inc src/lib/libkse/arch/amd64/amd64 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2007 18:23:20 -0000 On Thursday 11 October 2007 01:28:23 pm David O'Brien wrote: > On Thu, Oct 11, 2007 at 12:58:36PM +0400, Ruslan Ermilov wrote: > > On Wed, Oct 10, 2007 at 09:29:57AM -0700, David O'Brien wrote: > > > Shipping a libkse.so.3 in 7.0, would be yet another FreeBSD weirdism as > > > folks may wonder where .1 & 2 are. > > > > They are right here: > > > > /usr/ports/misc/compat5x/pkg-plist:%%SPARC64%%lib/compat/libkse.so.1 > > /usr/ports/misc/compat6x/pkg-plist.sparc64:lib/compat/libkse.so.2 > > Where did those come from? That is another weirdism as they don't exist > on i386: > > $ uname -a > FreeBSD foo.bar.net 6.2-RELEASE-XXX-1 FreeBSD > 6.2-RELEASE-XXX-1 #0: Tue Jun 19 10:16:30 UTC 2007 > > $ ls /usr/lib/libkse.* /lib/libkse.* > ls: /lib/libkse.*: No such file or directory > ls: /usr/lib/libkse.*: No such file or directory These archs use libthr for libpthread because of lacking full libkse support, and install libkse as libkse as a result. They are analogous to libpthread.so.[12] on i386. Basically, libpthread was renamed to libkse on some archs and libthr on others in 7.0, and libpthread is now always a symlink. Given that, I think libkse should be libkse.so.3 in 7. -- John Baldwin