From owner-freebsd-current@FreeBSD.ORG Thu Sep 4 19:27:34 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0D3916A4C0 for ; Thu, 4 Sep 2003 19:27:34 -0700 (PDT) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id A464743FD7 for ; Thu, 4 Sep 2003 19:27:33 -0700 (PDT) (envelope-from eischen@vigrid.com) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mail.pcnet.com (8.12.8/8.12.1) with ESMTP id h852RWtp003954; Thu, 4 Sep 2003 22:27:32 -0400 (EDT) Date: Thu, 4 Sep 2003 22:27:32 -0400 (EDT) From: Daniel Eischen X-Sender: eischen@pcnet5.pcnet.com To: Mark Sergeant In-Reply-To: <1062728475.3557.2.camel@xyzzy.wireless.snsonline.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-current@freebsd.org Subject: Re: Various problems after latest -CURRENT build. (USB, WI, KSE) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: deischen@freebsd.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Sep 2003 02:27:34 -0000 On Fri, 5 Sep 2003, Mark Sergeant wrote: > Hi Guys, > > I've noticed a bunch of problems with my latest current build... > > 1. With device wi in my kernel I was unable to compile at all, had to > take it out and then use a module to get it to work. > 2. My USB mouse no longer works, Works fine on my 5.1-RELEASE machine > but nothing as of last nights kernel and world. > 3. libkse seems to be causing hangs in various processes including > evolution, once I changed libmap to libc_r everything has run smoothly. You can try this patch to src/lib/libpthread/support/Makefile.inc. That should get libkse working again. We don't know why this is needed yet, but someone (kan?) is working on it. -- Dan Eischen Index: Makefile.inc =================================================================== RCS file: /home/ncvs/src/lib/libpthread/support/Makefile.inc,v retrieving revision 1.6 diff -u -r1.6 Makefile.inc --- Makefile.inc 2 Sep 2003 19:37:11 -0000 1.6 +++ Makefile.inc 4 Sep 2003 13:42:03 -0000 @@ -33,5 +33,5 @@ CLEANFILES+= ${SYSCALL_SRC} ${SYSCALL_OBJ} ${LIBC_OBJS} thr_libc.So: ${SYSCALL_OBJ} ${LIBC_OBJS} - ${CC} -fPIC -nostdlib -o ${.TARGET} -r ${.ALLSRC} + ${CC} -fPIC -nostdlib -o ${.TARGET} -r ${.ALLSRC} -lc_pic