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


_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to