]> git.pld-linux.org Git - packages/glibc.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 7 May 2008 17:35:51 +0000 (17:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    glibc-awk.patch -> 1.2
    glibc-fnstsw.patch -> 1.2
    glibc-i586-build-fix.patch -> 1.2
    glibc-memmove.patch -> 1.3
    glibc-tzfile_read.patch -> 1.2

glibc-awk.patch [deleted file]
glibc-fnstsw.patch [deleted file]
glibc-i586-build-fix.patch [deleted file]
glibc-memmove.patch [deleted file]
glibc-tzfile_read.patch [deleted file]

diff --git a/glibc-awk.patch b/glibc-awk.patch
deleted file mode 100644 (file)
index df5b319..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- elf/Makefile~      2007-08-16 23:20:11.000000000 +0200
-+++ elf/Makefile       2007-10-19 08:28:03.299291027 +0200
-@@ -308,7 +308,7 @@
-                 -Wl,-soname=$(rtld-installed-name) -T $@.lds
-       rm -f $@.lds
-       readelf -s $@ \
--        | awk '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
-+        | $(AWK) '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }'
- # interp.c exists just to get this string into the libraries.
- CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"' \
diff --git a/glibc-fnstsw.patch b/glibc-fnstsw.patch
deleted file mode 100644 (file)
index 21b49d8..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: sysdeps/i386/fpu/ftestexcept.c
-===================================================================
-RCS file: /cvs/glibc/libc/sysdeps/i386/fpu/ftestexcept.c,v
-retrieving revision 1.5
-retrieving revision 1.6
-diff -u -u -r1.5 -r1.6
---- sysdeps/i386/fpu/ftestexcept.c     5 Mar 2004 10:14:48 -0000       1.5
-+++ sysdeps/i386/fpu/ftestexcept.c     22 Jan 2008 18:36:15 -0000      1.6
-@@ -26,7 +26,7 @@
- int
- fetestexcept (int excepts)
- {
--  int temp;
-+  short temp;
-   int xtemp = 0;
-   /* Get current exceptions.  */
diff --git a/glibc-i586-build-fix.patch b/glibc-i586-build-fix.patch
deleted file mode 100644 (file)
index 7b45065..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-diff -urN glibc-2.7.orig/sysdeps/i386/i586/memcpy_chk.S glibc-2.7/sysdeps/i386/i586/memcpy_chk.S
---- glibc-2.7.orig/sysdeps/i386/i586/memcpy_chk.S      1970-01-01 01:00:00.000000000 +0100
-+++ glibc-2.7/sysdeps/i386/i586/memcpy_chk.S   2005-05-14 19:52:13.000000000 +0200
-@@ -0,0 +1,35 @@
-+/* Checking memcpy for i686.
-+   Copyright (C) 2004 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.  */
-+
-+#include <sysdep.h>
-+#include "asm-syntax.h"
-+
-+#ifndef PIC
-+      /* For libc.so this is defined in memcpy.S.
-+         For libc.a, this is a separate source to avoid
-+         memcpy bringing in __chk_fail and all routines
-+         it calls.  */
-+        .text
-+ENTRY (__memcpy_chk)
-+      movl    12(%esp), %eax
-+      cmpl    %eax, 16(%esp)
-+      jb      __chk_fail
-+      jmp     memcpy
-+END (__memcpy_chk)
-+#endif
-diff -urN glibc-2.7.orig/sysdeps/i386/i586/mempcpy_chk.S glibc-2.7/sysdeps/i386/i586/mempcpy_chk.S
---- glibc-2.7.orig/sysdeps/i386/i586/mempcpy_chk.S     1970-01-01 01:00:00.000000000 +0100
-+++ glibc-2.7/sysdeps/i386/i586/mempcpy_chk.S  2004-10-18 06:17:11.000000000 +0200
-@@ -0,0 +1,35 @@
-+/* Checking mempcpy for x86-64.
-+   Copyright (C) 2004 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.  */
-+
-+#include <sysdep.h>
-+#include "asm-syntax.h"
-+
-+#ifndef PIC
-+      /* For libc.so this is defined in mempcpy.S.
-+         For libc.a, this is a separate source to avoid
-+         mempcpy bringing in __chk_fail and all routines
-+         it calls.  */
-+        .text
-+ENTRY (__mempcpy_chk)
-+      movl    12(%esp), %eax
-+      cmpl    %eax, 16(%esp)
-+      jb      __chk_fail
-+      jmp     mempcpy
-+END (__mempcpy_chk)
-+#endif
-diff -urN glibc-2.7.orig/sysdeps/i386/i586/memset_chk.S glibc-2.7/sysdeps/i386/i586/memset_chk.S
---- glibc-2.7.orig/sysdeps/i386/i586/memset_chk.S      1970-01-01 01:00:00.000000000 +0100
-+++ glibc-2.7/sysdeps/i386/i586/memset_chk.S   2005-03-01 01:13:36.000000000 +0100
-@@ -0,0 +1,35 @@
-+/* Checking memset for i686.
-+   Copyright (C) 2004, 2005 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.  */
-+
-+#include <sysdep.h>
-+#include "asm-syntax.h"
-+
-+#ifndef PIC
-+      /* For libc.so this is defined in memset.S.
-+         For libc.a, this is a separate source to avoid
-+         memset bringing in __chk_fail and all routines
-+         it calls.  */
-+        .text
-+ENTRY (__memset_chk)
-+      movl    12(%esp), %eax
-+      cmpl    %eax, 16(%esp)
-+      jb      __chk_fail
-+      jmp     memset
-+END (__memset_chk)
-+#endif
diff --git a/glibc-memmove.patch b/glibc-memmove.patch
deleted file mode 100644 (file)
index 32a6422..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---- glibc-2.7/sysdeps/i386/i486/bits/string.h.org      2007-10-22 21:50:36.334678376 +0200
-+++ glibc-2.7/sysdeps/i386/i486/bits/string.h  2007-10-22 21:51:23.763943169 +0200
-@@ -143,10 +143,12 @@
- #define _HAVE_STRING_ARCH_memmove 1
- #ifndef _FORCE_INLINES
-+#define memmove(dest, src, n) \
-+      __memmove_g ((dest), (src), (n))
- /* Copy N bytes of SRC to DEST, guaranteeing
-    correct behavior for overlapping strings.  */
- __STRING_INLINE void *
--memmove (void *__dest, __const void *__src, size_t __n)
-+__memmove_g (void *__dest, __const void *__src, size_t __n)
- {
-   register unsigned long int __d0, __d1, __d2;
-   register void *__tmp = __dest;
diff --git a/glibc-tzfile_read.patch b/glibc-tzfile_read.patch
deleted file mode 100644 (file)
index 81d8045..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- glibc-2.7/time/tzfile.c.orig       2007-11-01 11:28:53.717388999 +0000
-+++ glibc-2.7/time/tzfile.c    2007-11-01 11:29:33.711287677 +0000
-@@ -381,7 +381,7 @@
-       else
-       tzspec[tzspec_len - 1] = '\0';
-     }
--  else if (sizeof (time_t) == 4 && tzhead.tzh_version != '\0')
-+  else if (sizeof (time_t) == 4 && tzhead.tzh_version[0] != '\0')
-     {
-       /* Get the TZ string.  */
-       if (__builtin_expect (fread_unlocked ((void *) &tzhead, sizeof (tzhead),
This page took 0.055206 seconds and 4 git commands to generate.