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

Bug#155606: marked as done (provide symbols .hidden in gcc 3.1/3.2 when building glibc for ppc)



Your message dated Thu, 17 Oct 2002 10:32:42 -0400
with message-id <E182Bha-0006Sj-00@auric.debian.org>
and subject line Bug#155606: fixed in glibc 2.3.1-1
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 Aug 2002 15:06:59 +0000
>From howarth@bromo.med.uc.edu Tue Aug 06 10:06:59 2002
Return-path: <howarth@bromo.med.uc.edu>
Received: from murphy.debian.org [65.125.64.134] 
	by master.debian.org with smtp (Exim 3.12 1 (Debian))
	id 17c5vH-0002OL-00; Tue, 06 Aug 2002 10:06:59 -0500
Received: (qmail 10212 invoked from network); 6 Aug 2002 01:30:41 -0000
Received: from bromo.med.uc.edu (HELO bromo.msbb.uc.edu) (129.137.3.146)
  by murphy.debian.org with SMTP; 6 Aug 2002 01:30:41 -0000
Received: (from howarth@localhost)
	by bromo.msbb.uc.edu (SGI-8.9.3/8.9.3) id VAA02211
	for submit@bugs.debian.org; Mon, 5 Aug 2002 21:30:08 -0400 (EDT)
Date: Mon, 5 Aug 2002 21:30:08 -0400 (EDT)
From: Jack Howarth <howarth@bromo.msbb.uc.edu>
Message-Id: <200208060130.VAA02211@bromo.msbb.uc.edu>
To: submit@bugs.debian.org
Subject: provide symbols .hidden in gcc 3.1/3.2 when building glibc for ppc
Delivered-To: submit@bugs.debian.org

Package: glibc
Version: 2.2.5-12
   Due to a pre-existing bug in gcc < 3.1, libgcc symbols were 
compiled in error into binaries on ppc. With gcc >= 3.1, these
libgcc symbols are now marked .hidden which makes them disappear
from glibc 2.2.5 when rebuilt with gcc >= 3.1. The patch below
provides these symbols for resolution but not linking. This patch
is newer than the one currently in glibc-2-2-branch and resolves
the remaining issues with OpenOffice binaries built under gcc 2.95.4.

Index: sysdeps/powerpc/Makefile
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/powerpc/Makefile,v
retrieving revision 1.15
diff -u -p -r1.15 Makefile
--- sysdeps/powerpc/Makefile	6 Dec 2001 23:41:32 -0000	1.15
+++ sysdeps/powerpc/Makefile	15 May 2002 14:23:39 -0000
@@ -35,6 +35,11 @@ CFLAGS-initfini.s = -g0 -fpic -O1
 CFLAGS-init.o = -G0
 CFLAGS-gmon-start.o = -G0
 endif
+ifeq (yes,$(build-shared))
+# Compatibility
+sysdep_routines += libgcc-compat
+shared-only-routines += libgcc-compat
+endif
 endif
 
 ifeq ($(subdir),string)
Index: sysdeps/powerpc/Versions
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/powerpc/Versions,v
retrieving revision 1.2
diff -u -p -r1.2 Versions
--- sysdeps/powerpc/Versions	Wed Jun 19 21:29:49 2002
+++ sysdeps/powerpc/Versions.new	Wed Jun 19 21:32:53 2002
@@ -3,6 +3,17 @@
     _dl_cpuclock_offset;
   }
 }
+libc {
+  GLIBC_2.0 {
+    # Functions from libgcc.
+    __divdi3; __moddi3; __udivdi3; __umoddi3;
+    __cmpdi2; __ucmpdi2;
+    __ashldi3; __ashrdi3; __lshrdi3;
+    __fixdfdi; __fixunsdfdi;
+    __fixsfdi; __fixunssfdi;
+    __floatdidf; __floatdisf;
+  }
+}
 libm {
   GLIBC_2.1 {
     # symbols used in macros from sysdeps/powerpc/bits/fenv.h

--- /dev/null	Thu Oct  4 06:30:44 2001
+++ sysdeps/powerpc/libgcc-compat.S	Mon Aug  5 07:55:04 2002
@@ -0,0 +1,170 @@
+/* pre-.hidden libgcc compatibility
+   Copyright (C) 2002 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+	.file	"libgcc-compat.S"
+
+#include <shlib-compat.h>
+
+#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6)
+
+#ifndef INTUSE
+# define INTUSE(name) name##_internal
+#endif
+
+#define __divdi3_v_glibc20	INTUSE (__divdi3)
+#define __udivdi3_v_glibc20	INTUSE (__udivdi3)
+#define __moddi3_v_glibc20	INTUSE (__moddi3)
+#define __umoddi3_v_glibc20	INTUSE (__umoddi3)
+#define __ashldi3_v_glibc20	INTUSE (__ashldi3)
+#define __ashrdi3_v_glibc20	INTUSE (__ashrdi3)
+#define __lshrdi3_v_glibc20	INTUSE (__lshrdi3)
+#define __cmpdi2_v_glibc20	INTUSE (__cmpdi2)
+#define __ucmpdi2_v_glibc20	INTUSE (__ucmpdi2)
+#define __fixdfdi_v_glibc20	INTUSE (__fixdfdi)
+#define __fixsfdi_v_glibc20	INTUSE (__fixsfdi)
+#define __fixunsdfdi_v_glibc20	INTUSE (__fixunsdfdi)
+#define __fixunssfdi_v_glibc20	INTUSE (__fixunssfdi)
+#define __floatdidf_v_glibc20	INTUSE (__floatdidf)
+#define __floatdisf_v_glibc20	INTUSE (__floatdisf)
+
+	.symver __divdi3_v_glibc20,__divdi3@GLIBC_2.0
+	.symver __moddi3_v_glibc20,__moddi3@GLIBC_2.0
+	.symver __udivdi3_v_glibc20,__udivdi3@GLIBC_2.0
+	.symver __umoddi3_v_glibc20,__umoddi3@GLIBC_2.0
+	.symver __ashldi3_v_glibc20,__ashldi3@GLIBC_2.0
+	.symver __ashrdi3_v_glibc20,__ashrdi3@GLIBC_2.0
+	.symver __lshrdi3_v_glibc20,__lshrdi3@GLIBC_2.0
+	.symver __cmpdi2_v_glibc20,__cmpdi2@GLIBC_2.0
+	.symver __ucmpdi2_v_glibc20,__ucmpdi2@GLIBC_2.0
+	.symver __fixdfdi_v_glibc20,__fixdfdi@GLIBC_2.0
+	.symver __fixunsdfdi_v_glibc20,__fixunsdfdi@GLIBC_2.0
+	.symver __fixsfdi_v_glibc20,__fixsfdi@GLIBC_2.0
+	.symver __fixunssfdi_v_glibc20,__fixunssfdi@GLIBC_2.0
+	.symver __floatdidf_v_glibc20,__floatdidf@GLIBC_2.0
+	.symver __floatdisf_v_glibc20,__floatdisf@GLIBC_2.0
+
+	.section	".text"
+
+	.align 2
+	.globl __divdi3_v_glibc20
+	.type	__divdi3_v_glibc20,@function
+__divdi3_v_glibc20:
+	b __divdi3@local
+.Lfe1:
+	.size	__divdi3_v_glibc20,.Lfe1-__divdi3_v_glibc20
+	.align 2
+	.globl __moddi3_v_glibc20
+	.type	__moddi3_v_glibc20,@function
+__moddi3_v_glibc20:
+	b __moddi3@local
+.Lfe2:
+	.size	__moddi3_v_glibc20,.Lfe2-__moddi3_v_glibc20
+	.align 2
+	.globl __udivdi3_v_glibc20
+	.type	__udivdi3_v_glibc20,@function
+__udivdi3_v_glibc20:
+	b __udivdi3@local
+.Lfe3:
+	.size	__udivdi3_v_glibc20,.Lfe3-__udivdi3_v_glibc20
+	.align 2
+	.globl __umoddi3_v_glibc20
+	.type	__umoddi3_v_glibc20,@function
+__umoddi3_v_glibc20:
+	b __umoddi3@local
+.Lfe4:
+	.size	__umoddi3_v_glibc20,.Lfe4-__umoddi3_v_glibc20
+	.align 2
+	.globl __ashldi3_v_glibc20
+	.type	__ashldi3_v_glibc20,@function
+__ashldi3_v_glibc20:
+	b __ashldi3@local
+.Lfe5:
+	.size	__ashldi3_v_glibc20,.Lfe5-__ashldi3_v_glibc20
+	.align 2
+	.globl __ashrdi3_v_glibc20
+	.type	__ashrdi3_v_glibc20,@function
+__ashrdi3_v_glibc20:
+	b __ashrdi3@local
+.Lfe6:
+	.size	__ashrdi3_v_glibc20,.Lfe6-__ashrdi3_v_glibc20
+	.align 2
+	.globl __lshrdi3_v_glibc20
+	.type	__lshrdi3_v_glibc20,@function
+__lshrdi3_v_glibc20:
+	b __lshrdi3@local
+.Lfe7:
+	.size	__lshrdi3_v_glibc20,.Lfe7-__lshrdi3_v_glibc20
+	.align 2
+	.globl __cmpdi2_v_glibc20
+	.type	__cmpdi2_v_glibc20,@function
+__cmpdi2_v_glibc20:
+	b __cmpdi2@local
+.Lfe8:
+	.size	__cmpdi2_v_glibc20,.Lfe8-__cmpdi2_v_glibc20
+	.align 2
+	.globl __ucmpdi2_v_glibc20
+	.type	__ucmpdi2_v_glibc20,@function
+__ucmpdi2_v_glibc20:
+	b __ucmpdi2@local
+.Lfe9:
+	.size	__ucmpdi2_v_glibc20,.Lfe9-__ucmpdi2_v_glibc20
+	.align 2
+	.globl __fixdfdi_v_glibc20
+	.type	__fixdfdi_v_glibc20,@function
+__fixdfdi_v_glibc20:
+	b __fixdfdi@local
+.Lfe10:
+	.size	__fixdfdi_v_glibc20,.Lfe10-__fixdfdi_v_glibc20
+	.align 2
+	.globl __fixunsdfdi_v_glibc20
+	.type	__fixunsdfdi_v_glibc20,@function
+__fixunsdfdi_v_glibc20:
+	b __fixunsdfdi@local
+.Lfe11:
+	.size	__fixunsdfdi_v_glibc20,.Lfe11-__fixunsdfdi_v_glibc20
+	.align 2
+	.globl __fixsfdi_v_glibc20
+	.type	__fixsfdi_v_glibc20,@function
+__fixsfdi_v_glibc20:
+	b __fixsfdi@local
+.Lfe12:
+	.size	__fixsfdi_v_glibc20,.Lfe12-__fixsfdi_v_glibc20
+	.align 2
+	.globl __fixunssfdi_v_glibc20
+	.type	__fixunssfdi_v_glibc20,@function
+__fixunssfdi_v_glibc20:
+	b __fixunssfdi@local
+.Lfe13:
+	.size	__fixunssfdi_v_glibc20,.Lfe13-__fixunssfdi_v_glibc20
+	.align 2
+	.globl __floatdidf_v_glibc20
+	.type	__floatdidf_v_glibc20,@function
+__floatdidf_v_glibc20:
+	b __floatdidf@local
+.Lfe14:
+	.size	__floatdidf_v_glibc20,.Lfe14-__floatdidf_v_glibc20
+	.align 2
+	.globl __floatdisf_v_glibc20
+	.type	__floatdisf_v_glibc20,@function
+__floatdisf_v_glibc20:
+	b __floatdisf@local
+.Lfe15:
+	.size	__floatdisf_v_glibc20,.Lfe15-__floatdisf_v_glibc20
+
+#endif



---------------------------------------
Received: (at 155606-close) by bugs.debian.org; 17 Oct 2002 14:39:18 +0000
>From katie@auric.debian.org Thu Oct 17 09:39:17 2002
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 182Bnw-0003Bd-00; Thu, 17 Oct 2002 09:39:16 -0500
Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian))
	id 182Bha-0006Sj-00; Thu, 17 Oct 2002 10:32:42 -0400
From: Jeff Bailey <jbailey@nisa.net>
To: 155606-close@bugs.debian.org
X-Katie: $Revision: 1.26 $
Subject: Bug#155606: fixed in glibc 2.3.1-1
Message-Id: <E182Bha-0006Sj-00@auric.debian.org>
Sender: Archive Administrator <katie@auric.debian.org>
Date: Thu, 17 Oct 2002 10:32:42 -0400
Delivered-To: 155606-close@bugs.debian.org
X-Spam-Status: No, hits=-0.3 required=5.0
	tests=LARGE_COLLECTION,PGP_SIGNATURE,SPAM_PHRASE_00_01,
	      SUPERLONG_LINE
	version=2.41
X-Spam-Level: 

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-1_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.1-1_all.deb
glibc_2.3.1-1.dsc
  to pool/main/g/glibc/glibc_2.3.1-1.dsc
glibc_2.3.1-1.tar.gz
  to pool/main/g/glibc/glibc_2.3.1-1.tar.gz
libc6-dbg_2.3.1-1_i386.deb
  to pool/main/g/glibc/libc6-dbg_2.3.1-1_i386.deb
libc6-dev_2.3.1-1_i386.deb
  to pool/main/g/glibc/libc6-dev_2.3.1-1_i386.deb
libc6-pic_2.3.1-1_i386.deb
  to pool/main/g/glibc/libc6-pic_2.3.1-1_i386.deb
libc6-prof_2.3.1-1_i386.deb
  to pool/main/g/glibc/libc6-prof_2.3.1-1_i386.deb
libc6_2.3.1-1_i386.deb
  to pool/main/g/glibc/libc6_2.3.1-1_i386.deb
locales_2.3.1-1_all.deb
  to pool/main/g/glibc/locales_2.3.1-1_all.deb
nscd_2.3.1-1_i386.deb
  to pool/main/g/glibc/nscd_2.3.1-1_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 155606@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jeff Bailey <jbailey@nisa.net> (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: Thu, 17 Oct 2002 08:37:52 -0400
Source: glibc
Binary: libc6.1-prof libc1 libc0.3-pic locales glibc-doc libc6-pic libc1-prof libc0.3 libc0.3-dbg libc6.1-dev libc1-pic 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 libc1-dev
Architecture: source i386 all
Version: 2.3.1-1
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org>
Changed-By: Jeff Bailey <jbailey@nisa.net>
Description: 
 glibc-doc  - GNU C Library: Documentation
 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: 155606 155904 156821 157374 159417 160846
Changes: 
 glibc (2.3.1-1) unstable; urgency=low
 .
   * This is the "twilight" release...
 .
   * Jeff Bailey <jbailey@nisa.net>
     - Upgrade tarballs to 2.3.1
     - version: Update to 2.3.1
 .
     - debian/sysdeps/linux.mk: Do not build optimized libraries
     - debian/rules.d/control.mk: Likewise
 .
     - debian/control.in/main: Require binutils 2.13.90.0.10-1 for ppc
 .
     - debian/patches/elf-machine-rela-mips.dpatch: New file
     - debian/patches/0list: Update accordingly.
 .
     - debian/rules: Use -O on i386.  This should go somewhere else,
     but I want to get this release out.
 .
   * XXX Below here was during the 2.3 development, and never released.
 .
   * Jeff Bailey <jbailey@nisa.net>
     - Upgrade tarballs to 2.3
     - version: Update to 2.3
 .
     - debian/patches/hppa-data-start.dpatch: Remove, incorporated upstream
     - debian/patches/various-lsb-fixes.dpatch: Remove, incorporated upstream
 .
     - debian/patches/0list: adjust accordingly
                             Also, prune ia64-reloc-none from the list.
 			    I can't tell from the code snippet if this
 			    has been incorporated or not.
 .
     - .cvsignore: Add the stamp directories
 .
     - debian/rules: Don't put CFLAGS in configparms, resolves ldconfig
       miscompile on i386
 .
     - debian/rules: Add freebsd-i386 support
     - debian/rules.d/control.mk: Add freebsd-i386 support
     - debian/sysdeps/freebsd.mk: New file to add freebsd-i386 support
     - debian/sysdeps/paths.mk: Add freebsd-i386 support
     - debian/sysdeps/soname.mk: Add freebsd-i386 support
 .
   * XXX Below here was during the 2.2.94 development, and never released.
 .
   * Jeff Bailey <jbailey@nisa.net>
     - Upgrade tarballs to 2.2.94
     - version: Update to 2.2.94
 .
     - debian/patches/cvs: Remove
     - debian/patches/manual-texinfo4: Remove, incorporated upstream.
     - debian/patches/i386-mathinline.dpatch: Remove, glibc headers require
       ANSI compilers.
     - debian/patches/db1-addon-enabler.dpatch: Remove
     - debian/patches/0list: adjust accordingly
 .
     - debian/patches/0list: Comment out string2-pointer-arith.
       This was originally created to fix #44697, but without this
       patch, 44697 is no longer reproducable.
 .
     - debian/patches/fhs-linux-paths.dpatch: Update to new template format
 .
     - .cvsignore: New file
 .
   * XXX Below here was during the 2.2.93 development, and never released.
 .
   * Jeff Bailey <jbailey@nisa.net>
      - Upgrade tarballs to 2.2.93
      - version: Update to 2.2.93
 .
      The following important patches are still disabled:
 .
        glibc22-hppa-pthreads, glibc22-hppa-rela, ia64-perf
 .
      - debian/patches/0list: prune commented out patches that won't
        be needed anymore
 .
      - debian/patches/ia64-reloc-none.dpatch: Updated, thank to
        Randolph Chung <randolph@tausq.org>
 .
      - debian/make-cvs-patch.sh: New file.
 .
      - debian/patches/template.dpatch: Update headers to new format.
 .
      - debian/patches/hurd-ioperms.dpatch - Deleted
      - debian/patches/hurd-lfs64.dpatch - Deleted
      - debian/patches/hurd-update.dpatch - Deleted
      - debian/patches/syserrlist.dpatch - Deleted
 .
      - debian/README - More updates
 .
      - debian/rules.d/control.mk: debian/control should Depend on
        debian/sysdeps/depflags.pl
 .
      - debian/sysdeps/depflags.pl: Actually add the dependancy on
        libdb1-compat.  This is an update to GOTO Masanori's change,
        Thanks to Ryan Murray for catching this.
 .
      - debian/patches/mathpatch.dpatch: Prune
 .
      - debian/rules.d/patch.mk: Add `setup' as an alias for `patch'
        to provide dbs compatability.
 .
      - debian/patches/cvs.dpatch: Sync with CVS from September 14th.
      - debian/patches/0list: Updated
 .
   * GOTO Masanori <gotom@debian.or.jp>
      - debian/packages.d/glibc-doc.mk: change texi2html processed file from
        chapters.texi to libc.texinfo. Closes: #159417
      - debian/packages.d/libc-{dbg,pic,prof}.mk: fix /usr/doc removal
        compilation failure.
      - debian/libc/DEBIAN/postinst: Fix 'grep -v' failure if the size of
        /etc/ld.so.nohwcap is 0.
      - debian/rules.d/control.mk: Generate libc-opt control information.
 .
      - Updating 2.2.9x fixes LSB 1.2 compliance. Closes: #156821
      - debian/control: add Depends: libdb1-compat.
        Until woody, libdb1 is included in libc6 package. However after sarge,
        libdb1 support is removed. libdb1-compat contains libdb1 which is
        formerly provided by libc6. Now libc6 depends on libdb1-compat,
        so upgrading from woody to sarge does not break any libdb1 issues.
        Closes: #155904
 .
      - debian/patches/glibc22-hppa-fcntl.dpatch: added, patched by
        Carlos O'Donell <carlos@baldric.uwo.ca>.
      - debian/patches/glibc22-hppa-fcntl-lfs.dpatch: added, patched by
        Randolph Chung <tausq@debian.org>. Closes: #160846
 .
   * Ben Collins <bcollins@debian.org>
     - Make sparc64 build use gcc-3.2.
     - Update all config options to not use --disable-sanity-checks, since we
       are actually using gcc-3.2 for everything.
     - Patch cleanups.
     - Re-enable optimized libs. Includes a simple mechanism which should fix
       the conflicting symbols during libc/libc-opt upgrade scenarios. This
       means that libc6-v9, libc6-i586 and libc6-i686 are back in full swing.
     - Remove all references to /usr/doc symlink crap, which is deprecated.
 .
   * XXX Below here was during the 2.2.92 development, and never released.
 .
   * Jeff Bailey <jbailey@nisa.net>
      - Upgrade tarballs to 2.2.92
      - version: Update to 2.2.92
      - debian/control.in/main: Require gcc-3.2 for all archs
      - debian/patches/0list: prune glibc-cvs, glibc22-s390-resource,
        gmon-start, locales-de_CH, sh-sysdep, alpha-build-failure
 .
        These are already included in the 2.3 series.
 .
      - debian/patches/glibc22-misc.dpatch: Split into ...
        debian/patches/makeconfig.dpatch: ... this
        debian/patches/locale-es_AR.dpatch: ... and this
        debian/patches/i386-mathinline.dpatch: ... and this
        debian/patches/ldconfig.dpatch: ... and this.
 .
      - debian/patches/makeconfig.dpatch: Update for 2.3 series
 .
      - debian/patches/0list: Temporarily disable some other patches:
 .
        glibc22-hppa-pthreads, glibc22-hppa-rela, ia64-perf
 .
      - debian/rules: memset.S works on ppc now, so stop deleting it.  Thanks
        to Jack Howarth <howarth@fuse.net> for letting us know.
 .
      - debian/sysdeps/gnu.mk: Remove --enable-libio, now set by default.  Add
        NO_TEST = yes, make check does not run on i386-gnu.
 .
      - debian/sysdeps/tools.mk: Hardcode gcc-3.2 for $(CC) and $(BUILD_CC)
        until gcc-defaults switches.
 .
      - debian/rules: use CC=$(CC) when calling configure to get any changed
        definitions.
 .
      - debian/control.in/main: Require binutils (>= 2.13.90.0.4-1)
 .
      - debian/rules: Add time/date stamps to beginning and end of log files
 .
      - db1-addon-2.1.3.tar.bz2: Delete
 .
      - debian/ppc-memset.S: Delete
 .
      - debian/README: Update
 .
   * GOTO Masanori <gotom@debian.or.jp>
      - debian/packages.d/libc-dbg.mk: update libpthread-0.9 -> 0.10.
      - packages.d/libc.mk: likewise.
      - packages.d/optimized.mk: likewise.
      - packages.d/sparc64.mk: likewise.
 .
      - debian/patches/glibc22-hppa-mcontext.dpatch: Fix unmatched userland
        mcontext_t definition differed from kernel. Patched by
        Carlos O'Donell <carlos@baldric.uwo.ca>. Closes: #157374
 .
   * XXX Below here was during the 2.2.5 development, and never released.
 .
   * GOTO Masanori <gotom@debian.or.jp>
     - debian/patches/glibc-cvs.dpatch: Update from Glibc CVS.
     - debian/patches: Dropped applying below patches due to updating
       glibc-cvs.dpatch.
         hurd-update, hurd-ioperms, ia64-strncpy, sparc-misc, resolv-nss_dns,
         glibc-openoffice-fixes, xdr-array-security, hurd-lfs64,
         syserrlist, mathpatch
     - Fix gcc 3.1/3.2 compatibility building for glibc on ppc, with upstream
       patched by Jack Howarth <howarth@bromo.msbb.uc.edu> and
       Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
       Closes: #155606
Files: 
 d80e03a24af6c9d097f29c223e09960e 1369 libs required glibc_2.3.1-1.dsc
 37bcd63e087a81255da9d481587bad13 13090602 libs required glibc_2.3.1-1.tar.gz
 a2a9a66f30c12c3bef286fb0b7e9bf80 3180600 base required libc6_2.3.1-1_i386.deb
 dfebb37ef482678a1ca706d946928187 2385922 devel standard libc6-dev_2.3.1-1_i386.deb
 642a442c5f78244b561efaa4ea8112e0 890174 devel extra libc6-prof_2.3.1-1_i386.deb
 22351c20c64e14aa5a32f8960eab48b4 860098 devel extra libc6-dbg_2.3.1-1_i386.deb
 57fa2ef7d1b2f45e24e4c91fae2cecc2 821588 devel optional libc6-pic_2.3.1-1_i386.deb
 e36900fcae8f4b0c05bf41f934c8ebbe 61364 admin optional nscd_2.3.1-1_i386.deb
 e8b4f84aab9fda4ff25e323441f7bf04 3684254 base standard locales_2.3.1-1_all.deb
 f0dcb2e53946f375d32e9a583e8c2da9 2953208 doc optional glibc-doc_2.3.1-1_all.deb

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

iD8DBQE9rsA95M5hmdCYCpkRAqkJAKCuKdo9gdpXs3kAy3iaVbiJ3IQAdgCfcjyb
vekJXmckVMqf4uJ0xt9Le9I=
=T+iO
-----END PGP SIGNATURE-----



Reply to: