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

r1348 - in glibc-package/trunk/debian/patches: . any arm m68k s390



Author: aurel32
Date: 2006-04-08 15:24:22 +0000 (Sat, 08 Apr 2006)
New Revision: 1348

Removed:
   glibc-package/trunk/debian/patches/any/cvs-glibc-make-check-perms.diff
   glibc-package/trunk/debian/patches/any/local-ctype-compat.diff
   glibc-package/trunk/debian/patches/any/local-errno-hack.diff
   glibc-package/trunk/debian/patches/any/local-errno.diff
   glibc-package/trunk/debian/patches/any/local-function-compat.diff
   glibc-package/trunk/debian/patches/arm/local-output-format.diff
   glibc-package/trunk/debian/patches/m68k/submitted-linuxthreads-fPIC.diff
   glibc-package/trunk/debian/patches/s390/submitted-tls.diff
Modified:
   glibc-package/trunk/debian/patches/series
Log:
Remove old unused patches



Deleted: glibc-package/trunk/debian/patches/any/cvs-glibc-make-check-perms.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/cvs-glibc-make-check-perms.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/any/cvs-glibc-make-check-perms.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,24 +0,0 @@
-# DP: Description: Fix a permission denied during make check
-# DP: Author: Daniel Jacobowitz <dan@debian.org>
-# DP: Upstream status: Submitted
-# DP: Date: 2003-10-12
-
-2003-10-12  Daniel Jacobowitz  <drow@mvista.com>
-
-	* Makefile (tests): Make sure check-c++-types.sh is executable.
-
-Index: glibc/Makefile
-===================================================================
-RCS file: /big/fsf/rsync/glibc-cvs/libc/Makefile,v
-retrieving revision 1.234
-diff -u -p -r1.234 Makefile
---- glibc/Makefile	9 Sep 2003 02:30:15 -0000	1.234
-+++ glibc/Makefile	12 Oct 2003 23:24:08 -0000
-@@ -232,6 +232,7 @@ tests: $(objpfx)c++-types-check.out
- ifneq ($(CXX),no)
- ifneq (,$(wildcard scripts/data/c++-types-$(base-machine)-$(config-os).data))
- $(objpfx)c++-types-check.out: scripts/data/c++-types-$(base-machine)-$(config-os).data
-+	chmod a+x scripts/check-c++-types.sh
- 	scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99,$(CFLAGS)) $(CPPFLAGS) > $@
- else
- $(objpfx)c++-types-check.out:

Deleted: glibc-package/trunk/debian/patches/any/local-ctype-compat.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/local-ctype-compat.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/any/local-ctype-compat.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,100 +0,0 @@
-# DP: Description: 
-# DP:	glibc 2.3.x changes some symbols (__ctype_b, __ctype_toupper, 
-# DP:	__ctype_tolower) as hidden attribute. These symbols that are
-# DP:	crashing the old 2.2.x dynamic linking code in static binaries
-# DP:	are now exported.
-# DP:	This patch is originally pulled from RedHat patch, I modified
-# DP:	it for current debian glibc.
-# DP: Original Author: RedHat glibc-2.2.93 cygnus-to-redhat patch
-# DP: Applying Author: GOTO Masanori <gotom@debian.org>
-# DP: Upstream status: Debian/Redhat Specific
-# DP: Status Details: We apply for a while (until sarge freeze?)
-# DP: Date: 2002-10-21
-# DP: Updated: 2002-12-02
-
---- glibc-2.3.1-cygnus/ctype/ctype-info.c	28 Sep 2002 20:36:35 -0000	1.1.1.9
-+++ glibc-2.3.1-redhat/ctype/ctype-info.c	29 Sep 2002 11:38:50 -0000	1.4
-@@ -48,18 +48,32 @@ extern const char _nl_C_LC_CTYPE_class_a
- 
- #define b(t,x,o) (((const t *) _nl_C_LC_CTYPE_##x) + o)
- 
-+// const unsigned short int *__ctype_b = b (unsigned short int, class, 128);
-+// const __uint32_t *__ctype32_b = b (__uint32_t, class32, 0);
-+// const __int32_t *__ctype_tolower = b (__int32_t, tolower, 128);
-+// const __int32_t *__ctype_toupper = b (__int32_t, toupper, 128);
-+// const __uint32_t *__ctype32_tolower = b (__uint32_t, tolower, 128);
-+// const __uint32_t *__ctype32_toupper = b (__uint32_t, toupper, 128);
-+
-+// compat_symbol (libc, __ctype_b, __ctype_b, GLIBC_2_0);
-+// compat_symbol (libc, __ctype_tolower, __ctype_tolower, GLIBC_2_0);
-+// compat_symbol (libc, __ctype_toupper, __ctype_toupper, GLIBC_2_0);
-+// compat_symbol (libc, __ctype32_b, __ctype32_b, GLIBC_2_0);
-+// compat_symbol (libc, __ctype32_tolower, __ctype32_tolower, GLIBC_2_2);
-+// compat_symbol (libc, __ctype32_toupper, __ctype32_toupper, GLIBC_2_2);
-+
-+#endif
-+
-+/* Temporarily exported until all .a libraries are recompiled.  */
-+#undef b
-+#define b(t,x,o) (((const t *) _nl_C_LC_CTYPE_##x) + o)
-+extern const char _nl_C_LC_CTYPE_class[] attribute_hidden;
-+extern const char _nl_C_LC_CTYPE_class32[] attribute_hidden;
-+extern const char _nl_C_LC_CTYPE_toupper[] attribute_hidden;
-+extern const char _nl_C_LC_CTYPE_tolower[] attribute_hidden;
- const unsigned short int *__ctype_b = b (unsigned short int, class, 128);
- const __uint32_t *__ctype32_b = b (__uint32_t, class32, 0);
- const __int32_t *__ctype_tolower = b (__int32_t, tolower, 128);
- const __int32_t *__ctype_toupper = b (__int32_t, toupper, 128);
- const __uint32_t *__ctype32_tolower = b (__uint32_t, tolower, 128);
- const __uint32_t *__ctype32_toupper = b (__uint32_t, toupper, 128);
--
--compat_symbol (libc, __ctype_b, __ctype_b, GLIBC_2_0);
--compat_symbol (libc, __ctype_tolower, __ctype_tolower, GLIBC_2_0);
--compat_symbol (libc, __ctype_toupper, __ctype_toupper, GLIBC_2_0);
--compat_symbol (libc, __ctype32_b, __ctype32_b, GLIBC_2_0);
--compat_symbol (libc, __ctype32_tolower, __ctype32_tolower, GLIBC_2_2);
--compat_symbol (libc, __ctype32_toupper, __ctype32_toupper, GLIBC_2_2);
--
--#endif
---- glibc-2.3.1-cygnus/locale/lc-ctype.c	28 Sep 2002 20:37:14 -0000	1.1.1.8
-+++ glibc-2.3.1-redhat/locale/lc-ctype.c	29 Sep 2002 11:38:51 -0000	1.5
-@@ -75,18 +75,32 @@ _nl_postload_ctype (void)
-      We need those relocations so that a versioned definition with a COPY
-      reloc in an executable will override the libc.so definition.  */
- 
--compat_symbol (libc, __ctype_b, __ctype_b, GLIBC_2_0);
--compat_symbol (libc, __ctype_tolower, __ctype_tolower, GLIBC_2_0);
--compat_symbol (libc, __ctype_toupper, __ctype_toupper, GLIBC_2_0);
--compat_symbol (libc, __ctype32_b, __ctype32_b, GLIBC_2_0);
--compat_symbol (libc, __ctype32_tolower, __ctype32_tolower, GLIBC_2_2);
--compat_symbol (libc, __ctype32_toupper, __ctype32_toupper, GLIBC_2_2);
-+// compat_symbol (libc, __ctype_b, __ctype_b, GLIBC_2_0);
-+// compat_symbol (libc, __ctype_tolower, __ctype_tolower, GLIBC_2_0);
-+// compat_symbol (libc, __ctype_toupper, __ctype_toupper, GLIBC_2_0);
-+// compat_symbol (libc, __ctype32_b, __ctype32_b, GLIBC_2_0);
-+// compat_symbol (libc, __ctype32_tolower, __ctype32_tolower, GLIBC_2_2);
-+// compat_symbol (libc, __ctype32_toupper, __ctype32_toupper, GLIBC_2_2);
- 
-+//  __ctype_b = current (uint16_t, CLASS, 128);
-+//  __ctype_toupper = current (uint32_t, TOUPPER, 128);
-+//  __ctype_tolower = current (uint32_t, TOLOWER, 128);
-+//  __ctype32_b = current (uint32_t, CLASS32, 0);
-+//  __ctype32_toupper = current (uint32_t, TOUPPER32, 0);
-+//  __ctype32_tolower = current (uint32_t, TOLOWER32, 0);
-+#endif
-+
-+  /* Temporary.  */
-+  extern __const unsigned short int *__ctype_b; /* Characteristics.  */
-+  extern __const __int32_t *__ctype_tolower; /* Case conversions.  */
-+  extern __const __int32_t *__ctype_toupper; /* Case conversions.  */
-+  extern const uint32_t *__ctype32_b;
-+  extern const uint32_t *__ctype32_toupper;
-+  extern const uint32_t *__ctype32_tolower;
-   __ctype_b = current (uint16_t, CLASS, 128);
-   __ctype_toupper = current (uint32_t, TOUPPER, 128);
-   __ctype_tolower = current (uint32_t, TOLOWER, 128);
-   __ctype32_b = current (uint32_t, CLASS32, 0);
-   __ctype32_toupper = current (uint32_t, TOUPPER32, 0);
-   __ctype32_tolower = current (uint32_t, TOLOWER32, 0);
--#endif
- }

Deleted: glibc-package/trunk/debian/patches/any/local-errno-hack.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/local-errno-hack.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/any/local-errno-hack.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,64 +0,0 @@
-# DP: Description: Force non-NPTL libraries (and warn) for binaries which access errno
-# DP: Author: (?) Someone at Red Hat
-# DP: Upstream status: Debian-Specific
-# DP: Status Details: This patch should be removed, probably after sarge.
-# DP: Date: 2003-11-02
-
---- glibc-2.3.2/elf/rtld.c.orig	2003-11-02 16:12:36.000000000 -0500
-+++ glibc-2.3.2/elf/rtld.c	2003-11-02 16:24:43.000000000 -0500
-@@ -966,6 +966,55 @@ of this helper program; chances are you 
-   GL(dl_rtld_map).l_prev = GL(dl_loaded);
-   ++GL(dl_nloaded);
- 
-+#if defined(__linux__) && defined(__i386__)
-+  /* Debian note: this code imported from Red Hat.  */
-+  /* Force non-TLS libraries for glibc 2.0 binaries
-+     or if a buggy binary references non-TLS errno or h_errno.  */                                     
-+  if (__builtin_expect (GL(dl_loaded)->l_info[DT_NUM
-+					     + DT_THISPROCNUM
-+					     + DT_VERSIONTAGIDX (DT_VERNEED)]
-+			== NULL, 0)
-+      && GL(dl_loaded)->l_info[DT_DEBUG])
-+    GL(dl_osversion) = 0x20401;
-+  else if ((__builtin_expect (mode, normal) != normal
-+	    || GL(dl_loaded)->l_info [ADDRIDX (DT_GNU_LIBLIST)] == NULL)
-+	   /* Only binaries have DT_DEBUG dynamic tags...  */
-+	   && GL(dl_loaded)->l_info[DT_DEBUG])
-+    {
-+      /* Workaround for buggy binaries.  This doesn't handle buggy
-+	 libraries.  */
-+      bool buggy = false;
-+      const ElfW(Sym) *symtab = (const void *) D_PTR (GL(dl_loaded), l_info[DT_SYMTAB]);
-+      const char *strtab = (const void *) D_PTR (GL(dl_loaded), l_info[DT_STRTAB]);
-+      Elf_Symndx symidx;
-+      for (symidx = GL(dl_loaded)->l_buckets[0x6c994f % GL(dl_loaded)->l_nbuckets];
-+	   !buggy && symidx != STN_UNDEF;
-+	   symidx = GL(dl_loaded)->l_chain[symidx])
-+	{
-+	  if (__builtin_expect (strcmp (strtab + symtab[symidx].st_name,
-+					"errno") == 0, 0)
-+	      && ELFW(ST_TYPE) (symtab[symidx].st_info) != STT_TLS)
-+	    buggy = true;
-+	}
-+      for (symidx = GL(dl_loaded)->l_buckets[0xe5c992f % GL(dl_loaded)->l_nbuckets];
-+	   !buggy && symidx != STN_UNDEF;
-+	   symidx = GL(dl_loaded)->l_chain[symidx])
-+	{
-+	  if (__builtin_expect (strcmp (strtab + symtab[symidx].st_name,
-+					"h_errno") == 0, 0)
-+	      && ELFW(ST_TYPE) (symtab[symidx].st_info) != STT_TLS)
-+	    buggy = true;
-+	}
-+      if (__builtin_expect (buggy, false))
-+	{
-+	  if (GL(dl_osversion) > 0x20401)
-+	    GL(dl_osversion) = 0x20401;
-+	  if (0) _dl_error_printf ("ld.so: Incorrectly built binary which accesses errno or h_errno directly.\n"
-+			    "ld.so: See /usr/share/doc/libc6/FAQ.gz.\n");
-+	}
-+    }
-+#endif
-+
-   /* Set up the program header information for the dynamic linker
-      itself.  It is needed in the dl_iterate_phdr() callbacks.  */
-   ElfW(Ehdr) *rtld_ehdr = (ElfW(Ehdr) *) GL(dl_rtld_map).l_map_start;

Deleted: glibc-package/trunk/debian/patches/any/local-errno.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/local-errno.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/any/local-errno.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,51 +0,0 @@
-# DP: Description: Un-hide errno
-# DP: Author: Daniel Jacobowitz <dan@debian.org>
-# DP: Upstream status: Not submitted
-# DP: Status Details: This patch makes errno re-available at link time.
-# DP:    The right solution is to make it only available at run time without
-# DP:    re-breaking old applications.
-# DP:    This patch should not be considered permanent; see libc-alpa
-# DP:    archives for 12/23/2002 for a better alternative (not implemented
-# DP:    yet)
-# DP: Date: Dec 24, 2002
-# DP: Updated: Jan 2, 2003
-
-diff -ur glibc-2.3.1.bak/inet/herrno.c glibc-2.3.1/inet/herrno.c
---- glibc-2.3.1.bak/inet/herrno.c	2003-01-02 10:54:16.000000000 -0500
-+++ glibc-2.3.1/inet/herrno.c	2003-01-02 10:55:25.000000000 -0500
-@@ -38,8 +38,8 @@
-    visible at link time.  Programs must use the accessor functions.  */
- # if defined HAVE_ELF && defined SHARED && defined DO_VERSIONING
- #  include <shlib-compat.h>
--compat_symbol (libc, h_errno, h_errno, GLIBC_2_0);
--compat_symbol (libc, _h_errno, _h_errno, GLIBC_2_0);
-+// compat_symbol (libc, h_errno, h_errno, GLIBC_2_0);
-+// compat_symbol (libc, _h_errno, _h_errno, GLIBC_2_0);
- # endif
- #endif
- 
-diff -ur glibc-2.3.1.bak/resolv/res_libc.c glibc-2.3.1/resolv/res_libc.c
---- glibc-2.3.1.bak/resolv/res_libc.c	2003-01-02 10:54:16.000000000 -0500
-+++ glibc-2.3.1/resolv/res_libc.c	2003-01-02 10:54:45.000000000 -0500
-@@ -87,7 +87,7 @@
-    visible at link time.  Programs must use the accessor functions.  */
- #if defined HAVE_ELF && defined SHARED && defined DO_VERSIONING
- # include <shlib-compat.h>
--compat_symbol (libc, _res, _res, GLIBC_2_0);
-+// compat_symbol (libc, _res, _res, GLIBC_2_0);
- #endif
- 
- #include <shlib-compat.h>
-diff -ur glibc-2.3.1.bak/sysdeps/generic/errno.c glibc-2.3.1/sysdeps/generic/errno.c
---- glibc-2.3.1.bak/sysdeps/generic/errno.c	2003-01-02 10:54:16.000000000 -0500
-+++ glibc-2.3.1/sysdeps/generic/errno.c	2003-01-02 10:55:16.000000000 -0500
-@@ -36,7 +36,7 @@
-    visible at link time.  Programs must use the accessor functions.  */
- # if defined HAVE_ELF && defined SHARED && defined DO_VERSIONING
- #  include <shlib-compat.h>
--compat_symbol (libc, errno, errno, GLIBC_2_0);
--compat_symbol (libc, _errno, _errno, GLIBC_2_0);
-+// compat_symbol (libc, errno, errno, GLIBC_2_0);
-+// compat_symbol (libc, _errno, _errno, GLIBC_2_0);
- # endif
- #endif

Deleted: glibc-package/trunk/debian/patches/any/local-function-compat.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/local-function-compat.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/any/local-function-compat.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,48 +0,0 @@
-# DP: Description: 
-# DP:	Some internal symbols are changed in glibc 2.3.x. The result that
-# DP:	some ill-mannered applications does not run because they use glibc
-# DP:	internal only symbols which cannot be resolved now.
-# DP:	Such symbols are: __libc_wait, __libc_waitpid, __libc_fork, and so on.
-# DP:	We really dislike to keep such bad application binary compatibility
-# DP:	but we decide to adopt this change for condering user upgradablity
-# DP:	from woody to sarge. Thus, this patch should remove when sarge is
-# DP:	released.
-# DP:	This patch is originally pulled from RedHat patch.
-# DP: Original Author: RedHat glibc-2.2.93 cygnus-to-redhat patch
-# DP: Applying Author: GOTO Masanori <gotom@debian.org>
-# DP: Upstream status: Debian/Redhat-Specific
-# DP: Status Details: We apply for a while (until sarge is released)
-# DP: Date: 2002-12-19
-
---- glibc-2.3.1-cygnus/posix/Versions	2002-12-19 00:13:27.000000000 +0900
-+++ glibc-2.3.1-redhat/posix/Versions	2002-12-19 00:14:34.000000000 +0900
-@@ -3,6 +3,9 @@
-     # functions with special/multiple interfaces
-     __bsd_getpgrp; __setpgid; __getpgid;
- 
-+    # This will be GLIBC_PRIVATE, just give Sun JDK some time to catch up
-+    __libc_wait; __libc_waitpid;
-+
-     # functions with required interface outside normal name space
-     _exit;
- 
-@@ -83,6 +86,9 @@
-   GLIBC_2.1.2 {
-     # functions used in other libraries
-     __vfork;
-+
-+    # This will be GLIBC_PRIVATE, just give wine some time to catch up
-+    __libc_fork; 
-   }
-   GLIBC_2.2 {
-     # p*
-@@ -121,7 +127,8 @@
-   GLIBC_PRIVATE {
-     # functions which have an additional interface since they are
-     # are cancelable.
--    __libc_wait; __libc_waitpid; __libc_pause; __libc_nanosleep; __libc_fork;
-+    # __libc_wait; __libc_waitpid;
-+    __libc_pause; __libc_nanosleep; # __libc_fork;
-     __libc_pread; __libc_pread64; __libc_pwrite; __libc_pwrite64;
-     __waitid; __pselect;
-   }

Deleted: glibc-package/trunk/debian/patches/arm/local-output-format.diff
===================================================================
--- glibc-package/trunk/debian/patches/arm/local-output-format.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/arm/local-output-format.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,18 +0,0 @@
-# DP: Very bad hack to avoid BUG line in libc.so on arm
-
-Index: scripts/output-format.sed
-===================================================================
-RCS file: /cvs/glibc/libc/scripts/output-format.sed,v
-retrieving revision 1.2
-diff -u -r1.2 output-format.sed
---- scripts/output-format.sed	8 Dec 2002 08:13:16 -0000	1.2
-+++ scripts/output-format.sed	26 Aug 2003 15:01:13 -0000
-@@ -18,7 +18,7 @@
- s/\n//
- s/^\([^,]*\),\([^,]*\),B/OUTPUT_FORMAT(\1)/p
- s/^\([^,]*\),\([^,]*\),L/OUTPUT_FORMAT(\2)/p
--/,/s|^|*** BUG in libc/scripts/output-format.sed *** |p
-+/,/Q
- q
- : q
- s/"//g

Deleted: glibc-package/trunk/debian/patches/m68k/submitted-linuxthreads-fPIC.diff
===================================================================
--- glibc-package/trunk/debian/patches/m68k/submitted-linuxthreads-fPIC.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/m68k/submitted-linuxthreads-fPIC.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,28 +0,0 @@
-# DP: Description: Fix m68k compilation to remove linuxthreads o-iterator.
-# DP: Related bugs: 
-# DP: Dpatch author: GOTO Masanori <gotom@debian.org>
-# DP: Patch author: GOTO Masanori <gotom@debian.org>
-# DP: Upstream status: Not submitted
-# DP: Status Details: Will be submitted.
-# DP: Date: 2005-03-16
-
-2004-12-17  GOTO Masanori  <gotom@debian.or.jp>
-
-	* linuxthreads/sysdeps/m68k/Makefile: Removed to delete unneeded
-	o-iterator which adds for -fPIC.
-
-Index: linuxthreads/sysdeps/m68k/Makefile
-===================================================================
-RCS file: /cvs/glibc/libc/linuxthreads/sysdeps/m68k/Makefile,v
-retrieving revision 1.1
-diff -u -r1.1 Makefile
---- linuxthreads/sysdeps/m68k/Makefile	5 Jan 2003 17:15:43 -0000	1.1
-+++ /dev/null	16 Dec 2004 16:53:06 -0000
-@@ -1,7 +0,0 @@
--ifeq ($(subdir), linuxthreads)
--object-suffixes-left := $(libpthread-nonshared)
--define o-iterator-doit
--$(objpfx)$o.os: pic-ccflag = -fPIC
--endef
--include $(o-iterator)
--endif

Deleted: glibc-package/trunk/debian/patches/s390/submitted-tls.diff
===================================================================
--- glibc-package/trunk/debian/patches/s390/submitted-tls.diff	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/s390/submitted-tls.diff	2006-04-08 15:24:22 UTC (rev 1348)
@@ -1,17 +0,0 @@
-# DP: Description: Fix ustat.c compile error for s390
-# DP: Author: Gerhard Tonn <GerhardTonn@gammatau.de>
-# DP: Upstream status: Not submitted
-# DP: Status Details: 
-# DP: Date: 23 Mar 2003
- 
---- linuxthreads/sysdeps/s390/tls.h.bak	2003-03-23 08:59:35.000000000 +0000
-+++ linuxthreads/sysdeps/s390/tls.h	2003-03-23 09:47:49.000000000 +0000
-@@ -124,7 +124,7 @@
- # ifndef __ASSEMBLER__
- 
- /* Get the thread descriptor definition.  */
--#  include <linuxthreads/descr.h>
-+//#  include <linuxthreads/descr.h>
- 
- #  define NONTLS_INIT_TP \
-   do { 								\

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2006-04-08 14:27:04 UTC (rev 1347)
+++ glibc-package/trunk/debian/patches/series	2006-04-08 15:24:22 UTC (rev 1348)
@@ -55,7 +55,6 @@
 arm/local-dwarf2-buildfix.diff -p0
 arm/local-ioperm.diff -p0
 arm/local-no-hwcap.diff -p0
-#arm/local-output-format.diff -p0	# g: suspended
 
 hppa/local-Rminkernel.diff -p0
 hppa/submitted-drop-utimes.diff -p1
@@ -117,7 +116,6 @@
 any/cvs-divdi3-moddi3.diff -p0
 any/cvs-errlist.diff -p0
 any/cvs-getcwd_c.diff -p1
-#any/cvs-glibc-make-check-perms.diff -p1	# g: suspended
 any/cvs-nfs_h.diff -p0
 any/cvs-path_log.diff -p0
 any/cvs-regcomp_c.diff -p1
@@ -127,13 +125,9 @@
 any/cvs-resource_h.diff -p1
 any/local-asserth-decls.diff  -p0
 #any/local-base.diff -p0	# g: suspended
-#any/local-ctype-compat.diff -p1	# g: untilsarge
 any/local-dash.diff -p0
 any/local-dl-execstack.diff -p0
-#any/local-errno.diff -p1	# g: untilsarge
-#any/local-errno-hack.diff -p1	# g: untilsarge
 any/local-fhs-linux-paths.diff -p1
-#any/local-function-compat.diff -p1	# g: untilsarge
 any/local-forward-backward-collation.diff
 any/local-gcc4-elf.diff -p0
 any/local-gcc4-wcstol_l.diff -p1



Reply to: