Re: Base packaging

2003-09-18 Thread Alexander Leidinger
On Thu, 18 Sep 2003 11:28:31 +0100 Paul Richards [EMAIL PROTECTED] wrote: We have programs in the ports tree which use our bsd.*.mk infrastructure. Will there be a problem if such a program gets installed from ports (will it try to register itself 2 times)? I don't know, have you got an

Re: Bad performance

2003-09-13 Thread Alexander Leidinger
On 13 Sep 2003 14:52:29 +0200 sebastian ssmoller [EMAIL PROTECTED] wrote: then i moved the disk from the hardware used during install into the production environment which includes VIA 82C8363 (Apollo KT133A) board, NVidia GeForce2 grafic card (using nvidia native driver for x11), AMD Duron

Re: Quo vadis, -CURRENT? (recent changes to cc compatibility)

2003-09-11 Thread Alexander Leidinger
On Wed, 10 Sep 2003 12:41:41 -0400 Michael Edenfield [EMAIL PROTECTED] wrote: Err, not quite. Tried to build gnome2 lately? :) gnome2 depends on gnomemedia2. gnomemedia2 depends on gstreamer-plugins. gstreamer-plugins fails because ARTSD_FLAGS in several dozen Makefiles includes

Re: Quo vadis, -CURRENT? (recent changes to cc compatibility)

2003-09-10 Thread Alexander Leidinger
On Wed, 10 Sep 2003 15:30:28 +0200 Michael Nottebrock [EMAIL PROTECTED] wrote: Sorry if this sounds a bit flame-ish, but the way I see it we now have a system compiler in -CURRENT that doesn't even compile a hello world if-pedantic is specified and breaks with lots of existing software out

Re: Question about genassym, locore.s and 0-sized arrays(showstopper for an icc compiled kernel)

2003-09-06 Thread Alexander Leidinger
On Fri, 5 Sep 2003 09:55:57 -0700 Marcel Moolenaar [EMAIL PROTECTED] wrote: Interesting, What does icc do with: struct { int tag; char obj[]; } foo; And what does the sizeof() operator give. ---snip--- % marcel.c #include stdio.h struct { int tag; char

Re: Question about genassym, locore.s and 0-sized arrays(showstopper for an icc compiled kernel)

2003-09-06 Thread Alexander Leidinger
On Sat, 6 Sep 2003 01:42:59 -0700 John-Mark Gurney [EMAIL PROTECTED] wrote: Alexander Leidinger wrote this message on Sat, Sep 06, 2003 at 10:33 +0200: struct { ^ try moving foo to here. int tag; char obj[]; } foo; ^^^ from here. Uhm... yes, sorry

Re: Question about genassym, locore.s and 0-sized arrays (showstopper for an icc compiled kernel)

2003-09-05 Thread Alexander Leidinger
On Thu, 4 Sep 2003 15:57:31 -0700 Marcel Moolenaar [EMAIL PROTECTED] wrote: On Thu, Sep 04, 2003 at 05:51:23PM -0500, Dan Nelson wrote: I guess the correct question to be asking is does the ELF format allow 0-length symbols? Of course. What size do you think a label should have

Re: Question about genassym, locore.s and 0-sizedarrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Alexander Leidinger
On Fri, 05 Sep 2003 02:06:56 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Now try: struct foo { char c; int i; long array[]; }; struct foo foo;m struct foo fee[1]; struct foo fie[3]; struct foo foe[0];

Question about genassym, locore.s and 0-sized arrays (showstopper for an icc compiled kernel)

2003-09-04 Thread Alexander Leidinger
Hi, I'm in the process of building our kernel with Intels C Compiler (icc). So far we are able to build a working UP and SMP kernel (not completely automated). Most of it works just fine (NFS-client is known to not work). At the moment I discussing an issue with Intel regarding 0-sized arrays.

Re: Question about genassym, locore.s and 0-sized arrays (showstopper for an icc compiled kernel)

2003-09-04 Thread Alexander Leidinger
On Thu, 4 Sep 2003 11:28:58 -0500 Dan Nelson [EMAIL PROTECTED] wrote: If you're talking FreeBSD 5, you should be able to simply subsitute a C99 flexible array member (basically replace [0] with []) and get the same effect. 0-length arrays are a gcc extension:

Re: automated clean up of /usr/lib because of /lib

2003-09-01 Thread Alexander Leidinger
On Sun, 31 Aug 2003 15:02:21 -0700 (PDT) Doug Barton [EMAIL PROTECTED] wrote: There was a discussion of this recently, and the conclusion was more or less that doing this in an automated fashion is frought with danger, since you don't know for sure what else besides system components the user

Re: /lib symlinks problem?

2003-08-31 Thread Alexander Leidinger
On Sat, 30 Aug 2003 21:56:53 +0300 Ruslan Ermilov [EMAIL PROTECTED] wrote: I think a workaround would be to use absolute symlinks (at least as an option). I might be missing an obvious, but I just don't see a reason why we should use relative linking here: we should just link to where

strange behavior of loader

2003-08-31 Thread Alexander Leidinger
Hi, I see some strange behavior of the loader with different CFLAGS, it either resets the system immediately or the bootblock tells me it has a wrong format. CFLAGS CPUTYPE failes -O2 -pipe -fno-strict-aliasing athlon yes -O2 -pipe -fno-strict-aliasing

Re: /lib symlinks problem?

2003-08-31 Thread Alexander Leidinger
On Sun, 31 Aug 2003 17:52:24 +0300 Ruslan Ermilov [EMAIL PROTECTED] wrote: Doh, you're of course right! An updated patch is attached. I successfully tested an installworld, nm doesn't fail anymore in my environment and cdrdao compiles just fine. Bye, Alexander. -- It is easier

automated clean up of /usr/lib because of /lib

2003-08-31 Thread Alexander Leidinger
Hi, shouldn't we add something like ---snip--- for i in /lib/lib*.so.*; do lib=$(basename $i) [ -f /usr/lib/$lib ] chflags noschg /usr/lib/$lib rm /usr/lib/$lib done ---snip--- into UPDATING or append it to the end of installworld? Bye, Alexander. -- I believe

/lib symlinks problem? (was: Re: __fpclassifyd)

2003-08-30 Thread Alexander Leidinger
On Fri, 29 Aug 2003 09:19:07 -0700 Steve Kargl [EMAIL PROTECTED] wrote: Are you linking in libc? troutmask:kargl[207] nm -D /usr/lib/libc.so | grep fpcl 000b0040 T __fpclassifyd 000afff0 T __fpclassifyf 000b00a0 T __fpclassifyl I think the problem is, that some tools have a problem

Re: __fpclassifyd

2003-08-29 Thread Alexander Leidinger
On Fri, 29 Aug 2003 16:54:37 +0200 Christoph Kukulies [EMAIL PROTECTED] wrote: I did a cvsup and rebuild of world and ports, portupgrade, reinstalled mod_php4, apache and still get this sh apache.sh start Syntax error on line 237 of /usr/local/etc/apache/httpd.conf: Cannot load

Re: nfs tranfers hang in state getblck or nfsread

2003-08-28 Thread Alexander Leidinger
On Wed, 27 Aug 2003 09:06:41 -0400 (EDT) Robert Watson [EMAIL PROTECTED] wrote: I have a very similar configuration, but it sounds like I'm not bumping into the same problem. Are you using NFSv2 or v3, and how many file systems are you mounting? Are you generally using UFS1 or UFS2? Right

Re: IDE DVD playback on 5.1-CURRENT

2003-08-28 Thread Alexander Leidinger
On Thu, 28 Aug 2003 07:46:52 -0400 (EDT) Adam K Kirchhoff [EMAIL PROTECTED] wrote: And a quick FYI: After making the changes below, mplayer still refuses to play back any DVDs. :-) I'll probably just wait till ATAnp and atapicam are working together nicely again before I continue fighting

Re: nfs tranfers hang in state getblck or nfsread

2003-08-28 Thread Alexander Leidinger
On Thu, 28 Aug 2003 08:54:07 -0400 (EDT) Robert Watson [EMAIL PROTECTED] wrote: Ok, so let me see if I have the sequence of events straight: (1) Boot a 4.8-RELEASE/STABLE NFS server (2) Boot a 5.1-RELEASE/CURRENT NFS client (3) Mount a file system using TCP NFSv3 (4) Reboot the client

Re: nfs tranfers hang in state getblck or nfsread

2003-08-25 Thread Alexander Leidinger
On Sun, 24 Aug 2003 23:59:58 -0400 Bill Moran [EMAIL PROTECTED] wrote: Mike B wrote: I'm running an nfs server from a freebsd 4.8 box and accessing in from a 5.1 client machine. On small transfers I usually have no problems but when I run a high bandwidth task (normalizing audio tracks)

patch against src from 20030802 to compile GENERIC with icc

2003-08-23 Thread Alexander Leidinger
Hi, I was able to compile most of GENERIC with icc. There are still some rough edges (it doesn't compile *.s because of a bug in my *.mk patch) and there's an internal error in icc for one file, but the patch offers enough to play with icc (or to help to improve the patch). The compile log (with

Re: ACPI on Tyan Motherboard

2003-08-19 Thread Alexander Leidinger
Stephen Montgomery-Smith schrieb: Actually the power-off button doesn't work at all under FreeBSD-current. (It is a soft power-off button that dmesg shows is detected by the OS.) Have you tried to hold the power-button a little bit longer? My power-button turn the system off when I pres it

Re: ACPI on Tyan Motherboard

2003-08-19 Thread Alexander Leidinger
On Tue, 19 Aug 2003 09:54:21 -0700 David O'Brien [EMAIL PROTECTED] wrote: Have you tried to hold the power-button a little bit longer? My power-button turn the system off when I pres it for ~4secs (but I haven't a Tyan board). Sorry but telling experiences with non-Tyan boards don't

Re: gcc ABI compliance (was: Re: Memory Mangement Problem in5.1-RELEASE)

2003-08-14 Thread Alexander Leidinger
On Tue, 5 Aug 2003 20:36:28 +0300 (EEST) Narvi [EMAIL PROTECTED] wrote: That might be so over in your reality, but over in this really there is tonns of paisn due to the changes and changing libstdc++.so major. Lets not get into promises about ABI stability Those problems are orthogonal.

Re: world broken with a gcc 3.2 world? (resolution)

2003-08-02 Thread Alexander Leidinger
On Thu, 31 Jul 2003 11:27:56 +0200 Alexander Leidinger [EMAIL PROTECTED] wrote: with a Jul 10 world, a clean /usr/obj and the sources as of yesterday I get ---snip--- /big/usr/src/contrib/gcc/dwarf2out.c:11739:75: missing terminating ' character /big/usr/src/contrib/gcc/dwarf2out.c:11741:71

world broken with a gcc 3.2 world?

2003-07-31 Thread Alexander Leidinger
Hi, with a Jul 10 world, a clean /usr/obj and the sources as of yesterday I get ---snip--- /big/usr/src/contrib/gcc/dwarf2out.c:11739:75: missing terminating ' character /big/usr/src/contrib/gcc/dwarf2out.c:11741:71: warning: multi-line string litera ls are deprecated

gcc ABI compliance (was: Re: Memory Mangement Problem in5.1-RELEASE)

2003-07-26 Thread Alexander Leidinger
On Fri, 25 Jul 2003 23:22:00 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Didn't the GNU people say they had to change it to be more ABI compliant with the 'standard'? I will believe that when they upgrade their FORTRAN compiler to be more compliant with 'the standard'. Some standards

Re: rpcinfo

2003-07-21 Thread Alexander Leidinger
On Fri, 18 Jul 2003 02:14:18 +0200 Pawel Worach [EMAIL PROTECTED] wrote: Danny Braniss wrote: I just run rpcinfo: # rpcinfo rpcinfo: can't contact rpcbind: RPC: Port mapper failure - RPC: Success :=) This really belongs in questions@, make sure you have rpcbind_enable=YES in

Re: Why doesn't background fsck work ?

2003-06-22 Thread Alexander Leidinger
On Thu, 19 Jun 2003 00:25:22 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Then you reboot. Then you start BG fsck again. Then you panic again. Repeat this until a human intervenes and manually runs a full FG fsck on the disk before letting it be used, and/or someone adds a count-down

Re: Re Regression: Playing QT files from mplayer stopped working in5.1

2003-06-09 Thread Alexander Leidinger
On Mon, 9 Jun 2003 10:28:33 +0200 [EMAIL PROTECTED] (Ted Lindgreen) wrote: However, I guess that mplayer has had this error already, but that a change in uthread_close.c as of May 31 has caused this problem to show up now. In particular: the unprotected usage of a very large value of fd in

Re: Re Regression: Playing QT files from mplayer stopped working in5.1

2003-06-09 Thread Alexander Leidinger
On Mon, 9 Jun 2003 14:33:11 +0200 [EMAIL PROTECTED] (Ted Lindgreen) wrote: I've tested it as cleanly as possible (make update, apply patch, make world/kernel, and portupgrade -f multimedia/mplayer). Is works fine and I haven't found any complications. I think it's save to commit. Someone

Re: Re Regression: Playing QT files from mplayer stopped working in5.1

2003-06-09 Thread Alexander Leidinger
On Mon, 9 Jun 2003 13:54:21 +0300 Ruslan Ermilov [EMAIL PROTECTED] wrote: This patch looks great. Please commit it. Done (rev 1.16). Bye, Alexander. -- Where do you think you're going today? http://www.Leidinger.net Alexander @ Leidinger.net GPG

Re: Re Regression: Playing QT files from mplayer stopped working in5.1

2003-06-09 Thread Alexander Leidinger
On Mon, 9 Jun 2003 13:07:44 -0500 (CDT) [EMAIL PROTECTED] wrote: I have mplayer in 4.8-STABLE and 5.1-RC1. What specifically would you like? The maintainer of mplayer is already looking into the problem. mplayer tries to close a file description which isn't open... it isn't even in the table of

Re: USB printing mangles printjob :-(

2003-06-06 Thread Alexander Leidinger
On Thu, 5 Jun 2003 13:49:25 +0200 Bernd Walter [EMAIL PROTECTED] wrote: If I send that file to the printer via the parallel port, it prints perfectly. If I send it via USB/ulpt there are corrupted bytes in the job which mess up the printout in various ways. I've seen this too on

VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
Hi, is there a way to teach our ACPI implementation about [EMAIL PROTECTED]:7:4: class=0x068000 card=0x chip=0x30571106 rev=0x40 hdr=0x00 vendor = 'VIA Technologies Inc' device = 'VT82C686A/B ACPI Power Management Controller' class= bridge subclass = PCI-unknown

Re: VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
On Thu, 05 Jun 2003 07:45:03 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Be aware that if your machine is a B (82C686B), then you have It is. the buggy version of the chip; you need to eiter not use the second IDE channel for anything, or you need a BIOS update, or Not using the second IDE

Re: VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
On Thu, 05 Jun 2003 11:33:13 -0400 (EDT) John Baldwin [EMAIL PROTECTED] wrote: On 05-Jun-2003 Alexander Leidinger wrote: Hi, is there a way to teach our ACPI implementation about [EMAIL PROTECTED]:7:4: class=0x068000 card=0x chip=0x30571106 rev=0x40 hdr=0x00 vendor

Re: VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
On Thu, 05 Jun 2003 14:57:19 -0500 Jeremy Messenger [EMAIL PROTECTED] wrote: Do'h! You are right that I didn't check in /usr/src/sys/conf/.. It does exist and I am doing the rebuild kernel right now.. Thanks.. Here's the result: # dmesg | grep via

Re: VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
On Thu, 05 Jun 2003 10:14:39 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Alexander Leidinger wrote: Terry Lambert [EMAIL PROTECTED] wrote: Be aware that if your machine is a B (82C686B), then you have It is. I'm not that sure anymore... see below. the buggy version of the chip

Re: VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
On Thu, 05 Jun 2003 10:14:39 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Here's the German page: http://www.hardtecs4u.com/reviews/2001/ep8kta3-mod/index12.php Basically: o Disable PCI master read caching o Lower PCI latency to 0-32 o Disable PCI delay transaction

Re: VIA ACPI power management controller

2003-06-06 Thread Alexander Leidinger
On Fri, 6 Jun 2003 10:25:55 -0400 (EDT) Matthew N. Dodd [EMAIL PROTECTED] wrote: This is what I'll likely commit in the short term. [globally disable the check with a sysctl] To have this at boot time we have to set it in loader.conf, but then we not only do not check for viapm, we also don't

Re: 5.1-RELEASE TODO

2003-06-03 Thread Alexander Leidinger
On Mon, 02 Jun 2003 07:09:44 -0300 Daniel C. Sobral [EMAIL PROTECTED] wrote: I hadn't any program running with legitimate access to /mnt and I have no program running which accesses a random filesystem path, so no vnodes should have been open then. Alas, lsof (ports) would be a better

Re: 5.1-RELEASE TODO

2003-06-02 Thread Alexander Leidinger
On Sun, 1 Jun 2003 09:00:13 -0400 (EDT) Robert Watson [EMAIL PROTECTED] wrote: Areas requiring immediate testing I already reported to -current that I wasn't able to umount a msdosfs slice a while ago (umount failed with busy and the slice was still mounted), last week I had the possibility

Re: 5.1-RELEASE TODO

2003-06-02 Thread Alexander Leidinger
On Sun, 01 Jun 2003 11:46:34 -0600 Scott Long [EMAIL PROTECTED] wrote: I've mounted many MSDOS filesystems recently without problems. Do have any other information about this? Did you verify that there were no open vnodes on the filesystem? I just copied 13 GB from the msdosfs to an ufs

Re: 5.1-RELEASE TODO

2003-06-02 Thread Alexander Leidinger
On Sun, 01 Jun 2003 11:46:34 -0600 Scott Long [EMAIL PROTECTED] wrote: I've mounted many MSDOS filesystems recently without problems. Do have any other information about this? Did you verify that there were no open vnodes on the filesystem? Simply mounting, reading and umount the fs works:

Re: 5.1-RELEASE TODO

2003-06-02 Thread Alexander Leidinger
On 02 Jun 2003 17:38:28 +1000 Mark Sergeant [EMAIL PROTECTED] wrote: Umm shouldn't you be trying to umount /mnt ? I retested this and now used /mnt in the umount invocation... (blushI hope I'm awake now./blush). It umounts now successfully. I noticed some commits to the vfs layer between my

Re: libthr and 1:1 threading.

2003-04-02 Thread Alexander Leidinger
On Tue, 01 Apr 2003 23:28:01 -0800 Terry Lambert [EMAIL PROTECTED] wrote: The primary performance reasoning behind a 1:1 kernel threading implementation, relative to the user space single kernel entry scheduler in the libc_r implementation is SMP scalability for threaded applications. I

Re: optimization/10189: pentium4 breaks suns libm code for__ieee754_pow(double x, double y)

2003-03-26 Thread Alexander Leidinger
On 26 Mar 2003 13:01:18 - [EMAIL PROTECTED] wrote: Synopsis: pentium4 breaks suns libm code for __ieee754_pow(double x, double y) [...] FreeBSD src tree; and (c) that really cares about building FreeBSD src with special CPU settings (do you guys really see enough speedup to warrant

Re: several background fsck panics

2003-03-25 Thread Alexander Leidinger
On Tue, 25 Mar 2003 16:04:07 +0100 Alexander Langer [EMAIL PROTECTED] wrote: We claim background fsck as a cool new feature in the release notes, which is even the DEFAULT, including WC on ATA disks, which is ALSO the default. So , and if this is broken, there is a serious design flaw, which

Re: Sendmail and backups

2003-03-10 Thread Alexander Leidinger
On Mon, 10 Mar 2003 09:01:55 -0800 Gregory Neil Shapiro [EMAIL PROTECTED] wrote: cfowler Is there a way to configure sendmail on my 4.7 system to keep a backup cfowler of all mail going out? http://www.sendmail.org/faq/section4.html#4.20 What about

Re: Do we still have a FIFO / named pipe problem?

2003-03-09 Thread Alexander Leidinger
On Sat, 15 Feb 2003 23:56:50 +0100 Simon 'corecode' Schubert [EMAIL PROTECTED] wrote: Lately Bruce Evans wrote: This change makes such opens bogusly time out after 1 second (unless there is already a writer). There seems to be a race in fifo_open(): opens for read don't terminate

Re: [Fwd: mkisofs | burncd not working in 5.0 ?]

2003-02-26 Thread Alexander Leidinger
On Tue, 25 Feb 2003 20:56:25 +0100 David Vidal Rodríguez [EMAIL PROTECTED] wrote: Alexander Leidinger wrote: Please try the patch in from the mail to -current with the Message-ID [EMAIL PROTECTED] and report if it works for you. I've applied the patch included here, but it leads

Re: [Fwd: mkisofs | burncd not working in 5.0 ?]

2003-02-25 Thread Alexander Leidinger
On Tue, 25 Feb 2003 02:48:31 +0100 David Vidal Rodríguez [EMAIL PROTECTED] wrote: (forwarded from the NG comp.unix.bsd.freebsd.misc, from which I got no answer) Hi! I'm somehow surprised that the following command pipe doesn't work any more in 5.0R: $ mkisofs -J -r mydir | burncd -f

Re: Mounting Root fails with error 22 (EINVAL)

2003-02-24 Thread Alexander Leidinger
On Sun, 23 Feb 2003 17:41:07 +0100 (CET) Soeren Schmidt [EMAIL PROTECTED] wrote: It seems that I managed to break the tagged queueing support somehow, so please disable tags while I look hunt for the problem.. For some of us it is broken since long ago... as you know. I hope you find the

Re: named chroot rcNG devfs

2003-02-16 Thread Alexander Leidinger
On Sun, 16 Feb 2003 03:09:46 +0100 [EMAIL PROTECTED] wrote: On the other hand shared libraries are needed (or a port that supports linking bind statically...) cd /usr/ports/net/bind[89] make clean make CFLAGS+=-static -DPORT_REPLACES_BASE_BIND8 make install i don't like

Re: named chroot rcNG devfs

2003-02-16 Thread Alexander Leidinger
On Fri, 14 Feb 2003 09:31:57 -0800 Gordon Tetlow [EMAIL PROTECTED] wrote: On Tue, Feb 11, 2003 at 06:59:31PM +0100, Alexander Leidinger wrote: Hi, /etc/rc.d/named copies /dev with pax to the named chroot directory. This is obviously wrong with devfs, isn't it? You should read

Re: GCC 3.2.2 import -- questions

2003-02-11 Thread Alexander Leidinger
On Mon, 10 Feb 2003 22:48:31 -0500 Rahul Siddharthan [EMAIL PROTECTED] wrote: To the OP -- any speed improvement from gcc 3.2.1 to 3.2.2 would probably be marginal. If some particular port really bothers you with its slow performance, try recompiling (though it's unlikely to help), otherwise

named chroot rcNG devfs

2003-02-11 Thread Alexander Leidinger
Hi, /etc/rc.d/named copies /dev with pax to the named chroot directory. This is obviously wrong with devfs, isn't it? Bye, Alexander. -- Where do you think you're going today? http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518

Re: Do we still have a FIFO / named pipe problem?

2003-02-10 Thread Alexander Leidinger
On Mon, 10 Feb 2003 04:40:34 +1100 (EST) Bruce Evans [EMAIL PROTECTED] wrote: Untested fix for this and rev.1.79, and for a similar race in blocking opens of named pipes for reading: Solves my problem. Bye, Alexander. -- Actually, Microsoft is sort of a mixture between the Borg and the

Do we still have a FIFO / named pipe problem?

2003-02-09 Thread Alexander Leidinger
Hi, ports/mail/gensig has a problem. It is supposed to create a named pipe (~/.signature) and wait for an application to read from the pipe. It allows to have a random signature on every mail. On 4.x and on 5-current from last year it works as expected. But since the end of the last year or the

Re: Missing semicolon in generated insn-recog.c file.

2003-02-04 Thread Alexander Leidinger
On Mon, 3 Feb 2003 18:59:46 +0100 Alexander Leidinger [EMAIL PROTECTED] wrote: I tried a buildworld yesterday and today, and I got: ---snip--- gcc -I/big/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -DHAVE_C ONFIG_H -DTARGET_NAME=\i386-undermydesk-freebsd\ -DIN_GCC -c insn

Missing semicolon in generated insn-recog.c file.

2003-02-03 Thread Alexander Leidinger
Hi, I tried a buildworld yesterday and today, and I got: ---snip--- gcc -I/big/usr/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -DHAVE_C ONFIG_H -DTARGET_NAME=\i386-undermydesk-freebsd\ -DIN_GCC -c insn-recog.c -o insn-recog.o insn-recog.c: In function `split_2': insn-recog.c:52213:

Re: pam_ssh broken in recent (as of yesterday) -current?

2003-02-01 Thread Alexander Leidinger
On Mon, 6 Jan 2003 11:17:23 +0100 Alexander Leidinger [EMAIL PROTECTED] wrote: On Fri, 03 Jan 2003 03:19:28 +0100 Dag-Erling Smorgrav [EMAIL PROTECTED] wrote: Alexander Leidinger [EMAIL PROTECTED] writes: Dag-Erling, any ideas? http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/46628

Re: Somebody: port this: http://www.theinquirer.net/?article=7231

2003-01-17 Thread Alexander Leidinger
On Wed, 15 Jan 2003 19:32:39 +0100 Poul-Henning Kamp [EMAIL PROTECTED] wrote: They have a beta test access to vtune: http://www.intel.com/software/products/vtune/vlin/ Bye, Alexander. -- I believe the technical term is Oops! http://www.Leidinger.net

Re: Somebody: port this: http://www.theinquirer.net/?article=7231

2003-01-17 Thread Alexander Leidinger
On Fri, 17 Jan 2003 10:01:35 -0500 (EST) Andrew Gallatin [EMAIL PROTECTED] wrote: I signed up and waded through tons of slow https js laden forms, only to finally be presented with nothing but a self-extracting .exe file which looks like a patch for the windows data-collector. Me too (but

Re: Somebody: port this: http://www.theinquirer.net/?article=7231

2003-01-17 Thread Alexander Leidinger
On Fri, 17 Jan 2003 10:25:08 -0500 (EST) Andrew Gallatin [EMAIL PROTECTED] wrote: Let me know if you hear anything. Actually I'm downloading it at the moment. First I got a response it may need upto 24h until you can download it after registration and then a try again, it should work now. I

Re: Somebody: port this: http://www.theinquirer.net/?article=7231

2003-01-16 Thread Alexander Leidinger
On Wed, 15 Jan 2003 10:39:22 -0800 Kris Kennaway [EMAIL PROTECTED] wrote: The tool costs $699 and Intel said it will be available in February. That would make it somewhat difficult, no? lang/icc also does cost money, but Intel has a free for non-commercial use license for it. If Intel also

Re: ATA seems to lock up the system at boot (KT133A)

2003-01-13 Thread Alexander Leidinger
On Sun, 12 Jan 2003 20:35:41 +0100 (CET) Soeren Schmidt [EMAIL PROTECTED] wrote: Could your Zip disk be missing or bad? Usually I don't have a zip disk in the drive at boot time... I give it a try (tomorrow). I've tried both here, works just fine on a newly compiled current It

Re: ATA seems to lock up the system at boot (KT133A)

2003-01-13 Thread Alexander Leidinger
On Mon, 13 Jan 2003 11:51:20 +0100 (CET) Soeren Schmidt [EMAIL PROTECTED] wrote: It seems I have no luck... not even that you can't reproduce the tagged queueing problem, you also can't reproduce this problem. Whats wrong with my system? :-( Dunno, but it is the 13'th today :) I don't

Re: ATA seems to lock up the system at boot (KT133A)

2003-01-13 Thread Alexander Leidinger
On Mon, 13 Jan 2003 11:51:20 +0100 (CET) Soeren Schmidt [EMAIL PROTECTED] wrote: Thats without media in the ZIP drive, boots just fine, system in VIA 694 based so that should give me enough trouble :) I tried with recent sources and a clean (make clean; make clean; make cleandir; make

ATA seems to lock up the system at boot (KT133A)

2003-01-12 Thread Alexander Leidinger
Hi, a dmesg from a working kernel (from Jan 5) shows: ---snip--- acpi_cpu: CPU throttling enabled, 2 steps from 100% to 50.0% ad0: 58644MB IC35L060AVER07-0 [119150/16/63] at ata0-master tagged UDMA100 afd0: 96MB IOMEGA ZIP 100 ATAPI [32/64/96] at ata1-master PIO0 Waiting 6 seconds for SCSI

Re: ATA seems to lock up the system at boot (KT133A)

2003-01-12 Thread Alexander Leidinger
On Sun, 12 Jan 2003 06:49:18 -0800 walt [EMAIL PROTECTED] wrote: Could your Zip disk be missing or bad? Usually I don't have a zip disk in the drive at boot time... I give it a try (tomorrow). Bye, Alexander. -- The computer revolution is over. The computers won.

Re: USB problems after resume from suspend in current as of January 9

2003-01-11 Thread Alexander Leidinger
On 11 Jan 2003 16:20:45 +1100 Mark Sergeant [EMAIL PROTECTED] wrote: Both are turned on yes. Restarting both doesn't work, nothing works when plugged into the usb ports after a resume. usbd automatically starts moused for an usb mouse. Maybe the existing moused and the moused started from usbd

Re: 5.0 without swap

2003-01-11 Thread Alexander Leidinger
On Sat, 11 Jan 2003 11:08:19 +0100 Miguel Mendez [EMAIL PROTECTED] wrote: Having no swap will prevent you from getting crashdumps in case of panic which, if you run 5.0, is not that unusual. What about generating a swap partition on the disk, but _not_ adding it to /etc/fstab. This way you can

Re: font failure in X

2003-01-07 Thread Alexander Leidinger
On Tue, 7 Jan 2003 02:46:49 +0100 (MET) Roine Thunberg [EMAIL PROTECTED] wrote: I recently installed 5.0-RC2 and X from ports and some programs too. Now I have trouble with huge font sizes. Mainly in webbrowsers. But it's only some kind of fonts. I just can't find the options and I can't see

Re: pam_ssh broken in recent (as of yesterday) -current?

2003-01-06 Thread Alexander Leidinger
On Fri, 03 Jan 2003 03:19:28 +0100 Dag-Erling Smorgrav [EMAIL PROTECTED] wrote: Alexander Leidinger [EMAIL PROTECTED] writes: Dag-Erling, any ideas? http://www.freebsd.org/cgi/query-pr.cgi?pr=bin/46628 Fixed a couple of minutes ago. Just tested with a world from yesterday: it doesn't

Re: kernel compile bloat

2003-01-05 Thread Alexander Leidinger
On Sun, 5 Jan 2003 22:14:26 +1000 (EST) Andy Farkas [EMAIL PROTECTED] wrote: Why does compiling a kernel (make buildkernel KERNCONF=GENERIC) take 7 times as much space on 5.0-current than it does on 4.7-stable? On a 4.7-stable box, /usr/obj/usr/src/sys totals 34 MB. On a 5.0-current

Re: pam_ssh broken in recent (as of yesterday) -current?

2002-12-25 Thread Alexander Leidinger
On Tue, 24 Dec 2002 16:48:28 +0100 Alexander Leidinger [EMAIL PROTECTED] wrote: Yesterday I've updated my -current box and now xdm gets a signal 11 when I use pam_ssh. My previous world was from Dec. 11. I don't look more into this issue today, but I've seen changes to ssh (lastlog issue

pam_ssh broken in recent (as of yesterday) -current?

2002-12-24 Thread Alexander Leidinger
Hi, first: Merry Chrismas (or a happy holliday if you don't care about Christmas). Yesterday I've updated my -current box and now xdm gets a signal 11 when I use pam_ssh. My previous world was from Dec. 11. I don't look more into this issue today, but I've seen changes to ssh (lastlog issue)

Re: More missing perl dependencies

2002-12-13 Thread Alexander Leidinger
On Thu, 12 Dec 2002 14:25:42 -0800 Kris Kennaway [EMAIL PROTECTED] wrote: http://bento.freebsd.org/errorlogs/i386-5-latest/modlogan-0.8.1.log In the case of modlogan it may be a bug in the configure script (I haven't looked at it). I'm not aware of a runtime dependency, so a quick fix

Re: More missing perl dependencies

2002-12-12 Thread Alexander Leidinger
On Wed, 11 Dec 2002 17:06:07 -0800 Kris Kennaway [EMAIL PROTECTED] wrote: http://bento.freebsd.org/errorlogs/i386-5-latest/modlogan-0.8.1.log In the case of modlogan it may be a bug in the configure script (I haven't looked at it). I'm not aware of a runtime dependency, so a quick fix would be

Re: Asking for tester (small patch to chown(8)/chgrp(1))

2002-11-20 Thread Alexander Leidinger
On Tue, 19 Nov 2002 10:27:00 -0800 David Schultz [EMAIL PROTECTED] wrote: I'm concerned about the used character: -r is similiar to -R Yes, `-r' would be a very poor choice for the reason you state. Agreed, but the precedent has already been set by touch(1) and truncate(1). If we're

Re: Asking for tester (small patch to chown(8)/chgrp(1))

2002-11-19 Thread Alexander Leidinger
On Sun, 17 Nov 2002 21:01:33 +0100 (CET) Oliver Fromme [EMAIL PROTECTED] wrote: Alexander Leidinger [EMAIL PROTECTED] wrote: Oliver Fromme [EMAIL PROTECTED] wrote: The patch adds an option -r to chown(8) and chgrp(1), which does pretty much the same as the -r option of touch(1

Re: Asking for tester (small patch to chown(8)/chgrp(1))

2002-11-17 Thread Alexander Leidinger
On Sat, 16 Nov 2002 12:29:20 +0100 (CET) Oliver Fromme [EMAIL PROTECTED] wrote: The patch adds an option -r to chown(8) and chgrp(1), which does pretty much the same as the -r option of touch(1) and truncate(1). Basically, it let's you copy ownerships and group memberships from one file to

Re: seeking help to rewrite the msdos filesystem

2002-11-13 Thread Alexander Leidinger
On Wed, 13 Nov 2002 23:17:53 +1100 (EST) Bruce Evans [EMAIL PROTECTED] wrote: My times are with some small improvements which I think don't affect the tests much (they affect latency more than throughput). With lots of small files (smaller than the block size), clustering doesn't makes even

Re: ssh-agent broken with pam_ssh for xdm (+ fix for ssh-agent.c)

2002-11-04 Thread Alexander Leidinger
On Mon, 04 Nov 2002 12:11:40 +0100 Dag-Erling Smorgrav [EMAIL PROTECTED] wrote: Dag-Erling Smorgrav [EMAIL PROTECTED] writes: There seems to be a bug in our pam_ssh(8). It switches to user privileges when reading the user's keys, but switches back before starting the agent, instead of

ssh-agent broken with pam_ssh for xdm (+ fix for ssh-agent.c)

2002-11-03 Thread Alexander Leidinger
Hi, [Markus: this is on FreeBSD-current with $OpenBSD: ssh-agent.c,v 1.105 2002/10/01 20:34:12 markus Exp $] I use pam_ssh in pam.d/xdm and after an update to todays -current, it doesn't add my key anymore. In /var/log/messages I see the following if I try a ssh-add -l: ---snip---

Re: Floating point problems

2002-10-25 Thread Alexander Leidinger
On Fri, 25 Oct 2002 03:43:03 -0700 Juli Mallett [EMAIL PROTECTED] wrote: FWIW, this fixes every reproducable hang I've had with X and related. AOL Bye, Alexander. -- The dark ages were caused by the Y1K problem. http://www.Leidinger.net Alexander @

page fault while in vm86 mode

2002-10-18 Thread Alexander Leidinger
Hi, this is -current as of Oct 8. Fatal trap 12: page fault while in vm86 mode fault virtual address = 0xc4182 fault code = user read, page not present instruction pointer = 0xc000:0x4182 stack pointer = 0x0:0xfc0 frame pointer = 0x0:0x0 code segment

Re: Xfree86, GNOME, KDE freezing over

2002-10-16 Thread Alexander Leidinger
On Tue, 15 Oct 2002 11:39:22 -0700 (PDT) Saurabh Gupta [EMAIL PROTECTED] wrote: Any help will be very much appreciated. When it freezes again, wait some minutes (~10). If it unfreezes then, it is a known problem. And if you see some aborts (signal 6) of XFree86, then it is a known problem too.

Re: X problems 5.0... -RELEASE?

2002-10-14 Thread Alexander Leidinger
On 13 Oct 2002 23:00:08 -0700 Eric Anholt [EMAIL PROTECTED] wrote: Could anyone who is having stability issues with X please email me privately if they are using either -current before September or -stable? If not, without some sort of hints of where an issue really is, I'm going to chalk

Re: sorry state of Xserver in 5.0

2002-10-09 Thread Alexander Leidinger
On Wed, 09 Oct 2002 14:27:45 +0300 Maxim Sobolev [EMAIL PROTECTED] wrote: SIGFPE crashes still happed even on 2-weeks old kernel, but they are much less frequent. I'll try to go back in time to 4-weeks old kernel to see if it helps. As a data point... I still get signal 6, even without type1

Re: sorry state of Xserver in 5.0

2002-10-08 Thread Alexander Leidinger
On Tue, 8 Oct 2002 09:04:27 -0400 (EDT) Andrew Gallatin [EMAIL PROTECTED] wrote: Question: Did the Bezier too big stuff start when people upgraded their X server port, or when they upgraded their kernel? (I just started running -current on an x86 last week) I have a sneaking suspicion that

Re: sorry state of Xserver in 5.0

2002-10-08 Thread Alexander Leidinger
On Tue, 8 Oct 2002 15:27:27 +0200 Alexander Leidinger [EMAIL PROTECTED] wrote: I'm going to downgrade sys/i386/i386/machdep.c to 1.539 now and have a look how the system behaves. Doesn't work, I still get signal 6. Bye, Alexander. -- Yes, I've heard of decaf. What's your point

Re: sorry state of Xserver in 5.0

2002-10-08 Thread Alexander Leidinger
On Tue, 8 Oct 2002 10:56:54 -0400 (EDT) Andrew Gallatin [EMAIL PROTECTED] wrote: I'm going to downgrade sys/i386/i386/machdep.c to 1.539 now and have a look how the system behaves. Doesn't work, I still get signal 6. That won't fix signal 6. That will just fix the kernel

Re: The official GEOM is in the tree speech.

2002-10-06 Thread Alexander Leidinger
On Sat, 05 Oct 2002 22:39:03 +0200 Poul-Henning Kamp [EMAIL PROTECTED] wrote: One hand for your own code, and one hand for the infrastructure. We have several areas of the kernel which is in disrepair, the worst is buf/VM, but there are others as well. We also have people who are willing

Re: The official GEOM is in the tree speech.

2002-10-06 Thread Alexander Leidinger
On Sun, 06 Oct 2002 14:38:01 +0200 Poul-Henning Kamp [EMAIL PROTECTED] wrote: We're at the point where a public page with things which need a volunteer would be nice, aren't we (yes, something like your JKH page but not only for kernel parts)? Well, for that to happen it takes two things:

Re: Meaning of net.inet.tcp.inflight_debug output?

2002-10-05 Thread Alexander Leidinger
On Fri, 4 Oct 2002 11:34:46 -0700 (PDT) Matthew Dillon [EMAIL PROTECTED] wrote: When you turn the debugging on it will print out various parameters used to calculate the bandwidth window. The higher the debug value, the more often it prints out the stats (assuming a TCP is

Re: signal 6 to XFree86 (Re: cvs commit: src/tools/tools...)

2002-10-05 Thread Alexander Leidinger
On Fri, 4 Oct 2002 19:35:59 -0700 Kris Kennaway [EMAIL PROTECTED] wrote: I had one today, they have decreased significantly since removing the Type1 module from my server configuration. I've also found that disabling xscreensaver/xlockmore helps - or just set it to blank screen only.

<    1   2   3   4   5   6   7   >