And when is alpha buildworld going to work again? It's been busted for well over a week. The following patch posted by drew gets around the problem for now. If we want people to test changes on on the alpha, then we should try and make sure that world isn't broken for too long on it. I know the fix below isn't correct, but it at least allows world to build.
Index: usr.bin/binutils/gdb/alpha//kvm-fbsd.c =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/binutils/gdb/alpha/kvm-fbsd.c,v retrieving revision 1.6 diff -u -r1.6 kvm-fbsd.c --- usr.bin/binutils/gdb/alpha//kvm-fbsd.c 13 Oct 2001 04:38:46 -0000 1.6 +++ usr.bin/binutils/gdb/alpha//kvm-fbsd.c 17 Feb 2002 21:57:25 -0000 @@ -390,7 +390,7 @@ addr = (CORE_ADDR)parse_and_eval_address(arg); /* Read the PCB address in proc structure. */ - addr += (int) &((struct proc *)0)->p_thread.td_pcb; + addr += (int) &((struct proc *)0)->p_xxthread.td_pcb; if (kvread(addr, &val)) error("cannot read pcb ptr"); -- Dan Eischen To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message