[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#175529: marked as done (regex: re_compile_pattern gets segfault)



Your message dated Wed, 22 Jan 2003 00:17:54 -0500
with message-id <E18bDGs-0006Je-00@auric.debian.org>
and subject line Bug#175529: fixed in glibc 2.3.1-10
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 6 Jan 2003 09:03:59 +0000
>From jim@meyering.net Mon Jan 06 03:03:58 2003
Return-path: <jim@meyering.net>
Received: from smtp-out-4.wanadoo.fr (mel-rto4.wanadoo.fr) [193.252.19.23] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18VTAs-0001V8-00; Mon, 06 Jan 2003 03:03:58 -0600
Received: from mel-rta7.wanadoo.fr (193.252.19.61) by mel-rto4.wanadoo.fr (6.7.015)
        id 3E0C33FD00447A70; Mon, 6 Jan 2003 10:03:27 +0100
Received: from pi (80.13.35.11) by mel-rta7.wanadoo.fr (6.7.015)
        id 3E075B1B004E7F3C; Mon, 6 Jan 2003 10:03:27 +0100
Received: by pi (Postfix, from userid 1002)
	id 7BBF03FD0; Sun,  5 Jan 2003 10:06:08 +0100 (CET)
To: Debian Bug Tracking System <submit@bugs.debian.org>
Cc: Michael Stone <mstone@debian.org>
Subject: regex: re_compile_pattern gets segfault
From: Jim Meyering <jim@meyering.net>
Date: Sun, 05 Jan 2003 10:06:08 +0100
Message-ID: <[🔎] 85isx4dkzj.fsf@pi.meyering.net>
Lines: 405
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: Quoted-Printable
Delivered-To: submit@bugs.debian.org
X-Spam-Status: No, hits=3.9 required=5.0
	tests=DATE_IN_PAST_12_24,SPAM_PHRASE_00_01,UPPERCASE_50_75
	version=2.41
X-Spam-Level: ***

Package: libc6-dev
Version: 2.3.1-9
Severity: important
Tags: sid

Hi,

An hour or so ago I completed my first update of unstable after the
holidays and found that one of coreutils' configure-time run-tests of
regex is now failing.  This results in ./configure determining (rightly
so) that libc's regex.o code is unusable, and so the package (coreutils
in this case) ends up compiling and linking against its own version
of regex.c.  When I compile the sample script, below, with regex.c,
it works fine.  When linking it against libc, it segfaults.

This is certainly obvious to all of you, but ...
If the losing use of re_compile_pattern is not yet part of a test
case for glibc, I humbly suggest that you add it.

Regards,
Jim


-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux pi 2.4.19-xfs #1 SMP Son Okt 6 20:14:17 CEST 2002 i686
Locale: LANG=3DC, LC_CTYPE=3DC

Versions of packages libc6-dev depends on:
ii  libc6                         2.3.1-9    GNU C Library: Shared librar=
ies an

-- no debconf information

This demonstrates the failure:

  pi$ gcc -g re-test.c
  pi$ gdb a.out
  (gdb) r
  Starting program: /tmp/a.out

  Program received signal SIGSEGV, Segmentation fault.
  0x4008f9bb in memset () from /lib/libc.so.6
  (gdb) bt
  #0  0x4008f9bb in memset () from /lib/libc.so.6
  #1  0x400c4d4b in re_comp () from /lib/libc.so.6
  #2  0x400c4c69 in re_comp () from /lib/libc.so.6
  #3  0x400c432c in re_compile_pattern () from /lib/libc.so.6
  #4  0x0804845d in main () at re-test.c:330
  (gdb)

And this shows that it works fine when using the regex.c
=66rom coreutils-4.5.4.

  pi$ gcc -g re-test.c ~/work/fetish/cu/lib/regex.c
  pi$ ./a.out
  pi$

  pi$ cat re-test.c
#define PACKAGE_NAME "GNU coreutils"
#define PACKAGE_TARNAME "coreutils"
#define PACKAGE_VERSION "4.5.5"
#define PACKAGE_STRING "GNU coreutils 4.5.5"
#define PACKAGE_BUGREPORT "bug-coreutils@gnu.org"
#define PACKAGE "coreutils"
#define VERSION "4.5.5"
#define _GNU_SOURCE 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNAME 1
#define HAVE_CHROOT 1
#define HAVE_GETHOSTID 1
#define _FILE_OFFSET_BITS 64
#define PROTOTYPES 1
#define STDC_HEADERS 1
#define HAVE_STRING_H 1
#define HAVE_LONG_DOUBLE 1
#define HAVE_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FLOAT_H 1
#define HAVE_LIMITS_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MNTENT_H 1
#define HAVE_NETDB_H 1
#define HAVE_PATHS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDINT_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STATFS_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_SYSCTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMEB_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_SYSLOG_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UTIME_H 1
#define HAVE_VALUES_H 1
#define HAVE_DIRENT_H 1
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
#define HAVE_ST_BLOCKS 1
#define HAVE_STRUCT_TM_TM_ZONE 1
#define HAVE_TM_ZONE 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_STRUCT_TIMESPEC 1
#define GETGROUPS_T gid_t
#define RETSIGTYPE void
#define HAVE_UNSIGNED_LONG_LONG 1
#define HOST_OPERATING_SYSTEM "GNU/Linux"
#define HAVE_UTIME_H 1
#define HAVE_STRUCT_UTIMBUF 1
#define HAVE_STRUCT_DIRENT_D_TYPE 1
#define D_INO_IN_DIRENT 1
#define HAVE_GRP_H 1
#define HAVE_MEMORY_H 1
#define HAVE_PWD_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_UTMP_H 1
#define HAVE_UTMPX_H 1
#define HAVE_DECL_FREE 1
#define HAVE_DECL_GETENV 1
#define HAVE_DECL_GETEUID 1
#define HAVE_DECL_GETGRGID 1
#define HAVE_DECL_GETLOGIN 1
#define HAVE_DECL_GETPWUID 1
#define HAVE_DECL_GETUID 1
#define HAVE_DECL_GETUTENT 1
#define HAVE_DECL_LSEEK 1
#define HAVE_DECL_MALLOC 1
#define HAVE_DECL_MEMCHR 1
#define HAVE_DECL_MEMRCHR 1
#define HAVE_DECL_NANOSLEEP 1
#define HAVE_DECL_REALLOC 1
#define HAVE_DECL_STPCPY 1
#define HAVE_DECL_STRNDUP 1
#define HAVE_DECL_STRNLEN 1
#define HAVE_DECL_STRSTR 1
#define HAVE_DECL_STRTOUL 1
#define HAVE_DECL_STRTOULL 1
#define HAVE_DECL_TTYNAME 1
#define HAVE_LONG_FILE_NAMES 1
#define HAVE_PATHCONF 1
#define HAVE_LIMITS_H 1
#define HAVE_STRING_H 1
#define HAVE_UNISTD_H 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_GETCONTEXT 1
#define HAVE_SIGALTSTACK 1
#define HAVE_DECL_GETCONTEXT 1
#define HAVE_DECL_SIGALTSTACK 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_UCONTEXT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_STACK_T 1
#define HAVE_GETHOSTBYNAME 1
#define HAVE_GETHOSTBYADDR 1
#define HAVE_INET_NTOA 1
#define HAVE_UNISTD_H 1
#define HAVE_STRING_H 1
#define HAVE_NETDB_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_ARPA_INET_H 1
#define HAVE_STRING_H 1
#define HAVE_STRERROR 1
#define HAVE_VPRINTF 1
#define HAVE_DECL_STRERROR 1
#define HAVE_LIBINTL_H 1
#define HAVE_DECL_STRERROR_R 1
#define HAVE_STRERROR_R 1
#define STRERROR_R_CHAR_P 1
#define STDC_HEADERS 1
#define HAVE_MBSTATE_T 1
#define HAVE_STDBOOL_H 1
#define HAVE_GETPAGESIZE 1
#define HAVE_UNISTD_H 1
#define HAVE_LOCALE_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_SETLOCALE 1
#define HAVE_STDLIB_H 1
#define HAVE_LOCALE_H 1
#define HAVE_DECL_GETENV 1
#define HAVE_LOCALECONV 1
#define HAVE_LIMITS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_WCHAR_H 1
#define HAVE_WCTYPE_H 1
#define HAVE_ISASCII 1
#define HAVE_ISWCNTRL 1
#define HAVE_ISWPRINT 1
#define HAVE_MBSINIT 1
#define HAVE_WCWIDTH 1
#define HAVE_MBRTOWC 1
#define HAVE_DECL_WCWIDTH 1
#define HAVE_MBSTATE_T 1
#define HAVE_LIMITS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DECL_GETENV 1
#define HAVE_C_BACKSLASH_A 1
#define HAVE_ISASCII 1
#define HAVE_ISWPRINT 1
#define HAVE_LIMITS_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_WCHAR_H 1
#define HAVE_WCTYPE_H 1
#define HAVE_STRING_H 1
#define HAVE_UTMP_H 1
#define HAVE_UTMPX_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_UTMPNAME 1
#define HAVE_UTMPXNAME 1
#define HAVE_STRUCT_UTMPX_UT_USER 1
#define HAVE_STRUCT_UTMP_UT_USER 1
#define HAVE_STRUCT_UTMPX_UT_NAME 1
#define HAVE_STRUCT_UTMP_UT_NAME 1
#define HAVE_STRUCT_UTMPX_UT_TYPE 1
#define HAVE_STRUCT_UTMP_UT_TYPE 1
#define HAVE_STRUCT_UTMPX_UT_PID 1
#define HAVE_STRUCT_UTMP_UT_PID 1
#define HAVE_STRUCT_UTMPX_UT_ID 1
#define HAVE_STRUCT_UTMP_UT_ID 1
#define HAVE_STRUCT_UTMPX_UT_EXIT_E_EXIT 1
#define HAVE_STRUCT_UTMP_UT_EXIT_E_EXIT 1
#define HAVE_STRUCT_UTMPX_UT_EXIT_E_TERMINATION 1
#define HAVE_STRUCT_UTMP_UT_EXIT_E_TERMINATION 1
#define HAVE_BZERO 1
#define HAVE_BCOPY 1
#define HAVE_ISASCII 1
#define HAVE_BTOWC 1
#define HAVE_ALLOCA_H 1
#define HAVE_LIBINTL_H 1
#define HAVE_WCTYPE_H 1
#define HAVE_WCHAR_H 1
#define HAVE_LONG_LONG 1
#define HAVE_SYS_SYSMACROS_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_SYS_VFS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_MOUNT_H 1
#define HAVE_STATVFS 1
#define HAVE_STRUCT_STATFS_F_TYPE 1
#define HAVE_STRUCT_STATFS_F_FSID___VAL 1
#define HAVE_STRUCT_STATVFS_F_NAMEMAX 1
#define HAVE_STRUCT_STATFS_F_NAMELEN 1
#define HAVE_MEMORY_H 1
#define HAVE_DECL_MEMCHR 1
#define HAVE_FCNTL_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE___SECURE_GETENV 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_DECL_GETENV 1
#define PROTOTYPES 1
#define __PROTOTYPES 1
#define HAVE_STDLIB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_GETCWD_NULL 1
#define HAVE_LIMITS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_UNISTD_H 1
#define HAVE_GETCWD 1
#define HAVE_LIMITS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DIRENT_H 1
#define HAVE_DIRFD 1
#define HAVE_DECL_DIRFD 1
#define HAVE_LCHOWN 1
#define RMDIR_ERRNO_NOT_EMPTY 39
#define HAVE_SYS_TIME_H 1
#define HAVE_UNISTD_H 1
#define HAVE_ALARM 1
#define HAVE_LOCALTIME_R 1
#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
#define HAVE_STDLIB_H 1
#define HAVE_REALLOC 1
#define HAVE_STDLIB_H 1
#define HAVE_MALLOC 1
#define HAVE_DECL_CLEARERR_UNLOCKED 1
#define HAVE_DECL_FEOF_UNLOCKED 1
#define HAVE_DECL_FERROR_UNLOCKED 1
#define HAVE_DECL_FFLUSH_UNLOCKED 1
#define HAVE_DECL_FGETS_UNLOCKED 1
#define HAVE_DECL_FPUTC_UNLOCKED 1
#define HAVE_DECL_FPUTS_UNLOCKED 1
#define HAVE_DECL_FREAD_UNLOCKED 1
#define HAVE_DECL_FWRITE_UNLOCKED 1
#define HAVE_DECL_GETC_UNLOCKED 1
#define HAVE_DECL_GETCHAR_UNLOCKED 1
#define HAVE_DECL_PUTC_UNLOCKED 1
#define HAVE_DECL_PUTCHAR_UNLOCKED 1
#define HAVE_DECL_STRTOL 1
#define HAVE_DECL_STRTOUL 1
#define HAVE_DECL_STRTOULL 1
#define HAVE_DECL_STRTOIMAX 1
#define HAVE_DECL_STRTOUMAX 1
#define HAVE_LIMITS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STRTOUMAX 1
#define HAVE_DECL_STRTOL 1
#define HAVE_DECL_STRTOUL 1
#define HAVE_DECL_STRTOLL 1
#define HAVE_DECL_STRTOIMAX 1
#define HAVE_DECL_STRTOUMAX 1
#define HAVE_LIMITS_H 1
#define HAVE_STDLIB_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STRTOIMAX 1
#define HAVE_LOCALTIME_R 1
#define HAVE_STRFTIME 1
#define HAVE_LIMITS_H 1
#define HAVE_BCOPY 1
#define HAVE_TZSET 1
#define HAVE_MEMPCPY 1
#define HAVE_MEMCPY 1
#define HAVE_MEMSET 1
#define HAVE_STRUCT_TM_TM_ZONE 1
#define HAVE_TM_ZONE 1
#define HAVE_MBLEN 1
#define HAVE_MBRLEN 1
#define HAVE_TM_GMTOFF 1
#define HAVE_SYS_TIME_H 1
#define my_strftime nstrftime
#define HAVE_STDIO_EXT_H 1
#define HAVE___FPENDING 1
#define HAVE_DECL___FPENDING 1
#define HAVE_GETGROUPS 1
#define HAVE_FSEEKO 1
#define HAVE_VPRINTF 1
#define HAVE_PROC_UPTIME 1
#define HAVE_FTRUNCATE 1
#define HAVE_MKSTEMP 1
#define HAVE_UTIME_NULL 1
#define HAVE_UTIME_H 1
#define FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
#define FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
#define GNU_PACKAGE "GNU coreutils"
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define major_t unsigned int
#define minor_t unsigned int
/* end confdefs.h.  */
#include <stdio.h>
#include <regex.h>
	  int
	  main ()
	  {
	    static struct re_pattern_buffer regex;
	    const char *s;
	    struct re_registers regs;
	    re_set_syntax (RE_SYNTAX_POSIX_EGREP);
	    s =3D re_compile_pattern ("a[[:]:]]b\n", 9, &regex);
	    /* This should fail with _Invalid character class name_ error.  */
	    if (!s)
	      exit (1);

	    /* This should succeed, but doesn't for e.g. glibc-2.1.3.  */
	    s =3D re_compile_pattern ("{1", 2, &regex);

	    if (s)
	      exit (1);

	    /* The following example is derived from a problem report
               against gawk from Jorge Stolfi <stolfi@ic.unicamp.br>.  */
	    s =3D re_compile_pattern ("[an=F9]*n", 7, &regex);
	    if (s)
	      exit (1);

	    /* This should match, but doesn't for e.g. glibc-2.2.1.  */
	    if (re_match (&regex, "an", 2, 0, &regs) !=3D 2)
	      exit (1);

	    exit (0);
	  }

---------------------------------------
Received: (at 175529-close) by bugs.debian.org; 22 Jan 2003 05:23:15 +0000
>From katie@auric.debian.org Tue Jan 21 23:23:15 2003
Return-path: <katie@auric.debian.org>
Received: from auric.debian.org [206.246.226.45] (mail)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18bDM2-0002O1-00; Tue, 21 Jan 2003 23:23:14 -0600
Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian))
	id 18bDGs-0006Je-00; Wed, 22 Jan 2003 00:17:54 -0500
From: GOTO Masanori <gotom@debian.or.jp>
To: 175529-close@bugs.debian.org
X-Katie: $Revision: 1.29 $
Subject: Bug#175529: fixed in glibc 2.3.1-10
Message-Id: <E18bDGs-0006Je-00@auric.debian.org>
Sender: Archive Administrator <katie@auric.debian.org>
Date: Wed, 22 Jan 2003 00:17:54 -0500
Delivered-To: 175529-close@bugs.debian.org

We believe that the bug you reported is fixed in the latest version of
glibc, which is due to be installed in the Debian FTP archive:

glibc-doc_2.3.1-10_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.1-10_all.deb
glibc_2.3.1-10.diff.gz
  to pool/main/g/glibc/glibc_2.3.1-10.diff.gz
glibc_2.3.1-10.dsc
  to pool/main/g/glibc/glibc_2.3.1-10.dsc
libc-udeb_2.3.1-10_i386.udeb
  to pool/main/g/glibc/libc-udeb_2.3.1-10_i386.udeb
libc6-dbg_2.3.1-10_i386.deb
  to pool/main/g/glibc/libc6-dbg_2.3.1-10_i386.deb
libc6-dev_2.3.1-10_i386.deb
  to pool/main/g/glibc/libc6-dev_2.3.1-10_i386.deb
libc6-pic_2.3.1-10_i386.deb
  to pool/main/g/glibc/libc6-pic_2.3.1-10_i386.deb
libc6-prof_2.3.1-10_i386.deb
  to pool/main/g/glibc/libc6-prof_2.3.1-10_i386.deb
libc6_2.3.1-10_i386.deb
  to pool/main/g/glibc/libc6_2.3.1-10_i386.deb
locales_2.3.1-10_all.deb
  to pool/main/g/glibc/locales_2.3.1-10_all.deb
nscd_2.3.1-10_i386.deb
  to pool/main/g/glibc/nscd_2.3.1-10_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 175529@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
GOTO Masanori <gotom@debian.or.jp> (supplier of updated glibc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun,  5 Jan 2003 09:13:22 +0900
Source: glibc
Binary: libc6.1-prof libc1 libc0.3-pic locales glibc-doc libc6-pic libc-udeb libc1-prof libc0.3 libc0.3-dbg libc6.1-dev libc1-pic libc6-s390x libc6-prof libc1-dbg libc6-dev-sparc64 libc6 libc0.3-dev libc6-dbg nscd libc6.1-dbg libc6.1-pic libc6-sparc64 libc6-dev libc0.3-prof libc6.1 libc6-dev-s390x libc1-dev
Architecture: source i386 all
Version: 2.3.1-10
Distribution: unstable
Urgency: low
Maintainer: GOTO Masanori <gotom@debian.or.jp>
Changed-By: GOTO Masanori <gotom@debian.or.jp>
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc-udeb  - GNU C Library: Shared libraries and Timezone data - udeb (udeb)
 libc6      - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files.
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries.
 locales    - GNU C Library: National Language (locale) data [support]
 nscd       - GNU C Library: Name Service Cache Daemon
Closes: 155794 169878 170385 171502 175511 175529 176701
Changes: 
 glibc (2.3.1-10) unstable; urgency=low
 .
   * The "trudging the sludge" release.
 .
   * GOTO Masanori <gotom@debian.or.jp>
     - debian/packages.d/glibc-doc.mk: install linuxthreads/man/*.man
       manpages into glibc-doc package. (Closes: #155794)
     - debian/libc/DEBIAN/preinst: add kernel version check compared with
       2.4.19-pa17 on parisc64. Suggested by Randolph Chung.
     - debian/libc/DEBIAN/preinst: add kernel version requirement for
       2.5.53-pa3 in 2.5 series kernel on parisc64.
     - debian/locales/DEBIAN/config, debian/locales/DEBIAN/templates:
       add translated selection "Leave alone" and "None" because such strings
       were hardcoded and could not be localized in the templates file.
       Patched by Denis Barbier <barbier@debian.org>.  (Closes: #171502)
     - debian/packages.d/glibc-doc.mk: Fix glibc-doc dangling symbolic link for
       /usr/share/doc/glibc-doc/html/index.html. (Closes: #169878, #176701)
     - debian/libc/DEBIAN/postinst: Fix to work $DEBIAN_FRONTEND value
       regardless its case insensitivity. See #176483.
     - debian/sysdeps/depflags.pl: Fix again to conflict against wine
       (<< 0.0.20021007-1) and php4 (<< 4:4.2.3-5). (Closes: #170385)
     - debian/control: Fix unneeded Conflicts: wine and php4, as denoted above.
     - debian/control.in/libc: likewise.
     - debian/patches/glibc23-cmov.dpatch: Add CMOV to hwcap, for VIA C3 which
       is i686 class processor, but does not have 686 optional instruction CMOV.
     - debian/patches/glibc23-regcomp.dpatch: Fix regex crash, if clearing
       buffer, clear allocated too.  This patch is pulled from the current
       upstream glibc cvs.  (Closes: #175529)
 .
   * Daniel Jacobowitz <dan@debian.org>
     - debian/patches/alpha-pic.dpatch: Fix errno reporting from syscalls
       on Alpha (Closes: #175511).
Files: 
 b655efc0b58da5762471eac616c568bf 1561 libs required glibc_2.3.1-10.dsc
 6e1cc0ca8a87e16d2d70c01375797ff9 1677595 libs required glibc_2.3.1-10.diff.gz
 b30b19aa8cea711f758907d36cc6d0aa 3191454 base required libc6_2.3.1-10_i386.deb
 409d7366d545d632b4e15ef80530a917 516008 debian-installer required libc-udeb_2.3.1-10_i386.udeb
 a85d0ade6e42557279e6c228f4f28017 2414774 devel standard libc6-dev_2.3.1-10_i386.deb
 8c4b3bc77962ab086a0789c45371ddfa 890310 devel extra libc6-prof_2.3.1-10_i386.deb
 b73f23a214314974ff2bf2a8c91c46c1 5289328 devel extra libc6-dbg_2.3.1-10_i386.deb
 40f1b970e2d7b1d19bfbcd7bee6a649c 841832 devel optional libc6-pic_2.3.1-10_i386.deb
 7e0fc982142b658cfd8d6a11968868f7 64968 admin optional nscd_2.3.1-10_i386.deb
 47869af7181a1075b52156b3a45ca2de 3743432 base standard locales_2.3.1-10_all.deb
 90856f0248f906d053c96990c69c4e98 3006644 doc optional glibc-doc_2.3.1-10_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+LccC9dAn0Xqx8P4RAs+oAJ9O1I8/hd8gVmb0ZGRmpZ0BaNCHdQCeOiho
OYWydxlE2tASm8OB7cfNu3M=
=LecO
-----END PGP SIGNATURE-----



Reply to: