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

r1914 - in glibc-package/branches/glibc-2.5/debian: . patches patches/any patches/hppa



Author: aurel32
Date: 2007-02-02 20:25:29 +0100 (Fri, 02 Feb 2007)
New Revision: 1914

Added:
   glibc-package/branches/glibc-2.5/debian/patches/any/cvs-itoa-c.diff
   glibc-package/branches/glibc-2.5/debian/patches/hppa/submitted-cfi-procend.diff
Modified:
   glibc-package/branches/glibc-2.5/debian/changelog
   glibc-package/branches/glibc-2.5/debian/patches/series
Log:
  * Add patches/hppa/submitted-cfi-procend.diff (fix build with binutils cvs)
    from parisc-linux.




Modified: glibc-package/branches/glibc-2.5/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.5/debian/changelog	2007-02-01 19:14:02 UTC (rev 1913)
+++ glibc-package/branches/glibc-2.5/debian/changelog	2007-02-02 19:25:29 UTC (rev 1914)
@@ -74,6 +74,8 @@
   * debhelper.in/libc.install: install gai.conf in /etc.  Closes: #404379.
   * Add patches/any/local-ldconfig-timestamps.diff (use the timestamps to
     update the cache only when needed) by Josselin Mouette.  Closes: #374945.
+  * Add patches/hppa/submitted-cfi-procend.diff (fix build with binutils cvs)
+    from parisc-linux.
 
   [ Denis Barbier ]
   * Remove localedata/locale-en_NZ.diff (merged upstream).

Added: glibc-package/branches/glibc-2.5/debian/patches/any/cvs-itoa-c.diff
===================================================================
--- glibc-package/branches/glibc-2.5/debian/patches/any/cvs-itoa-c.diff	2007-02-01 19:14:02 UTC (rev 1913)
+++ glibc-package/branches/glibc-2.5/debian/patches/any/cvs-itoa-c.diff	2007-02-02 19:25:29 UTC (rev 1914)
@@ -0,0 +1,29 @@
+2007-01-22  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #3902]
+       * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
+
+===================================================================
+RCS file: /cvs/glibc/libc/stdio-common/_itoa.c,v
+retrieving revision 1.21
+retrieving revision 1.22
+diff -u -r1.21 -r1.22
+--- libc/stdio-common/_itoa.c	2004/06/06 06:02:14	1.21
++++ libc/stdio-common/_itoa.c	2007/01/22 16:16:08	1.22
+@@ -269,6 +269,7 @@
+ 
+     default:
+       {
++	char *bufend = buflim;
+ #if BITS_PER_MP_LIMB == 64
+ 	mp_limb_t base_multiplier = brec->base_multiplier;
+ 	if (brec->flag)
+@@ -454,6 +455,8 @@
+ 	  }
+ 	while (n != 0);
+ #endif
++	if (buflim == bufend)
++	  *--buflim = '0';
+       }
+       break;
+     }

Added: glibc-package/branches/glibc-2.5/debian/patches/hppa/submitted-cfi-procend.diff
===================================================================
--- glibc-package/branches/glibc-2.5/debian/patches/hppa/submitted-cfi-procend.diff	2007-02-01 19:14:02 UTC (rev 1913)
+++ glibc-package/branches/glibc-2.5/debian/patches/hppa/submitted-cfi-procend.diff	2007-02-02 19:25:29 UTC (rev 1914)
@@ -0,0 +1,15 @@
+
+Add missing cfi_procend.
+
+Signed-off-by: Guy Martin <gmsoft@tuxicoman.be>
+
+diff -uNr glibc-2.5.orig/ports/sysdeps/hppa/dl-trampoline.S glibc-2.5/ports/sysdeps/hppa/dl-trampoline.S
+--- glibc-2.5.orig/ports/sysdeps/hppa/dl-trampoline.S	2006-09-07 16:34:43.000000000 +0000
++++ glibc-2.5/ports/sysdeps/hppa/dl-trampoline.S	2007-01-30 15:15:58.000000000 +0000
+@@ -284,5 +284,6 @@
+ 	bv,n	0(%r2)
+         .EXIT
+         .PROCEND
++	cfi_endproc
+ 	.size   _dl_runtime_profile, . - _dl_runtime_profile
+ 

Modified: glibc-package/branches/glibc-2.5/debian/patches/series
===================================================================
--- glibc-package/branches/glibc-2.5/debian/patches/series	2007-02-01 19:14:02 UTC (rev 1913)
+++ glibc-package/branches/glibc-2.5/debian/patches/series	2007-02-02 19:25:29 UTC (rev 1914)
@@ -50,8 +50,9 @@
 arm/local-no-hwcap.diff -p0
 
 hppa/local-Rminkernel.diff -p0
+hppa/submitted-cfi-procend.diff -p0
 hppa/submitted-lt.diff -p1
-hppa/submitted-nptl-carlos.diff -p0
+hppa/submitted-nptl-carlos.diff -p1
 hppa/local-inlining.diff -p0
 
 hurd-i386/cvs-futimes.diff -p1



Reply to: