Bug#386357: please use -DUNALIGNED_OK on amd64

2006-09-06 Thread dean gaudet
Package: zlib Version: 1.2.3-13 please define UNALIGNED_OK when building the amd64 target... unaligneds are very inexpensive on all intel and amd cpus. i benchmarked gzip -9 on linux-2.6.17.tar with this define and i see a 2.5% speedup on p4, a64, and a 9% speedup on core2. the zlib source

Bug#383102: segfault in max_open_files

2006-08-19 Thread dean gaudet
fyi this is the same segfault i was getting which is fixed by the patch i included in #382841 ... it also looks like the new upstream 0.6.1 / 0.10.1 includes the fix. -dean -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Bug#379678: sub-makes not passed -O2/etc flags

2006-07-24 Thread dean gaudet
Package: dcc Version: 1.2.74-2 if you look at the make output while building dcc package you'll see that none of the sub-makes have been passed the -O2 flag... so none of the cc lines have -O2 on them. this could very well be an upstream problem... but since the entire package is built in

Bug#376301: [patch] support non-ipv6 kernels

2006-07-24 Thread dean gaudet
the following patch fixes two bugs related to dccproc functioning when the kernel doesn't support AF_INET6. dcc_udp_bind is cloberring errno before using it... and is testing for the wrong errno... it needs to test for EAFNOSUPPORT. i probably should have dropped the EPFNOSUPPORT tests, but

Bug#379809: odd directory permissions

2006-07-25 Thread dean gaudet
Package: dejagnu Version: 1.4.4.cvs20060709-2 the following directories have odd permissions: # dpkg -L dejagnu | xargs ls -ld | grep ^drw- drw-r-xr-x5 root root 4096 Jul 25 11:42 /usr/share/dejagnu drw-r-xr-x2 root root 4096 Jul 25 11:42 /usr/share/dejagnu/baseboards drw-r-xr-x2

Bug#355178: just hit this on a 4G file

2006-07-25 Thread dean gaudet
i'm hitting this bug on a file which is only 4315422720 bytes... it'd be great if you could apply the patch before etch release... it fixes the problem. thanks! -dean -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Bug#380391: ntp insists on listening to every virtual interface

2006-07-29 Thread dean gaudet
Package: ntp Version: 1:4.2.2+dfsg-1 in 4.2.0* if you specified -L you could stop ntp from listening on virtual interfaces. sometime since then the upstream has added -L interface to specify the interface... but ntpd still insists on listening on every interface it finds! check out this

Bug#380391: more info

2006-07-29 Thread dean gaudet
hmm... it seems that 4.2.0 opened the broadcast address anyhow... it just avoided opening all the other interfaces when given -L. so really the only regression here is that it's opening way more fds than it needs to... especially if you give it -L eth0. oh btw -- if there are more than ~512

Bug#380540: sort: Warning: +number syntax is deprecated, please use -k number

2006-07-30 Thread dean gaudet
Package: crack Version: 5.0a-9 one of the scripts is tripping a sort warning for deprecated syntax: # Crack -nice 19 /etc/passwd Crack 5.0a: The Password Cracker. (c) Alec Muffett, 1991, 1992, 1993, 1994, 1995, 1996 System: Linux twinlark.arctic.org 2.6.16.27 #1 SMP Sat Jul 22 15:56:11 PDT 2006

Bug#380546: update-cracklib rewrites dictionaries even if no change

2006-07-30 Thread dean gaudet
Package: cracklib-runtime Version: 2.7-19 update-cracklib runs daily... and writes a new dictionary even if there's been no change to its input sources. if you have several wordlists installed this can take some time and cause extra churn for backups... please consider the patch below...

Bug#378182: mount -o nosuid,nodev /dev/shm

2006-08-02 Thread dean gaudet
On Thu, 3 Aug 2006, Petter Reinholdtsen wrote: [Dean Gaudet] /dev/shm should be mounted -o nosuid,nodev ... there's no reason to allow suid binaries or devices in /dev/shm. If I understand you correctly, you are proposing the change in the patch I attach here. I'm not sure what

Bug#378182: mount -o nosuid,nodev /dev/shm

2006-07-13 Thread dean gaudet
Package: initscripts Version: 2.86.ds1-14.1 /dev/shm should be mounted -o nosuid,nodev ... there's no reason to allow suid binaries or devices in /dev/shm. thanks -dean -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Bug#379199: debian-sys-maint password exposed every restart

2006-07-21 Thread dean gaudet
Package: mysql-server-5.0 Version: 5.0.22-3 every time i do /etc/init.d/mysql start or restart it runs the mysql_upgrade script... and even if the database has already been upgraded it always runs this: mysql_fix_privilege_tables --silent --user=$user --password=$password which of course

Bug#379472: please configure --enable-buffy-size

2006-07-23 Thread dean gaudet
Package: mutt Version: 1.5.12-1 please consider configuring mutt with --enable-buffy-size so that it doesn't rely on atime updates when determining if there's new mail. atimes are unreliable (consider a backup program -- it'll change the atimes) and a waste of disk i/o... mutt is the only

Bug#379472: please configure --enable-buffy-size

2006-07-23 Thread dean gaudet
On Sun, 23 Jul 2006, Christoph Berg wrote: Re: dean gaudet 2006-07-23 [EMAIL PROTECTED] please consider configuring mutt with --enable-buffy-size so that it doesn't rely on atime updates when determining if there's new mail. It should be make a configuration option. that'd be OK

Bug#356550: gpg does not need to be setuid root any more

2006-03-12 Thread dean gaudet
Package: gnupg Version: 1.4.2.2-1 mlock(2) is available to regular users since kernel 2.6.9... it would be cool if /usr/bin/gpg didn't install as setuid by default in that case -- perhaps by asking in a dialog if the admin wants it setuid or not. (i'm just using dpkg-statoverride for now, so

Bug#357522: mime_magic warnings about application/x-awk

2006-03-17 Thread dean gaudet
another workaround is to make a copy of /usr/share/file/magic.mime, i called mine /usr/share/file/magic.mime.php4 ... then comment out the awk regex line... then edit /etc/php4/apache/php.ini and somewhere in the [PHP] section add: mime_magic.magicfile = /usr/share/file/magic.mime.php4 ...

Bug#357561: use setsid() to detach from controlling tty

2006-03-17 Thread dean gaudet
Package: apache Version: 1.3.34-2 i'm not sure i understand the motivation behind patch 033_-F_NO_SETSID ... the problem in #244857 is a result of the following behaviour of setsid(2): On error, -1 is returned, and errno is set. The only error which can happen is EPERM. It is

Bug#506707: me too

2009-09-12 Thread dean gaudet
this is a fairly serious regression. -dean -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

<    1   2