Bug#526823: libc6: Not fixed in 2.9-10

2009-05-06 Thread C Bispham
Package: libc6
Version: 2.9-10
Severity: normal


I am still experiencing this problem with libc6 2.9-10. I first saw it 
in 2.9-4. 2.9-6 fixed it. It broke again with 2.9-9 and the upgrade to 
2.9-10 did not help. The opendns work-around does work for me (but I 
really don't want to use opendns). Thanks.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libc6 depends on:
ii  libgcc1   1:4.3.3-3  GCC support library

libc6 recommends no packages.

Versions of packages libc6 suggests:
pn  glibc-doc none (no description available)
ii  libc6-i6862.9-10 GNU C Library: Shared libraries [i
ii  locales   2.9-4  GNU C Library: National Language (

-- debconf information:
* glibc/upgrade: true
  glibc/disable-screensaver:
  glibc/restart-failed:
* glibc/restart-services: openbsd-inetd exim4 cups cron atd



-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526823: libc6: Not fixed in 2.9-10

2009-05-06 Thread Aurelien Jarno
On Tue, May 05, 2009 at 11:54:43PM -0700, C Bispham wrote:
 Package: libc6
 Version: 2.9-10
 Severity: normal
 
 
 I am still experiencing this problem with libc6 2.9-10. I first saw it 
 in 2.9-4. 2.9-6 fixed it. It broke again with 2.9-9 and the upgrade to 
 2.9-10 did not help. The opendns work-around does work for me (but I 
 really don't want to use opendns). Thanks.

Which DNS server are you currently using? Have you tried to use 
single-request into /etc/resolv.conf? 

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#521688: this is fixed upstream

2009-05-06 Thread Török Edwin
This is fixed in SVN r5063 in ClamAV upstream, by setting EF_ALIGNMENT=8
on non-x86 platforms.

Best regards,
--Edwin



-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



r3460 - in glibc-package/trunk/debian: . patches/kfreebsd

2009-05-06 Thread Petr Salinger
Author: ps-guest
Date: 2009-05-06 09:39:30 + (Wed, 06 May 2009)
New Revision: 3460

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
Log:
* kfreebsd/local-sysdeps.diff: update to revision 2501 (from glibc-bsd).



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2009-05-05 14:41:43 UTC (rev 
3459)
+++ glibc-package/trunk/debian/changelog2009-05-06 09:39:30 UTC (rev 
3460)
@@ -1,5 +1,8 @@
 eglibc (2.9-12) unstable; urgency=low
 
+  [ Petr Salinger ]
+  * kfreebsd/local-sysdeps.diff: update to revision 2501 (from glibc-bsd).
+
   * 
 
  -- Aurelien Jarno aure...@debian.org  Tue, 05 May 2009 15:40:40 +0200

Modified: glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
===
--- glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff  
2009-05-05 14:41:43 UTC (rev 3459)
+++ glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff  
2009-05-06 09:39:30 UTC (rev 3460)
@@ -3125,7 +3125,7 @@
 +
 --- /dev/null
 +++ b/ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/fcntl.h
-@@ -0,0 +1,145 @@
+@@ -0,0 +1,151 @@
 +/* O_*, F_*, FD_* bit values for FreeBSD.
 +   Copyright (C) 1991-1992, 1997, 2002 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -3146,52 +3146,56 @@
 +   02111-1307 USA.  */
 +
 +#ifndef   _FCNTL_H
-+#error Never use bits/fcntl.h directly; include fcntl.h instead.
++# error Never use bits/fcntl.h directly; include fcntl.h instead.
 +#endif
 +
 +#include sys/types.h
++#include bits/wordsize.h
++#ifdef __USE_GNU
++# include bits/uio.h
++#endif
 +
-+/* File access modes for `open' and `fcntl'.  */
-+#define   O_RDONLY0   /* Open read-only.  */
-+#define   O_WRONLY1   /* Open write-only.  */
-+#define   O_RDWR  2   /* Open read/write.  */
 +
++/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
++   located on an ext2 file system */
++#define O_ACCMODE0003
++#define O_RDONLY   00
++#define O_WRONLY   01
++#define O_RDWR 02
++#define O_CREAT 01000 /* not fcntl */
++#define O_EXCL  04000 /* not fcntl */
++#define O_NOCTTY  010 /* not fcntl */
++#define O_TRUNC 02000 /* not fcntl */
++#define O_APPEND  010
++#define O_NONBLOCK 04
++#define O_NDELAY  O_NONBLOCK
++#define O_SYNC   0200
++#define O_FSYNCO_SYNC
++#define O_ASYNC  0100
 +
-+/* Bits OR'd into the second argument to open.  */
-+#define   O_CREAT 0x0200  /* Create file if it doesn't exist.  */
-+#define   O_EXCL  0x0800  /* Fail if file already exists.  */
-+#define   O_TRUNC 0x0400  /* Truncate file to zero length.  */
-+#define   O_NOCTTY0x8000  /* Don't assign a controlling terminal. 
 */
-+#ifdef__USE_MISC
-+#define   O_ASYNC 0x0040  /* Send SIGIO to owner when data is 
ready.  */
-+#define   O_FSYNC 0x0080  /* Synchronous writes.  */
-+#define   O_SYNC  O_FSYNC
-+#define   O_SHLOCK0x0010  /* Open with shared file lock.  */
-+#define   O_EXLOCK0x0020  /* Open with shared exclusive lock.  */
-+#define O_NOFOLLOW0x0100  /* Don't follow symlinks.  */
-+#define   O_DIRECT0x0001  /* Attempt to bypass buffer cache */
++#ifdef __USE_GNU
++# define O_DIRECT 020 /* Direct disk access.  */
++enum { O_DIRECTORY = 0 }; /* Must be a directory.  */
++enum { O_NOATIME = 0};  /* Do not set atime.  */
++# define O_NOFOLLOW  0400 /* Do not follow links.  */
 +#endif
 +
-+enum { O_DIRECTORY = 0 };
-+
-+/* File status flags for `open' and `fcntl'.  */
-+#define   O_APPEND0x0008  /* Writes append to the file.  */
-+#define   O_NONBLOCK  0x0004  /* Non-blocking I/O.  */
-+
 +#ifdef __USE_BSD
-+#define   O_NDELAYO_NONBLOCK
++#define O_SHLOCK  020 /* Open with shared file lock.  */
++#define O_EXLOCK  040 /* Open with shared exclusive lock.  */
 +#endif
 +
-+/* Since 'off_t' is 64-bit, O_LARGEFILE is a no-op.  */
-+#define O_LARGEFILE   0
-+
-+/* FreeBSD doesn't have smaller grained synchronicity control than per file.
-+   fdatasync() is equivalent to fsync(), so we define O_DSYNC == O_SYNC.  */
++/* For now FreeBSD has synchronisity options for data and read operations.
++   We define the symbols here but let them do the same as O_SYNC since
++   this is a superset.*/
 +#if defined __USE_POSIX199309 || defined __USE_UNIX98
 +# define O_DSYNC  O_SYNC  /* Synchronize data.  */
-+# define O_RSYNC  O_SYNC  /* Synchronize read operations.  */
++# define O_RSYNC  O_SYNC  /* Synchronize read operations.  */
 

Bug#527230: libc6: segfaults in libc-2.9.so when executing cyrus-imapd

2009-05-06 Thread Bastian Blank
On Wed, May 06, 2009 at 11:02:24AM +0200, Guenter Trimmel wrote:
 Package: libc6
 Version: 2.9-4
 Severity: critical
 Justification: breaks unrelated software

A tool linking the libc is _never_ unrelated software.

Bastian

-- 
... The prejudices people feel about each other disappear when they get
to know each other.
-- Kirk, Elaan of Troyius, stardate 4372.5



-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#527230: libc6: segfaults in libc-2.9.so when executing cyrus-imapd

2009-05-06 Thread Günter Trimmel


Am 06.05.2009 um 12:18 schrieb Aurelien Jarno:


Are you sure saslauthd is running? Have a look to:
http://www.open-xchange.com/forum/showthread.php?t=690



No, i'm not running saslauthd, just sasldb for authentication. But  
you've pointed me to the right direction - i found a bug related to  
sasl2-bin, i'm pretty sure, this bug leads to this behaviour:


http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527161

I have the same problem, that the upgrade to sasl2-bin 2.1.22.dfsg1-23  
or libsasl2-2 2.1.22.dfsg1-23+b1 rendered all sasl related tools  
unusable.


I think this report can be closed.

Guenter



smime.p7s
Description: S/MIME cryptographic signature