Re: Is Sawfish running on -current?

2001-02-11 Thread Maxim Sobolev
I have the following error while compiling Sawfish on recent -current. Is it my half updated fault or the -current issue? gmake[1]: Entering directory `/home/SRC/FreeBSD/FreeBSD-current/ports/x11-wm/sawfish/work/sawfish-0.36/lisp' SAWFISHLISPDIR=. SAWFISHEXECDIR=../src/.libexec

Re: od driver for -CURRENT

2001-02-11 Thread non
From: Bruce Evans [EMAIL PROTECTED] Date: Sun, 11 Feb 2001 07:35:51 +1100 (EST) On Sat, 10 Feb 2001, Justin T. Gibbs wrote: Are there any reason device drivers do not check if thier devices are writable or not when they are opened ? I think returning an error value, like `od', is the

Re: Is Sawfish running on -current?

2001-02-11 Thread Takeshi Ken Yamada
Thank you for quick reply. I found that my librep was old one - Sept one living in /usr/local/libexec/rep., and the latest one (v 1.23 2001/01/07) goes under /usr/X11R6/libexec/rep/i386--freebsd5.0/. So, I deleted /usr/local/libexec/rep hoping that new one living under X11R6 be used.

printing

2001-02-11 Thread Rasa Karapandza
My computer reboots when trying to print. I'm not shure from which update it doesn't work. Am I doing something wrog or? Rasa To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: printing

2001-02-11 Thread Kris Kennaway
On Sun, Feb 11, 2001 at 03:24:06PM +0100, Rasa Karapandza wrote: My computer reboots when trying to print. I'm not shure from which update it doesn't work. Am I doing something wrog or? If you're running -current, then this problem has been widely reported in the list already. Go back to

OpenSSL ASM patch

2001-02-11 Thread Kris Kennaway
Okay, I've finally come up with a patch that enables the OpenSSL asm code in a way which is generically controllable and extends to other code which may want to enable CPU-specific optimizations (e.g. libgmp). The patch is at http://www.freebsd.org/~kris/openssl-asm.patch It's based on a

locale changes break world

2001-02-11 Thread Steve Kargl
Can the people working on the locale stuff test their changes prior to check-in? /usr/src/lib/libc/../libc/locale/lmessages.c: In function `__messages_load_locale': /usr/src/lib/libc/../libc/locale/lmessages.c:61: syntax error before `struct' /usr/src/lib/libc/../libc/locale/lmessages.c:61: too

Re: OpenSSL ASM patch

2001-02-11 Thread Kris Kennaway
Updated patch now available at the same location. Changes: * Document the MACHINE_CPU types which are currently used * Make NOPERL mutually exclusive with OpenSSL ASM and document it * Teach make(1) about MACHINE_CPU and provide sensible defaults for i386 and alpha.

Re: OpenSSL ASM patch

2001-02-11 Thread Alfred Perlstein
* Kris Kennaway [EMAIL PROTECTED] [010211 12:32] wrote: Updated patch now available at the same location. Changes: * Document the MACHINE_CPU types which are currently used * Make NOPERL mutually exclusive with OpenSSL ASM and document it * Teach make(1) about MACHINE_CPU and provide

Re: OpenSSL ASM patch

2001-02-11 Thread Kris Kennaway
On Sun, Feb 11, 2001 at 12:47:07PM -0800, Alfred Perlstein wrote: Looks awesome, someone complained that Linux was able to maintain an order of magnitude more SSL connections than FreeBSD, since you say this gives us a 3-5x speed up, I'd really like to see it committed and ported to -stable

Re: OpenSSL ASM patch

2001-02-11 Thread Alfred Perlstein
* Kris Kennaway [EMAIL PROTECTED] [010211 12:52] wrote: On Sun, Feb 11, 2001 at 12:47:07PM -0800, Alfred Perlstein wrote: Looks awesome, someone complained that Linux was able to maintain an order of magnitude more SSL connections than FreeBSD, since you say this gives us a 3-5x speed

make world failure...

2001-02-11 Thread Poul-Henning Kamp
What gives ??? cc -O -pipe -DLIBC_RCS -DSYSLIBC_RCS -I/syv/src/lib/libc/include -D__DBINTERFACE _PRIVATE -DINET6 -I/usr/obj/syv/src/lib/libc -DPOSIX_MISTAKE -I/syv/src/lib/libc /../libc/locale -DBROKEN_DES -DYP -DHESIOD -I/usr/obj/syv/src/i386/usr/include - c

Re: make world failure...

2001-02-11 Thread Robert Drehmel
In 38689.981926085@critter, Poul-Henning Kamp wrote: cc -O -pipe -DLIBC_RCS -DSYSLIBC_RCS -I/syv/src/lib/libc/include -D__DBINTERFACE _PRIVATE -DINET6 -I/usr/obj/syv/src/lib/libc -DPOSIX_MISTAKE -I/syv/src/lib/libc /../libc/locale -DBROKEN_DES -DYP -DHESIOD -I/usr/obj/syv/src/i386/usr/include

Re: OpenSSL ASM patch

2001-02-11 Thread Kris Kennaway
On Sun, Feb 11, 2001 at 01:02:43PM -0800, Alfred Perlstein wrote: * Kris Kennaway [EMAIL PROTECTED] [010211 12:52] wrote: On Sun, Feb 11, 2001 at 12:47:07PM -0800, Alfred Perlstein wrote: Looks awesome, someone complained that Linux was able to maintain an order of magnitude more SSL

Re: OpenSSL ASM patch

2001-02-11 Thread Kris Kennaway
On Sun, Feb 11, 2001 at 12:28:02PM -0800, Kris Kennaway wrote: Updated patch now available at the same location. Changes: * Document the MACHINE_CPU types which are currently used Actually, it occurs to me that this will be useful for ports as well. Currently some of them have nonstandard

HEADS UP: installworld gotchas

2001-02-11 Thread Daniel Eischen
On Sun, 11 Feb 2001, Daniel Eischen wrote: deischen2001/02/11 14:06:46 PST Modified files: include stdio.h Log: libc MT-safety, part 2. Add a lock to FILE and define an additional flag. This commit caused some bootstrap problems. The installworld

Re: make world failure...

2001-02-11 Thread Udo Erdelhoff
On Sun, Feb 11, 2001 at 10:56:18PM +0100, Robert Drehmel wrote: In 38689.981926085@critter, Poul-Henning Kamp wrote: [buildworld failure lib/libc/locale/lmessages.c] It should work with '#include stddef.h'. Yep, that seems to be enough to get past this point. I don't know if there are any

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Bruce Evans
On Sun, 11 Feb 2001, Daniel Eischen wrote: On Sun, 11 Feb 2001, Daniel Eischen wrote: deischen2001/02/11 14:06:46 PST Modified files: include stdio.h Log: libc MT-safety, part 2. Add a lock to FILE and define an additional flag. This commit

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Daniel Eischen
On Mon, 12 Feb 2001, Bruce Evans wrote: On Sun, 11 Feb 2001, Daniel Eischen wrote: On Sun, 11 Feb 2001, Daniel Eischen wrote: deischen2001/02/11 14:06:46 PST Modified files: include stdio.h Log: libc MT-safety, part 2. Add a lock

HEADS UP Re: cvs commit: src/sys/alpha/alpha trap.c src/sys/dev/acpica/Osd OsdSchedule.c src/sys/i386/i386 genassym.c swtch.s trap.c src/sys/ia64/ia64 trap.c src/sys/kern init_main.c kern_condvar.c kern_idle.c kern_intr.c kern_mib.c kern_mutex.c kern_proc.c ...

2001-02-11 Thread Jake Burkholder
jake2001/02/11 16:20:08 PST Modified files: sys/alpha/alpha trap.c sys/dev/acpica/Osd OsdSchedule.c sys/i386/i386genassym.c swtch.s trap.c sys/ia64/ia64trap.c sys/kern init_main.c kern_condvar.c kern_idle.c

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Tor . Egge
The new libc is incompatible with some old applications, but I'm not too sure why. The lock was added at the end of FILE... The size of FILE changed, thus the old application and the new library no longer agree about the values for stdout and stderr: #define stdin (__sF[0])

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Matt Dillon
: The new libc is incompatible with some old applications, but I'm not : too sure why. The lock was added at the end of FILE... : :The size of FILE changed, thus the old application and the new library :no longer agree about the values for stdout and stderr: : : #define stdin (__sF[0])

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Kris Kennaway
On Sun, Feb 11, 2001 at 04:44:21PM -0800, Matt Dillon wrote: : The new libc is incompatible with some old applications, but I'm not : too sure why. The lock was added at the end of FILE... : :The size of FILE changed, thus the old application and the new library :no longer agree about the

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Matt Dillon
: : This is a major change to libc. The library maj must be bumped if you : intend to change the sizeof(FILE), or every single third party application : that uses stdio will break. : : -Matt Oh wait, is libc already bumped in current verses 4.2? If

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Peter Wemm
Matt Dillon wrote: : : This is a major change to libc. The library maj must be bumped if you : intend to change the sizeof(FILE), or every single third party applicatio n : that uses stdio will break. : : -Matt Oh wait, is libc already

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Daniel Eischen
On Sun, 11 Feb 2001, Peter Wemm wrote: Matt Dillon wrote: : : This is a major change to libc. The library maj must be bumped if you : intend to change the sizeof(FILE), or every single third party applicatio n : that uses stdio will break. : :

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Matt Dillon
: :I cant help but wonder why on earth we didn't have it like this from the :start: : :Index: include/stdio.h :=== :... Yah. I say commit it. Might as well, it can't hurt any worse then changing the size of FILE.

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Peter Wemm
Daniel Eischen wrote: On Sun, 11 Feb 2001, Peter Wemm wrote: Matt Dillon wrote: : : This is a major change to libc. The library maj must be bumped if yo u : intend to change the sizeof(FILE), or every single third party applic atio n : that uses stdio

Whither sftp(1)?

2001-02-11 Thread Jordan Hubbard
In his article at http://www.daemonnews.org/200102/armoring.html, Markus Delves describes the usage of the SSH ftp command to do secure file copies. I further notice that we install the sftpd server in both -stable and -current (though we don't include any prototype information on how to start

Re: Whither sftp(1)?

2001-02-11 Thread Kris Kennaway
On Sun, Feb 11, 2001 at 07:07:40PM -0800, Jordan Hubbard wrote: In his article at http://www.daemonnews.org/200102/armoring.html, Markus Delves describes the usage of the SSH ftp command to do secure file copies. I further notice that we install the sftpd server in both -stable and -current

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Bruce Evans
On Sun, 11 Feb 2001, Daniel Eischen wrote: The new libc is incompatible with some old applications, but I'm not too sure why. The lock was added at the end of FILE... It's very incompatible. I happened to compile make(1) with the new stdio.h and the old libc.a (partly because unrelated

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Bruce Evans
On Sun, 11 Feb 2001, Peter Wemm wrote: I cant help but wonder why on earth we didn't have it like this from the start: Index: include/stdio.h === RCS file: /home/ncvs/src/include/stdio.h,v retrieving revision 1.26 diff -u

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Peter Wemm
Bruce Evans wrote: On Sun, 11 Feb 2001, Peter Wemm wrote: I cant help but wonder why on earth we didn't have it like this from the start: Index: include/stdio.h === RCS file: /home/ncvs/src/include/stdio.h,v

Re: HEADS UP: installworld gotchas

2001-02-11 Thread Peter Wemm
Peter Wemm wrote: Bruce Evans wrote: On Sun, 11 Feb 2001, Peter Wemm wrote: I cant help but wonder why on earth we didn't have it like this from the start: Index: include/stdio.h === RCS file:

Is -CURRENT in bad shape?

2001-02-11 Thread John Indra
Now I'm in the middle of make -j10 buildworld. Is -CURRENT in bad shape? I'm planning to blow away all /usr/local and /usr/X11R6 to build "a whole new world", again... ;) Should I wait for a couple of hours/days? Thanks... /john To Unsubscribe: send mail to [EMAIL PROTECTED] with

Re: Is -CURRENT in bad shape?

2001-02-11 Thread Alfred Perlstein
* John Indra [EMAIL PROTECTED] [010211 22:20] wrote: Now I'm in the middle of make -j10 buildworld. Is -CURRENT in bad shape? I'm planning to blow away all /usr/local and /usr/X11R6 to build "a whole new world", again... ;) Should I wait for a couple of hours/days? Current from Sat Feb

Re: Is -CURRENT in bad shape?

2001-02-11 Thread John Indra
On Sun, Feb 11, 2001 at 10:39:56PM -0800, Alfred Perlstein wrote: Current from Sat Feb 10 17:00:18 looks ok, there were just some patches to the scheduler but no one has complained yet. Let us know. :) Thanks for the fast reply. I really need it. OK... buildworld seems to be running ok right