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

r4744 - in glibc-package/trunk/debian: . patches patches/any patches/i386



Author: aurel32
Date: 2011-06-26 19:55:00 +0000 (Sun, 26 Jun 2011)
New Revision: 4744

Removed:
   glibc-package/trunk/debian/patches/any/cvs-glro_dl_debug_mask.diff
   glibc-package/trunk/debian/patches/i386/cvs-memmove-static.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
   glibc-package/trunk/debian/patches/svn-updates.diff
Log:
  * Update patches/svn-updates to revision 14337:
    - Remove any/cvs-glro_dl_debug_mask.diff (merged). 
    - Remove i386/cvs-memmove-static.diff (merged).



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2011-06-23 19:18:29 UTC (rev 4743)
+++ glibc-package/trunk/debian/changelog	2011-06-26 19:55:00 UTC (rev 4744)
@@ -9,6 +9,9 @@
     addmntent().  Closes: #630699 / CVE-2011-1089.
   * Add patches/any/cvs-resolv-different-nameserver.diff to try a different
     nameserver if the first one returns REFUSED.  Closes: #535504, #602291.
+  * Update patches/svn-updates to revision 14337:
+    - Remove any/cvs-glro_dl_debug_mask.diff (merged). 
+    - Remove i386/cvs-memmove-static.diff (merged).
 
   [ Petr Salinger ]
   * kfreebsd/local-sysdeps.diff: update to revision 3467 (from glibc-bsd).

Deleted: glibc-package/trunk/debian/patches/any/cvs-glro_dl_debug_mask.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/cvs-glro_dl_debug_mask.diff	2011-06-23 19:18:29 UTC (rev 4743)
+++ glibc-package/trunk/debian/patches/any/cvs-glro_dl_debug_mask.diff	2011-06-26 19:55:00 UTC (rev 4744)
@@ -1,15 +0,0 @@
----
- elf/dl-lookup.c |    2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/elf/dl-lookup.c
-+++ b/elf/dl-lookup.c
-@@ -423,7 +423,7 @@
- 		     hash table.  */
- 		  if (__builtin_expect (tab->size, 0))
- 		    {
--		      assert (GLRO(dl_debug_mask) & DL_DEBUG_PRELINK);
-+		      assert (GLRO_dl_debug_mask & DL_DEBUG_PRELINK);
- 		      __rtld_lock_unlock_recursive (tab->lock);
- 		      goto success;
- 		    }

Deleted: glibc-package/trunk/debian/patches/i386/cvs-memmove-static.diff
===================================================================
--- glibc-package/trunk/debian/patches/i386/cvs-memmove-static.diff	2011-06-23 19:18:29 UTC (rev 4743)
+++ glibc-package/trunk/debian/patches/i386/cvs-memmove-static.diff	2011-06-26 19:55:00 UTC (rev 4744)
@@ -1,61 +0,0 @@
-2011-02-06  Mike Frysinger  <vapier@gentoo.org>
-
-	[BZ #12653]
-	* sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
-	MEMCPY_CHK with USE_AS_BCOPY ifdef check.
-	* sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
-	* sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
-	* sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
-
-diff --git a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
-index 48a109c..8e81183 100644
---- a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
-+++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
-@@ -110,7 +110,7 @@ __i686.get_pc_thunk.bx:
- #endif
- 
- 	.section .text.ssse3,"ax",@progbits
--#if defined SHARED && !defined NOT_IN_libc && !defined USE_AS_BCOPY
-+#if !defined USE_AS_BCOPY
- ENTRY (MEMCPY_CHK)
- 	movl	12(%esp), %eax
- 	cmpl	%eax, 16(%esp)
-diff --git a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S
-index ec9eeb9..f64f8d2 100644
---- a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S
-+++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S
-@@ -110,7 +110,7 @@ __i686.get_pc_thunk.bx:
- #endif
- 
- 	.section .text.ssse3,"ax",@progbits
--#if defined SHARED && !defined NOT_IN_libc && !defined USE_AS_BCOPY
-+#if !defined USE_AS_BCOPY
- ENTRY (MEMCPY_CHK)
- 	movl	12(%esp), %eax
- 	cmpl	%eax, 16(%esp)
-diff --git a/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S b/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S
-index 48c974e..bdd114a 100644
---- a/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S
-+++ b/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S
-@@ -49,7 +49,7 @@
-   ud2
- 
- 	.section .text.ssse3,"ax",@progbits
--#if defined SHARED && !defined NOT_IN_libc
-+#if !defined USE_AS_BCOPY
- ENTRY (MEMCPY_CHK)
- 	cmpq	%rdx, %rcx
- 	jb	HIDDEN_JUMPTARGET (__chk_fail)
-diff --git a/sysdeps/x86_64/multiarch/memcpy-ssse3.S b/sysdeps/x86_64/multiarch/memcpy-ssse3.S
-index 9a878d3..cd7e45f 100644
---- a/sysdeps/x86_64/multiarch/memcpy-ssse3.S
-+++ b/sysdeps/x86_64/multiarch/memcpy-ssse3.S
-@@ -49,7 +49,7 @@
-   ud2
- 
- 	.section .text.ssse3,"ax",@progbits
--#if defined SHARED && !defined NOT_IN_libc
-+#if !defined USE_AS_BCOPY
- ENTRY (MEMCPY_CHK)
- 	cmpq	%rdx, %rcx
- 	jb	HIDDEN_JUMPTARGET (__chk_fail)

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2011-06-23 19:18:29 UTC (rev 4743)
+++ glibc-package/trunk/debian/patches/series	2011-06-26 19:55:00 UTC (rev 4744)
@@ -152,7 +152,6 @@
 i386/local-pthread_cond_wait.diff
 i386/submitted-i686-timing.diff
 i386/cvs-cacheinfo.diff
-i386/cvs-memmove-static.diff
 
 m68k/local-compat.diff
 m68k/local-dwarf2-buildfix.diff
@@ -248,7 +247,6 @@
 any/local-gai-rfc1918-scope-global.patch
 any/local-dlfptr.diff
 any/submitted-string2-strcmp.diff
-any/cvs-glro_dl_debug_mask.diff
 any/submitted-ldsodefs_rtld_debug.diff
 any/local-relro-mprotect.diff
 any/cvs-dl-missing-deps.diff

Modified: glibc-package/trunk/debian/patches/svn-updates.diff
===================================================================
--- glibc-package/trunk/debian/patches/svn-updates.diff	2011-06-23 19:18:29 UTC (rev 4743)
+++ glibc-package/trunk/debian/patches/svn-updates.diff	2011-06-26 19:55:00 UTC (rev 4744)
@@ -1,8 +1,17 @@
 SVN update of svn://svn.eglibc.org/branches/eglibc-2_13 from revision 12776
 
---- a/ChangeLog	(revision 12776)
-+++ b/ChangeLog	(revision 13933)
-@@ -1,3 +1,27 @@
+--- a/ChangeLog	(révision 12776)
++++ b/ChangeLog	(révision 14337)
+@@ -1,3 +1,36 @@
++2011-02-06  Mike Frysinger  <vapier@gentoo.org>
++
++	[BZ #12653]
++	* sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
++	MEMCPY_CHK with USE_AS_BCOPY ifdef check.
++	* sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
++	* sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
++	* sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
++
 +2010-09-28  Andreas Schwab  <schwab@redhat.com>
 +	    Ulrich Drepper  <drepper@gmail.com>
 +
@@ -30,16 +39,16 @@
  2011-02-02  Ulrich Drepper  <drepper@gmail.com>
  
  	* elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
---- a/sysdeps/powerpc/powerpc64/power7/Makefile	(revision 0)
-+++ b/sysdeps/powerpc/powerpc64/power7/Makefile	(revision 13933)
+--- a/sysdeps/powerpc/powerpc64/power7/Makefile	(révision 0)
++++ b/sysdeps/powerpc/powerpc64/power7/Makefile	(révision 14337)
 @@ -0,0 +1,5 @@
 +ifeq ($(subdir),elf)
 +# Prevent the use of VSX registers and insns in _dl_start, which under -O3
 +# optimization may require a TOC reference before relocations are resolved.
 +CFLAGS-rtld.c += -mno-vsx
 +endif
---- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h	(revision 12776)
-+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h	(revision 13933)
+--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h	(révision 12776)
++++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h	(révision 14337)
 @@ -172,7 +172,7 @@
         : "r9", "r10", "r11", "r12",					\
           "cr0", "ctr", "lr", "memory");					\
@@ -58,8 +67,30 @@
    })
  #define INTERNAL_SYSCALL(name, err, nr, args...)			\
    INTERNAL_SYSCALL_NCS (__NR_##name, err, nr, args)
---- a/sysdeps/wordsize-64/tst-writev.c	(revision 0)
-+++ b/sysdeps/wordsize-64/tst-writev.c	(revision 13933)
+--- a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S	(révision 12776)
++++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S	(révision 14337)
+@@ -110,7 +110,7 @@
+ #endif
+ 
+ 	.section .text.ssse3,"ax",@progbits
+-#if defined SHARED && !defined NOT_IN_libc && !defined USE_AS_BCOPY
++#if !defined USE_AS_BCOPY
+ ENTRY (MEMCPY_CHK)
+ 	movl	12(%esp), %eax
+ 	cmpl	%eax, 16(%esp)
+--- a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S	(révision 12776)
++++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S	(révision 14337)
+@@ -110,7 +110,7 @@
+ #endif
+ 
+ 	.section .text.ssse3,"ax",@progbits
+-#if defined SHARED && !defined NOT_IN_libc && !defined USE_AS_BCOPY
++#if !defined USE_AS_BCOPY
+ ENTRY (MEMCPY_CHK)
+ 	movl	12(%esp), %eax
+ 	cmpl	%eax, 16(%esp)
+--- a/sysdeps/wordsize-64/tst-writev.c	(révision 0)
++++ b/sysdeps/wordsize-64/tst-writev.c	(révision 14337)
 @@ -0,0 +1,107 @@
 +/* Copyright (C) 2011 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -168,8 +199,8 @@
 +
 +#define TEST_FUNCTION do_test ()
 +#include "../test-skeleton.c"
---- a/sysdeps/wordsize-64/Makefile	(revision 0)
-+++ b/sysdeps/wordsize-64/Makefile	(revision 13933)
+--- a/sysdeps/wordsize-64/Makefile	(révision 0)
++++ b/sysdeps/wordsize-64/Makefile	(révision 14337)
 @@ -0,0 +1,6 @@
 +ifeq ($(subdir),misc)
 +tests += tst-writev
@@ -177,19 +208,93 @@
 +# Time enough for a large writev syscall to complete.
 +tst-writev-ENV = TIMEOUTFACTOR="10"
 +endif
---- a/NEWS	(revision 12776)
-+++ b/NEWS	(revision 13933)
+--- a/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S	(révision 12776)
++++ b/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S	(révision 14337)
+@@ -49,7 +49,7 @@
+   ud2
+ 
+ 	.section .text.ssse3,"ax",@progbits
+-#if defined SHARED && !defined NOT_IN_libc
++#if !defined USE_AS_BCOPY
+ ENTRY (MEMCPY_CHK)
+ 	cmpq	%rdx, %rcx
+ 	jb	HIDDEN_JUMPTARGET (__chk_fail)
+--- a/sysdeps/x86_64/multiarch/memcpy-ssse3.S	(révision 12776)
++++ b/sysdeps/x86_64/multiarch/memcpy-ssse3.S	(révision 14337)
+@@ -49,7 +49,7 @@
+   ud2
+ 
+ 	.section .text.ssse3,"ax",@progbits
+-#if defined SHARED && !defined NOT_IN_libc
++#if !defined USE_AS_BCOPY
+ ENTRY (MEMCPY_CHK)
+ 	cmpq	%rdx, %rcx
+ 	jb	HIDDEN_JUMPTARGET (__chk_fail)
+--- a/NEWS	(révision 12776)
++++ b/NEWS	(révision 14337)
 @@ -13,7 +13,7 @@
    11655, 11701, 11840, 11856, 11883, 11903, 11904, 11968, 11979, 12005,
    12037, 12067, 12077, 12078, 12092, 12093, 12107, 12108, 12113, 12140,
    12159, 12167, 12191, 12194, 12201, 12204, 12205, 12207, 12348, 12378,
 -  12394, 12397
-+  12394, 12397, 12489
++  12394, 12397, 12489, 12653
  
  * New Linux interfaces: prlimit, prlimit64, fanotify_init, fanotify_mark
  
---- a/elf/rtld.c	(revision 12776)
-+++ b/elf/rtld.c	(revision 13933)
+--- a/resolv/res_libc.c	(révision 12776)
++++ b/resolv/res_libc.c	(révision 14337)
+@@ -28,6 +28,7 @@
+    out) since res_init() should go into libc.so but the rest of that
+    file should not.  */
+ 
++__libc_lock_define_initialized (static, lock);
+ extern unsigned long long int __res_initstamp attribute_hidden;
+ /* We have atomic increment operations on 64-bit platforms.  */
+ #if __WORDSIZE == 64
+@@ -35,7 +36,6 @@
+ # define atomicincunlock(lock) (void) 0
+ # define atomicinc(var) catomic_increment (&(var))
+ #else
+-__libc_lock_define_initialized (static, lock);
+ # define atomicinclock(lock) __libc_lock_lock (lock)
+ # define atomicincunlock(lock) __libc_lock_unlock (lock)
+ # define atomicinc(var) ++var
+@@ -100,12 +100,12 @@
+ 
+ 	if (resp->options & RES_INIT) {
+ 		ret = stat (_PATH_RESCONF, &statbuf);
++		__libc_lock_lock (lock);
+ 		if ((ret == 0) && (last_mtime != statbuf.st_mtime)) {
+ 			last_mtime = statbuf.st_mtime;
+-			atomicinclock (lock);
+ 			atomicinc (__res_initstamp);
+-			atomicincunlock (lock);
+ 		}
++		__libc_lock_unlock (lock);
+ 		if (__res_initstamp != resp->_u._ext.initstamp) {
+ 			if (resp->nscount > 0)
+ 				__res_iclose (resp, true);
+--- a/ChangeLog.eglibc	(révision 12776)
++++ b/ChangeLog.eglibc	(révision 14337)
+@@ -1,3 +1,16 @@
++2011-06-23  Maxim Kuvyrkov  <maxim@codesourcery.com>
++
++	Backport from trunk:
++	2011-06-23  Paul Pluzhnikov  <ppluzhnikov@google.com>
++	* resolv/res_libc.c (__res_initstamp): Declare unconditionally.
++	(__res_maybe_init): Avoid double-checked locking.
++
++2011-06-10  Maxim Kuvyrkov  <maxim@codesourcery.com>
++
++	Backport from trunk:
++	2011-02-28  Denis Zaitceff  <zaitceff@gmail.com>
++	* elf/dl-lookup.c (GLRO_dl_debug_mask): Apply the forgotten one.
++
+ 2010-12-19  Gordon Schumacher  <whiplash@pobox.com>
+ 
+ 	* locale/xlocale.x (DEFINE_CATEGORY): Fix merge issue.
+--- a/elf/rtld.c	(révision 12776)
++++ b/elf/rtld.c	(révision 14337)
 @@ -1,5 +1,5 @@
  /* Run time dynamic linker.
 -   Copyright (C) 1995-2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
@@ -220,8 +325,19 @@
  
    if (! prelinked && rtld_multiple_ref)
      {
---- a/ports/sysdeps/arm/sysdep.h	(revision 12776)
-+++ b/ports/sysdeps/arm/sysdep.h	(revision 13933)
+--- a/elf/dl-lookup.c	(révision 12776)
++++ b/elf/dl-lookup.c	(révision 14337)
+@@ -423,7 +423,7 @@
+ 		     hash table.  */
+ 		  if (__builtin_expect (tab->size, 0))
+ 		    {
+-		      assert (GLRO(dl_debug_mask) & DL_DEBUG_PRELINK);
++		      assert (GLRO_dl_debug_mask & DL_DEBUG_PRELINK);
+ 		      __rtld_lock_unlock_recursive (tab->lock);
+ 		      goto success;
+ 		    }
+--- a/ports/sysdeps/arm/sysdep.h	(révision 12776)
++++ b/ports/sysdeps/arm/sysdep.h	(révision 14337)
 @@ -18,6 +18,7 @@
     02111-1307 USA.  */
  
@@ -269,8 +385,8 @@
  
  #if defined(__ARM_EABI__)
  /* Tag_ABI_align8_preserved: This code preserves 8-byte
---- a/ports/sysdeps/arm/eabi/fsetexcptflg.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fsetexcptflg.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fsetexcptflg.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fsetexcptflg.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -286,8 +402,8 @@
  
  #include <fenv.h>
  #include <math.h>
---- a/ports/sysdeps/arm/eabi/fegetround.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fegetround.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fegetround.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fegetround.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -303,8 +419,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/fegetenv.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fegetenv.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fegetenv.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fegetenv.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -320,8 +436,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/fesetround.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fesetround.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fesetround.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fesetround.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -337,8 +453,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/fesetenv.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fesetenv.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fesetenv.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fesetenv.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -354,8 +470,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/setjmp.S	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/setjmp.S	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/setjmp.S	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/setjmp.S	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -371,8 +487,8 @@
  
  #include <sysdep.h>
  #define _SETJMP_H
---- a/ports/sysdeps/arm/eabi/ftestexcept.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/ftestexcept.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/ftestexcept.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/ftestexcept.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -388,8 +504,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/fpu_control.h	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fpu_control.h	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fpu_control.h	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fpu_control.h	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -405,8 +521,8 @@
  
  #ifndef _FPU_CONTROL_H
  #define _FPU_CONTROL_H
---- a/ports/sysdeps/arm/eabi/fegetexcept.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fegetexcept.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fegetexcept.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fegetexcept.c	(révision 14337)
 @@ -13,10 +13,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -422,8 +538,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/feholdexcpt.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/feholdexcpt.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/feholdexcpt.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/feholdexcpt.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -439,8 +555,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/fedisblxcpt.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fedisblxcpt.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fedisblxcpt.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fedisblxcpt.c	(révision 14337)
 @@ -13,10 +13,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -456,8 +572,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/fraiseexcpt.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fraiseexcpt.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fraiseexcpt.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fraiseexcpt.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -473,8 +589,8 @@
  
  #include <fpu_control.h>
  #include <fenv.h>
---- a/ports/sysdeps/arm/eabi/bits/fenv.h	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/bits/fenv.h	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/bits/fenv.h	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/bits/fenv.h	(révision 14337)
 @@ -11,10 +11,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -490,8 +606,8 @@
  
  #ifndef _FENV_H
  # error "Never use <bits/fenv.h> directly; include <fenv.h> instead."
---- a/ports/sysdeps/arm/eabi/bits/predefs.h	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/bits/predefs.h	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/bits/predefs.h	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/bits/predefs.h	(révision 14337)
 @@ -11,10 +11,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -507,8 +623,8 @@
  
  #ifndef _FEATURES_H
  # error "Never use <bits/predefs.h> directly; include <features.h> instead."
---- a/ports/sysdeps/arm/eabi/__longjmp.S	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/__longjmp.S	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/__longjmp.S	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/__longjmp.S	(révision 14337)
 @@ -13,10 +13,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -524,8 +640,8 @@
  
  #include <sysdep.h>
  #define _SETJMP_H
---- a/ports/sysdeps/arm/eabi/fclrexcpt.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/fclrexcpt.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/fclrexcpt.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/fclrexcpt.c	(révision 14337)
 @@ -12,10 +12,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -541,8 +657,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/arm/eabi/feenablxcpt.c	(revision 12776)
-+++ b/ports/sysdeps/arm/eabi/feenablxcpt.c	(revision 13933)
+--- a/ports/sysdeps/arm/eabi/feenablxcpt.c	(révision 12776)
++++ b/ports/sysdeps/arm/eabi/feenablxcpt.c	(révision 14337)
 @@ -13,10 +13,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -558,8 +674,8 @@
  
  #include <fenv.h>
  #include <fpu_control.h>
---- a/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S	(revision 12776)
-+++ b/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S	(revision 13933)
+--- a/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S	(révision 12776)
++++ b/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S	(révision 14337)
 @@ -11,10 +11,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -575,8 +691,8 @@
  
  #include <sysdep.h>
  
---- a/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S	(revision 12776)
-+++ b/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S	(revision 13933)
+--- a/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S	(révision 12776)
++++ b/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S	(révision 14337)
 @@ -11,10 +11,10 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
@@ -623,8 +739,8 @@
  	CALL_FAIL				\
  	cfi_restore_state;			\
  .Lok2:						\
---- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list	(revision 12776)
-+++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list	(revision 13933)
+--- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list	(révision 12776)
++++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list	(révision 14337)
 @@ -1,5 +1,7 @@
  # File name	Caller	Syscall name	# args	Strong name	Weak names
  
@@ -633,8 +749,8 @@
  prlimit		EXTRA	prlimit64	i:iipp	prlimit		prlimit64
  
  fanotify_mark	EXTRA	fanotify_mark	i:iiiis	fanotify_mark
---- a/ports/ChangeLog.mips	(revision 12776)
-+++ b/ports/ChangeLog.mips	(revision 13933)
+--- a/ports/ChangeLog.mips	(révision 12776)
++++ b/ports/ChangeLog.mips	(révision 14337)
 @@ -1,3 +1,8 @@
 +2011-04-01  Joseph Myers  <joseph@codesourcery.com>
 +
@@ -644,8 +760,8 @@
  2011-01-25  Joseph Myers  <joseph@codesourcery.com>
  
  	* sysdeps/unix/sysv/linux/mips/bits/mman.h (MADV_HUGEPAGE,
---- a/ports/ChangeLog.arm	(revision 12776)
-+++ b/ports/ChangeLog.arm	(revision 13933)
+--- a/ports/ChangeLog.arm	(révision 12776)
++++ b/ports/ChangeLog.arm	(révision 14337)
 @@ -1,3 +1,29 @@
 +2011-04-01  Ryosei Takagi  <ryosei@sm.sony.co.jp>
 +
@@ -676,8 +792,8 @@
  2011-01-25  Joseph Myers  <joseph@codesourcery.com>
  
  	* sysdeps/unix/sysv/linux/arm/bits/mman.h (MADV_HUGEPAGE,
---- a/ports/ChangeLog.eglibc	(revision 12776)
-+++ b/ports/ChangeLog.eglibc	(revision 13933)
+--- a/ports/ChangeLog.eglibc	(révision 12776)
++++ b/ports/ChangeLog.eglibc	(révision 14337)
 @@ -1,3 +1,8 @@
 +2011-03-21  Joseph Myers  <joseph@codesourcery.com>
 +


Reply to: