Re: Signal changes and {,sig}{set,long}jmp

1999-09-07 Thread Marcel Moolenaar
Peter Wemm wrote: Before getting too far here, can we consider some other standard interfaces? #include ucontext.h int getcontext(ucontext_t *ucp); int setcontext(const ucontext_t *ucp); void makecontext(ucontext_t *ucp, (void *func)(), int argc, ...); int

make release (ohh so close - fixit floppy)

1999-09-07 Thread John W. DeBoskey
Oh so close to a complete release. who performs the coin toss to decide what to remove from fixit? -John Regular and MFS boot floppies made. touch release.8 Making fixit floppy. disklabel: ioctl DIOCWLABEL: Operation not supported by device Warning: Block size restricts cylinders per group

Re: request for review: move of /var/cron/log to /var/log/cron.log

1999-09-07 Thread Andreas Klemm
On Mon, Sep 06, 1999 at 02:12:53PM -0700, David Greenman wrote: I think they should all have .log since there can be subdirectories and it makes the files more easily identifiable. You're right ... I understand ... -- Andreas Klemm

Re: request for review: move of /var/cron/log to /var/log/cron.log

1999-09-07 Thread Nick Hibma
Uhm, well, yes, but I just committed the patch for /var/cron/log to /var/log/cron and not cron.log. So I guess that Andreas' idea has been incorporated. Nick On Mon, Sep 06, 1999 at 02:12:53PM -0700, David Greenman wrote: I think they should all have .log since there can be

RE: java too? (was Re: Perl still broken in 4.0-CURRENT)

1999-09-07 Thread Nate Williams
I think that java is still broken by this. .. java Segmentation fault (core dumped) I've just committed the fix in "src/libexec/rtld-elf/rtld.h" revision 1.12. The Java runtime was peeking into some of the dynamic linker's private data structures. My recent changes added some

Re: (P)review: sigset_t for more than 32 signals

1999-09-07 Thread Bruce Evans
This is a particularly safe implementation typedef, since I don't anticipate uint64_t ever being used in a future specification as a different data type. I don't know about ANSI. It's in C9x. But not in signal.h. The n869 draft has it in stdint.h and inttypes.h only. Bruce To

Re: mii_load in loader.conf

1999-09-07 Thread Daniel C. Sobral
Jake Burkholder wrote: Can we have an entry for mii.ko in /boot/defaults/loader.conf? ## ### Networking drivers # ##

Clean Build!

1999-09-07 Thread Amancio Hasty
Last nite around 1am or so I cvsup my system and managed to build the world and the kernel 8) Not sure how stable is -current so far in a uni processor configuration the system seems to be okay. Enjoy -- Amancio Hasty [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL

Re: more breakage

1999-09-07 Thread Randy Bush
cc -O -pipe -Wall -DKERBEROS -DCRYPT -DHAVE_CONFIG_H -I/usr/src/libexec/rlogind/../../kerberosIV/include -I/usr/src/libexec/rlogind/../../crypto/kerberosIV/include -I/usr/src/libexec/rlogind/../../crypto/kerberosIV/lib/roken -I/usr/src/libexec/rlogind/../../crypto/kerberosIV/appl/bsd

Re: more breakage

1999-09-07 Thread Mark Murray
fixes working. new build now running. back to chasing sound problems. Kewl. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: PNP problems

1999-09-07 Thread David Scheidt
On Tue, 7 Sep 1999, Randy Bush wrote: % xmix Error opening mixer device /dev/mixer: Device not configured and similar whinging. xmix worked before the change. Did you remake your snd0 devices? David To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe

Re: PNP problems

1999-09-07 Thread Manfred Antar
At 01:49 PM 09/07/99 -0700, Randy Bush wrote: i am in a similar position. so i did as you say. controller pnp0# PnP support for ISA ... # pcm: Luigi's sound driver #device pcm0 at isa? port ? irq 5 drq 1 flags 0x0 device

Re: -current and pcmcia problems

1999-09-07 Thread Warner Losh
In message [EMAIL PROTECTED] Michael Reifenberger writes: : if I do an upgrade to -current on my Tecra8000 the ep* driver stopps working. The ep driver works in -current. : The message from pccardc is that he failed the resouce allocation. Fix the resource allocation error. :-) That's really

Re: PNP problems

1999-09-07 Thread Randy Bush
# pcm: Luigi's sound driver #device pcm0 at isa? port ? irq 5 drq 1 flags 0x0 device pcm0 now, although pcm0 shows up in dmesg, i get % xmix Error opening mixer device /dev/mixer: Device not configured and similar whinging. xmix worked before

3.3RC install errors

1999-09-07 Thread Kip Macy
I am sorry if I am repeating something that has already been fixed - I just did buildworld which completed without errors - however, when I did installworld it ended with the following: snip vm/vm_object.h - vm/vm_object.ph vm/vm_page.h - vm/vm_page.ph vm/vm_pageout.h - vm/vm_pageout.ph

Re: evil -current

1999-09-07 Thread Amancio Hasty
Don't know -current is working fine for me over here as well as the latest XFree86 snapshot. It does help if you post further details like system configuration: uni processor vs smp , scsi vs ide , etc... Cheers -- Amancio Hasty [EMAIL PROTECTED] To Unsubscribe: send mail

Re: 3.3RC install errors

1999-09-07 Thread Kip Macy
Thanks, that fixed it. -Kip On Tue, 7 Sep 1999, Adam Strohl wrote: I get this on 4.0-C its because of this thing in gnu/usr.bin/perl/utils/h2ph if I remeber correctly. I just removed the directory from the utils Makefile ("when in doubt comment it out") and

Re: 3.3RC install errors

1999-09-07 Thread Adam Strohl
It'll let you installworld, but its not fixed :) gnu/usr.bin/perl/utils/h2ph/Makefile is where it gets triggered. The afterinstall rule calls some miniperl routine: afterinstall: cd ${DESTDIR}/usr/include; \ miniperl ${.OBJDIR}/${PROG} -d \

RE: java too? (was Re: Perl still broken in 4.0-CURRENT)

1999-09-07 Thread John Polstra
OK, sorry for the delay. Here's what I'd recommend for Java: 1. To determine whether the dynamic linker implements dladdr(): #define PATH_RTLD "/usr/libexec/ld-elf.so.1" if ((handle = dlopen(PATH_RTLD, RTLD_LAZY)) == NULL) err(1, "Can't dlopen %s: %s", PATH_RTLD, dlerror());

Re: -current and pcmcia problems

1999-09-07 Thread Soren Schmidt
It seems Warner Losh wrote: In message [EMAIL PROTECTED] Michael Reifenberger writes: : if I do an upgrade to -current on my Tecra8000 the ep* driver stopps working. The ep driver works in -current. : The message from pccardc is that he failed the resouce allocation. Fix the resource