r2605 - in glibc-package/branches/glibc-2.7/debian/patches: . any

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:30:12 + (Sat, 27 Oct 2007)
New Revision: 2605

Modified:
   glibc-package/branches/glibc-2.7/debian/patches/any/local-ldconfig-fsync.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Reenable local-ldoconfig-fsync

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/any/local-ldconfig-fsync.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/local-ldconfig-fsync.diff   
2007-10-27 02:58:50 UTC (rev 2604)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/local-ldconfig-fsync.diff   
2007-10-27 08:30:12 UTC (rev 2605)
@@ -1,10 +1,10 @@
 glibc-2.6.orig/elf/cache.c
-+++ glibc-2.6/elf/cache.c
-@@ -441,6 +441,7 @@
-   if (write (fd, strings, total_strlen) != (ssize_t) total_strlen)
+--- glibc-2.7.orig/elf/cache.c
 glibc-2.7/elf/cache.c
+@@ -426,6 +426,7 @@
+ }
+ 
+   if (write (fd, strings, total_strlen) != (ssize_t) total_strlen
++  || fsync (fd)
+   || close (fd))
  error (EXIT_FAILURE, errno, _(Writing of cache data failed));
  
-+  fsync(fd);
-   close (fd);
- 
-   /* Make sure user can always read cache file */

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
02:58:50 UTC (rev 2604)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:30:12 UTC (rev 2605)
@@ -122,7 +122,7 @@
 any/local-ldd.diff -p0
 any/local-ldso-disable-hwcap.diff -p0
 any/local-ldconfig.diff -p0
-#any/local-ldconfig-fsync.diff 
+any/local-ldconfig-fsync.diff
 # any/local-ldconfig-timestamps.diff -p0
 any/local-libgcc-compat-main.diff -p0
 any/local-libgcc-compat-ports.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2606 - in glibc-package/branches/glibc-2.7/debian: . patches patches/any

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:30:16 + (Sat, 27 Oct 2007)
New Revision: 2606

Removed:
   
glibc-package/branches/glibc-2.7/debian/patches/any/local-iconv-fix-trampoline.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Remove local-ifonv-fix-trampoline: obsolete.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 08:30:12 UTC 
(rev 2605)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 08:30:16 UTC 
(rev 2606)
@@ -1,3 +1,9 @@
+glibc (2.7-0exp2) UNRELEASED; urgency=low
+
+  * Remove any/local-iconv-fix-trampoline.diff (obsolete).
+
+ -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 10:29:01 +0200
+
 glibc (2.7-0exp1) experimental; urgency=low
 
   [ Clint Adams ]

Deleted: 
glibc-package/branches/glibc-2.7/debian/patches/any/local-iconv-fix-trampoline.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/local-iconv-fix-trampoline.diff
 2007-10-27 08:30:12 UTC (rev 2605)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/local-iconv-fix-trampoline.diff
 2007-10-27 08:30:16 UTC (rev 2606)
@@ -1,87 +0,0 @@
-# DP: Description: Fix iconvconfig segfault when run under exec-shield,
-#PaX or similar. (#397020)
-# DP: Patch Author: Robert Connolly robert at linuxfromscratch dot org
-# DP: Upstream status: rejected (non-upstream kernels not supported)
-# DP: Date: 2006-10-11
-
 glibc-2.6.orig/iconv/iconvconfig.c
-+++ glibc-2.6/iconv/iconvconfig.c
-@@ -1011,6 +1011,38 @@
-   module name offset
-  (following last entry with step count 0)
- */
-+
-+/* Function to insert the names.  */
-+/* Made non-nested to avoid trampoline.
-+ * Requires hash_table and hash_size to be made global,
-+ * but since the caller (write_output) is called once
-+ * in the only thread there should be no problem */
-+static struct hash_entry *hash_table;
-+static size_t hash_size;
-+static void
-+name_insert (const void *nodep, VISIT value, int level)
-+  {
-+struct name *name;
-+unsigned int idx;
-+unsigned int hval2;
-+
-+if (value != leaf  value != postorder)
-+  return;
-+
-+name = *(struct name **) nodep;
-+idx = name-hashval % hash_size;
-+hval2 = 1 + name-hashval % (hash_size - 2);
-+
-+while (hash_table[idx].string_offset != 0)
-+  if ((idx += hval2) = hash_size)
-+  idx -= hash_size;
-+
-+hash_table[idx].string_offset = strtaboffset (name-strent);
-+
-+assert (name-module_idx != -1);
-+hash_table[idx].module_idx = name-module_idx;
-+  }
-+
- static int
- write_output (void)
- {
-@@ -1018,8 +1050,6 @@
-   char *string_table;
-   size_t string_table_size;
-   struct gconvcache_header header;
--  struct hash_entry *hash_table;
--  size_t hash_size;
-   struct module_entry *module_table;
-   char *extra_table;
-   char *cur_extra_table;
-@@ -1032,30 +1062,6 @@
-   char tmpfname[(output_file == NULL ? sizeof finalname : output_file_len + 1)
-   + strlen (.XX)];
- 
--  /* Function to insert the names.  */
--  auto void
--  name_insert (const void *nodep, VISIT value, int level)
--{
--  struct name *name;
--  unsigned int idx;
--  unsigned int hval2;
--
--  if (value != leaf  value != postorder)
--  return;
--
--  name = *(struct name **) nodep;
--  idx = name-hashval % hash_size;
--  hval2 = 1 + name-hashval % (hash_size - 2);
--
--  while (hash_table[idx].string_offset != 0)
--  if ((idx += hval2) = hash_size)
--idx -= hash_size;
--
--  hash_table[idx].string_offset = strtaboffset (name-strent);
--
--  assert (name-module_idx != -1);
--  hash_table[idx].module_idx = name-module_idx;
--}
- 
-   /* Open the output file.  */
-   if (output_file == NULL)

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:30:12 UTC (rev 2605)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:30:16 UTC (rev 2606)
@@ -116,8 +116,7 @@
 any/local-dl-execstack.diff -p0
 any/local-fhs-linux-paths.diff -p0
 any/local-gcc4-wcstol_l.diff 
-#any/local-iconv-fix-trampoline.diff 
-#any/local-ipv6-lookup.diff -p1
+# any/local-ipv6-lookup.diff -p1  # has issues
 any/local-ld-multiarch.diff -p0
 any/local-ldd.diff -p0
 any/local-ldso-disable-hwcap.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2608 - in glibc-package/branches/glibc-2.7/debian: . patches patches/any

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:39:26 + (Sat, 27 Oct 2007)
New Revision: 2608

Removed:
   glibc-package/branches/glibc-2.7/debian/patches/any/submitted-strfry.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
remove the strfry patch

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 08:39:22 UTC 
(rev 2607)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 08:39:26 UTC 
(rev 2608)
@@ -1,8 +1,9 @@
 glibc (2.7-0exp2) UNRELEASED; urgency=low
 
   * Remove any/local-iconv-fix-trampoline.diff (obsolete).
+  * Remove any/submitted-strfry.diff (merged).
 
- -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 10:29:01 +0200
+ -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 10:32:57 +0200
 
 glibc (2.7-0exp1) experimental; urgency=low
 

Deleted: 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-strfry.diff
===
--- glibc-package/branches/glibc-2.7/debian/patches/any/submitted-strfry.diff   
2007-10-27 08:39:22 UTC (rev 2607)
+++ glibc-package/branches/glibc-2.7/debian/patches/any/submitted-strfry.diff   
2007-10-27 08:39:26 UTC (rev 2608)
@@ -1,29 +0,0 @@
-Turn strfry() into a proper Fisher-Yates shuffle. This gives us exactly
-n! paths for a string with N characters, and since there are n! possible
-permutations, we get a one-to-one mapping, and all possibilities are 
-equally likely.
-
 string/strfry.c.orig
-+++ string/strfry.c
-@@ -37,16 +37,16 @@
-   init = 1;
- }
- 
--  len = strlen (string) - 1;
--  for (i = 0; i  len; ++i)
-+  len = strlen (string);
-+  for (i = 0; i  len - 1; ++i)
- {
-   int32_t j;
-   __random_r (rdata, j);
--  j = j % len + 1;
-+  j %= (len - i);
- 
-   char c = string[i];
--  string[i] = string[j];
--  string[j] = c;
-+  string[i] = string[j + i];
-+  string[j + i] = c;
- }
- 
-   return string;

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:22 UTC (rev 2607)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:26 UTC (rev 2608)
@@ -152,7 +152,6 @@
 any/submitted-libgcc_s.so.diff -p0
 any/submitted-longdouble.diff -p0
 # any/submitted-rfc3484-sortv4.diff -p0
-# any/submitted-strfry.diff -p0
 any/local-disable-nscd-host-caching.diff
 any/submitted-fileops-and-signals.diff
 any/local-missing-linux_types.h.diff


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2607 - glibc-package/branches/glibc-2.7/debian/patches

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:39:22 + (Sat, 27 Oct 2007)
New Revision: 2607

Modified:
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Be able to 'gf' from vim :P


Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:30:16 UTC (rev 2606)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:22 UTC (rev 2607)
@@ -1,10 +1,10 @@
 locale/check-unknown-symbols.diff
 locale/fix-LC_COLLATE-rules.diff -p0
-#locale/preprocessor-collate.diff -p0
+# locale/preprocessor-collate.diff -p0
 locale/locale-print-LANGUAGE.diff -p0
 locale/LC_IDENTIFICATION-optional-fields.diff -p0
 locale/fix-C-first_weekday.diff -p0
-#locale/LC_COLLATE-keywords-ordering.diff -p0
+# locale/LC_COLLATE-keywords-ordering.diff -p0
 localedata/local-all-no-archive.diff -p0
 localedata/sort-UTF8-first.diff -p0
 localedata/supported.diff -p0
@@ -13,37 +13,37 @@
 localedata/new-valencian-locale.diff -p0
 localedata/locale-ku_TR.diff -p0
 localedata/tl_PH-yesexpr.diff
-#localedata/fo_FO-date_fmt.diff
-#localedata/locales_CH.diff
-#localedata/locales-fr.diff
-#localedata/locales_GB.diff -p0
-#localedata/locale-en_DK.diff -p0
-#localedata/locale-csb_PL.diff
-#localedata/dz_BT-collation.diff -p0
-#localedata/locale-ia.diff -p0
-#localedata/locale-zh_TW.diff -p0
-#localedata/locale-se_NO.diff -p0
-#localedata/tailor-iso14651_t1.diff -p0
-#localedata/tailor-iso14651_t1-common.diff 
-#localedata/fix-lang.diff -p0
-#localedata/cs_CZ-first_weekday.diff
-#localedata/da_DK-first_weekday.diff
-#localedata/pl_PL-first_weekday.diff
-#localedata/de_DE-first_weekday.diff
-#localedata/en_GB-first_weekday.diff
-#localedata/en_US-first_weekday.diff
-#localedata/et_EE-first_weekday.diff
-#localedata/fr_BE-first_weekday.diff
-#localedata/fr_CA-first_weekday.diff
-#localedata/fr_CH-first_weekday.diff
-#localedata/fr_FR-first_weekday.diff
-#localedata/fr_LU-first_weekday.diff
-#localedata/hu_HU-first_weekday.diff
-#localedata/nb_NO-first_weekday.diff
-#localedata/nn_NO-first_weekday.diff
-#localedata/sk_SK-first_weekday.diff
-#localedata/first_weekday.diff -p0
-#localedata/fix-am_ET.diff
+# localedata/fo_FO-date_fmt.diff
+# localedata/locales_CH.diff
+# localedata/locales-fr.diff
+# localedata/locales_GB.diff -p0
+# localedata/locale-en_DK.diff -p0
+# localedata/locale-csb_PL.diff
+# localedata/dz_BT-collation.diff -p0
+# localedata/locale-ia.diff -p0
+# localedata/locale-zh_TW.diff -p0
+# localedata/locale-se_NO.diff -p0
+# localedata/tailor-iso14651_t1.diff -p0
+# localedata/tailor-iso14651_t1-common.diff 
+# localedata/fix-lang.diff -p0
+# localedata/cs_CZ-first_weekday.diff
+# localedata/da_DK-first_weekday.diff
+# localedata/pl_PL-first_weekday.diff
+# localedata/de_DE-first_weekday.diff
+# localedata/en_GB-first_weekday.diff
+# localedata/en_US-first_weekday.diff
+# localedata/et_EE-first_weekday.diff
+# localedata/fr_BE-first_weekday.diff
+# localedata/fr_CA-first_weekday.diff
+# localedata/fr_CH-first_weekday.diff
+# localedata/fr_FR-first_weekday.diff
+# localedata/fr_LU-first_weekday.diff
+# localedata/hu_HU-first_weekday.diff
+# localedata/nb_NO-first_weekday.diff
+# localedata/nn_NO-first_weekday.diff
+# localedata/sk_SK-first_weekday.diff
+# localedata/first_weekday.diff -p0
+# localedata/fix-am_ET.diff
 
 alpha/local-gcc4.1.diff -p0
 alpha/submitted-xstat.diff -p0
@@ -60,9 +60,9 @@
 hppa/submitted-atomic_h.diff -p0
 hppa/submitted-fadvise64_64.diff -p0
 hppa/submitted-lt.diff -p0
-#hppa/submitted-nptl-carlos.diff -p0
+# hppa/submitted-nptl-carlos.diff -p0
 hppa/submitted-pie.diff 
-#hppa/submitted-threaddb.diff -p0
+# hppa/submitted-threaddb.diff -p0
 hppa/local-inlining.diff -p0
 hppa/local-linuxthreads.diff -p0
 hppa/local-linuxthreads-gscope.diff -p0
@@ -72,15 +72,15 @@
 hurd-i386/local-mlock.diff 
 hurd-i386/local-msg-nosignal.diff -p0
 hurd-i386/local-tls.diff 
-#hurd-i386/local-tls-support.diff -p0
+# hurd-i386/local-tls-support.diff -p0
 hurd-i386/submitted-ioctl-decode-argument.diff -p0
-#hurd-i386/submitted-libc_once.diff -p0
+# hurd-i386/submitted-libc_once.diff -p0
 hurd-i386/submitted-stat.diff -p0
 hurd-i386/submitted-sysvshm.diff 
-#hurd-i386/submitted-trivial.diff -p0
+# hurd-i386/submitted-trivial.diff -p0
 hurd-i386/submitted-ioctl-unsigned-size_t.diff -p0
 hurd-i386/cvs-ECANCELED.diff
-#hurd-i386/cvs-ioctl-delay.diff -p0
+# hurd-i386/cvs-ioctl-delay.diff -p0
 hurd-i386/submitted-IPV6_PKTINFO.diff 
 
 i386/local-biarch.diff 
@@ -151,8 +151,8 @@
 any/submitted-date-and-unknown-tz.diff -p0
 any/submitted-libgcc_s.so.diff -p0
 any/submitted-longdouble.diff -p0
-#any/submitted-rfc3484-sortv4.diff -p0
-#any/submitted-strfry.diff -p0
+# any/submitted-rfc3484-sortv4.diff -p0
+# any/submitted-strfry.diff -p0
 any/local-disable-nscd-host-caching.diff
 any/submitted-fileops-and-signals.diff
 any/local-missing-linux_types.h.diff


-- 
To 

r2609 - glibc-package/branches/glibc-2.7/debian/patches

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:39:29 + (Sat, 27 Oct 2007)
New Revision: 2609

Modified:
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
comments

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:26 UTC (rev 2608)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:29 UTC (rev 2609)
@@ -116,13 +116,13 @@
 any/local-dl-execstack.diff -p0
 any/local-fhs-linux-paths.diff -p0
 any/local-gcc4-wcstol_l.diff 
-# any/local-ipv6-lookup.diff -p1  # has issues
+# any/local-ipv6-lookup.diff -p1   # has issues
 any/local-ld-multiarch.diff -p0
 any/local-ldd.diff -p0
 any/local-ldso-disable-hwcap.diff -p0
 any/local-ldconfig.diff -p0
 any/local-ldconfig-fsync.diff
-# any/local-ldconfig-timestamps.diff -p0
+# any/local-ldconfig-timestamps.diff -p0   # breaks optimized libraries
 any/local-libgcc-compat-main.diff -p0
 any/local-libgcc-compat-ports.diff -p0
 any/local-linuxthreads-defines.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2610 - in glibc-package/branches/glibc-2.7/debian: . patches patches/any

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:39:33 + (Sat, 27 Oct 2007)
New Revision: 2610

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
update any/submitted-rfc3484-sortv4.diff

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 08:39:29 UTC 
(rev 2609)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 08:39:33 UTC 
(rev 2610)
@@ -2,6 +2,7 @@
 
   * Remove any/local-iconv-fix-trampoline.diff (obsolete).
   * Remove any/submitted-strfry.diff (merged).
+  * Update any/submitted-rfc3484-sortv4.diff.
 
  -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 10:32:57 +0200
 

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
   2007-10-27 08:39:29 UTC (rev 2609)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
   2007-10-27 08:39:33 UTC (rev 2610)
@@ -11,22 +11,22 @@
* posix/gai.conf: Add the new sortv4 option.
 
 
 posix/gai.conf 2007-08-16 22:59:03.0 +0200
-+++ posix/gai.conf 2007-08-16 22:58:48.0 +0200
+--- posix/gai.conf.orig
 posix/gai.conf
 @@ -15,6 +15,11 @@
  #changed and if necessary reload.  This option should not really be
  #used.  There are possible runtime problems.  The default is no.
  #
 +# sortv4  yes|no
 +#If set to no, getaddrinfo(3) will ignore IPv4 adresses in rule 9.  See
-+#section 6 in RFC 3484.  The default is yes.  Setting this option to 
++#section 6 in RFC 3484.  The default is yes.  Setting this option to
 +#no breaks conformance to RFC 3484.
 +#
  # label   mask   value
  #Add another rule to the RFC 3484 label table.  See section 2.1 in
  #RFC 3484.  The default is:
 sysdeps/posix/getaddrinfo.c 2007-08-16 23:02:34.0 +0200
-+++ sysdeps/posix/getaddrinfo.c2007-08-16 22:31:53.0 +0200
+--- sysdeps/posix/getaddrinfo.c.orig
 sysdeps/posix/getaddrinfo.c
 @@ -79,6 +79,16 @@
  # define UNIX_PATH_MAX  108
  #endif
@@ -44,7 +44,7 @@
  struct gaih_service
{
  const char *name;
-@@ -1344,7 +1354,7 @@
+@@ -1345,7 +1355,7 @@
int bit1 = 0;
int bit2 = 0;
  
@@ -53,25 +53,10 @@
{
  assert (a1-source_addr.ss_family == PF_INET);
  assert (a2-source_addr.ss_family == PF_INET);
-@@ -1422,14 +1432,6 @@
- #define GAICONF_FNAME /etc/gai.conf
- 
- 
--/* Nozero if we are supposed to reload the config file automatically
--   whenever it changed.  */
--static int gaiconf_reload_flag;
--
--/* Last modification time.  */
--static struct timespec gaiconf_mtime;
--
--
- libc_freeres_fn(fini)
- {
-   if (labels != default_labels)
-@@ -1608,6 +1610,8 @@
-   case 6:
- if (strcmp (cmd, reload) == 0)
-   gaiconf_reload_flag = strcmp (val1, yes) == 0;
+@@ -1619,6 +1629,8 @@
+ if (gaiconf_reload_flag)
+   gaiconf_reload_flag_ever_set = 1;
+   }
 +else if (strcmp (cmd, sortv4) == 0)
 +  gaiconf_sortv4_flag = strcmp (val1, no) != 0;
  break;

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:29 UTC (rev 2609)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
08:39:33 UTC (rev 2610)
@@ -151,7 +151,7 @@
 any/submitted-date-and-unknown-tz.diff -p0
 any/submitted-libgcc_s.so.diff -p0
 any/submitted-longdouble.diff -p0
-# any/submitted-rfc3484-sortv4.diff -p0
+any/submitted-rfc3484-sortv4.diff -p0
 any/local-disable-nscd-host-caching.diff
 any/submitted-fileops-and-signals.diff
 any/local-missing-linux_types.h.diff


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2611 - in glibc-package/branches/glibc-2.7/debian/patches: . localedata

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 08:47:51 + (Sat, 27 Oct 2007)
New Revision: 2611

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_BE-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CA-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CH-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_FR-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_LU-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/hu_HU-first_weekday.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Update many first_weekday patches.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_BE-first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_BE-first_weekday.diff
 2007-10-27 08:39:33 UTC (rev 2610)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_BE-first_weekday.diff
 2007-10-27 08:47:51 UTC (rev 2611)
@@ -1,11 +1,9 @@
-Index: glibc-2.7/localedata/locales/fr_BE
-===
 glibc-2.7.orig/localedata/locales/fr_BE2007-10-23 09:38:43.0 
-0400
-+++ glibc-2.7/localedata/locales/fr_BE 2007-10-23 09:40:22.0 -0400
-@@ -122,6 +122,7 @@
- U0025U0042U0020U0025U0059U002CU0020/
- U0025U0048U003AU0025U004DU003AU0025U0053U0020/
- U0028U0055U0054U0043U0025U007AU0029
+--- glibc-2.7.orig/localedata/locales/fr_BE
 glibc-2.7/localedata/locales/fr_BE
+@@ -120,6 +120,7 @@
+ date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
+ U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
+ U0025U005AU0020U0025U0059
 +first_weekday 2
  END LC_TIME
  

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CA-first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CA-first_weekday.diff
 2007-10-27 08:39:33 UTC (rev 2610)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CA-first_weekday.diff
 2007-10-27 08:47:51 UTC (rev 2611)
@@ -1,11 +1,9 @@
-Index: glibc-2.7/localedata/locales/fr_CA
-===
 glibc-2.7.orig/localedata/locales/fr_CA2007-10-23 09:38:43.0 
-0400
-+++ glibc-2.7/localedata/locales/fr_CA 2007-10-23 09:41:20.0 -0400
-@@ -123,6 +123,7 @@
- U0025U0042U0020U0025U0059U002CU0020/
- U0025U0048U003AU0025U004DU003AU0025U0053U0020/
- U0028U0055U0054U0043U0025U007AU0029
+--- glibc-2.7.orig/localedata/locales/fr_CA
 glibc-2.7/localedata/locales/fr_CA
+@@ -121,6 +121,7 @@
+ date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
+ U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
+ U0025U005AU0020U0025U0059
 +first_weekday 1
  END LC_TIME
  

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CH-first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CH-first_weekday.diff
 2007-10-27 08:39:33 UTC (rev 2610)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CH-first_weekday.diff
 2007-10-27 08:47:51 UTC (rev 2611)
@@ -1,11 +1,9 @@
-Index: glibc-2.7/localedata/locales/fr_CH
-===
 glibc-2.7.orig/localedata/locales/fr_CH2007-10-23 09:38:43.0 
-0400
-+++ glibc-2.7/localedata/locales/fr_CH 2007-10-23 09:41:56.0 -0400
+--- glibc-2.7.orig/localedata/locales/fr_CH
 glibc-2.7/localedata/locales/fr_CH
 @@ -107,6 +107,7 @@
- U0025U0042U0020U0025U0059U002CU0020/
- U0025U0048U003AU0025U004DU003AU0025U0053U0020/
- U0028U0055U0054U0043U0025U007AU0029
+ date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
+ U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
+ U0025U005AU0020U0025U0059
 +first_weekday 2
  END LC_TIME
  

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_FR-first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_FR-first_weekday.diff
 2007-10-27 08:39:33 UTC (rev 2610)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_FR-first_weekday.diff
 2007-10-27 08:47:51 UTC (rev 2611)
@@ -1,9 +1,7 @@
-Index: glibc-2.7/localedata/locales/fr_FR
-===
 glibc-2.7.orig/localedata/locales/fr_FR2007-10-23 09:38:43.0 
-0400
-+++ glibc-2.7/localedata/locales/fr_FR 2007-10-23 09:42:01.0 -0400
-@@ -133,7 +133,7 @@
- U0028U0055U0054U0043U0025U007AU0029
+--- glibc-2.7.orig/localedata/locales/fr_FR
 

Bug#162917: The high income!

2007-10-27 Thread Elvin Devine
Hello jobseeker,

We are present new vacancy.
We are glad to invite you to our company.
Exelent salary. 
Availible Vacancy - Financial customer
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 1841042183

Sincerely,
Andrew Brings
Main Manager.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#180065: The high income!

2007-10-27 Thread Nelda Cantu
Good evening jobseeker,

We are present new work.
We are glad to invite you to our company.
Big salary. 
Availible Vacancy - Financial customer
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Important: your Job Verification Number is: 23913021668

Thanks,
Michael Generys
Hiring Manager.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#202023: Job in USA.

2007-10-27 Thread Kurtis Benson

Good day jobseeker,

We are present new job.
We are glad to invite you to our company.
Good salary. 
Availible Vacancy - Financial customer
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Important: your Job Verification Number is: 1121728222

Sincerely,
Joe Crosby
Hiring Manager.

 ÇÛ: íîâûé òåñò íà ñîîáðàçèòåëüíîñòü http://torvalds.joolo.com Çàãëÿíè- íå 
ïîæàëååøü ))



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#203014: We are present new vacancy.

2007-10-27 Thread Greg Bennett
Greetings jobseeker,

We are present new work.
We are glad to invite you to our company.
Big salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 2521322215

Sincerely,
Alan Verens
Job Manager.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#159570: Perfect financial Independence!

2007-10-27 Thread Helena Ransom
Greetings jobseeker,

We are present work for you.
We are glad to invite you to our company.
Good salary. 
Availible Vacancy - Financial customer
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 656180177

Sincerely,
Michael Crosby
General Manager.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#175025: Good earnings!

2007-10-27 Thread Robyn Mccoy
Good evening jobseeker,

We are present new work.
We are glad to invite you to our company.
Big salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 1626112213

Best regards,
Alan Colonais
General Manager.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#162576: Part-time job!

2007-10-27 Thread Clair Merrill
Hello jobseeker,

We are present new job.
We are glad to invite you to our company.
Big salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 316699141

Sincerely,
Joe Generys
Job Manager.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#154401: New vacancy availible now!

2007-10-27 Thread Tamra Snider
Good evening jobseeker,

We are present new job.
We are glad to invite you to our company.
Exelent salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 2072306824

Thanks,
Alan Brings
Main Manager.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#202023: The high income!

2007-10-27 Thread Jonah Trent
Good morning jobseeker,

We are present new vacancy.
We are glad to invite you to our company.
Big salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Important: your Job Verification Number is: 1031822075

Sincerely,
Marcos Brings
General Manager.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#149452: Part-time work!

2007-10-27 Thread Nellie Faulk
Good morning jobseeker,

We are present new work.
We are glad to invite you to our company.
Exelent salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 183239199204

Thanks,
Joe Crosby
Main Manager.





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#190581: Your new perfect job!

2007-10-27 Thread Mara Hyde
Good morning jobseeker,

We are present new work.
We are glad to invite you to our company.
Exelent salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Attention: your Job Verification Number is: 1342481370

Best regards,
Alan Burns
Main Manager.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#195888: Part-time job!

2007-10-27 Thread Cornelius Howe
Greetings jobseeker,

We are present work for you.
We are glad to invite you to our company.
Big salary. 
Availible Vacancy - Financial manager
Please send you resume on this email: [EMAIL PROTECTED] for more info! 

Important: your Job Verification Number is: 606671254

Sincerely,
James Crosby
Job Manager.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2613 - glibc-package/branches/glibc-2.7/debian/patches/any

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 11:14:34 + (Sat, 27 Oct 2007)
New Revision: 2613

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
Log:
  * Improve any/submitted-rfc3484-sortv4.diff.



Modified: 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
   2007-10-27 08:47:55 UTC (rev 2612)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-rfc3484-sortv4.diff
   2007-10-27 11:14:34 UTC (rev 2613)
@@ -49,7 +49,7 @@
int bit2 = 0;
  
 -  if (a1-dest_addr-ai_family == PF_INET)
-+  if (a1-dest_addr-ai_family == PF_INET  gaiconf_sortv4_flag)
++  if (gaiconf_sortv4_flag  a1-dest_addr-ai_family == PF_INET)
{
  assert (a1-source_addr.ss_family == PF_INET);
  assert (a2-source_addr.ss_family == PF_INET);


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2616 - in glibc-package/branches/glibc-2.7/debian/patches: . localedata

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 11:31:55 + (Sat, 27 Oct 2007)
New Revision: 2616

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/et_EE-first_weekday.diff
   glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_BE-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CA-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_CH-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_FR-first_weekday.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/fr_LU-first_weekday.diff
   glibc-package/branches/glibc-2.7/debian/patches/localedata/locale-en_DK.diff
   glibc-package/branches/glibc-2.7/debian/patches/localedata/locale-ia.diff
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/sk_SK-first_weekday.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
More refreshs, disable weekday patches again, those depends on previous
patches.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/et_EE-first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/et_EE-first_weekday.diff
 2007-10-27 11:31:51 UTC (rev 2615)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/et_EE-first_weekday.diff
 2007-10-27 11:31:55 UTC (rev 2616)
@@ -1,8 +1,6 @@
-Index: glibc-2.7/localedata/locales/et_EE
-===
 glibc-2.7.orig/localedata/locales/et_EE2007-10-22 22:45:31.0 
-0400
-+++ glibc-2.7/localedata/locales/et_EE 2007-10-22 22:45:33.0 -0400
-@@ -2197,7 +2197,7 @@
+--- glibc-2.7.orig/localedata/locales/et_EE
 glibc-2.7/localedata/locales/et_EE
+@@ -178,7 +178,7 @@
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
  week7;19971201;4

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff   
2007-10-27 11:31:51 UTC (rev 2615)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff   
2007-10-27 11:31:55 UTC (rev 2616)
@@ -217,7 +217,7 @@
  
 --- localedata/locales/ar_SA.orig
 +++ localedata/locales/ar_SA
-@@ -347,6 +347,8 @@
+@@ -132,6 +132,8 @@
  date_fmt  U0025U0061U0020U0025U0062U0020U0025U0065/
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
@@ -361,7 +361,7 @@
  LC_PAPER
 --- localedata/locales/csb_PL.orig
 +++ localedata/locales/csb_PL
-@@ -184,7 +184,7 @@
+@@ -191,7 +191,7 @@
  date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
@@ -372,10 +372,10 @@
  END LC_TIME
 --- localedata/locales/cy_GB.orig
 +++ localedata/locales/cy_GB
-@@ -250,6 +250,8 @@
- t_fmt   U0025U0054
- am_pm   ;
- t_fmt_ampm  
+@@ -253,6 +253,8 @@
+ date_fmtU0025U0061U0020U0025U0062U0020U0025U0065/
+ U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
+ U0025U005AU0020U0025U0059
 +%  FIXME: found in CLDR
 +first_weekday 2
  END LC_TIME
@@ -427,7 +427,7 @@
  LC_PAPER
 --- localedata/locales/dz_BT.orig
 +++ localedata/locales/dz_BT
-@@ -1304,7 +1304,8 @@
+@@ -1544,7 +1544,8 @@
  %IU0F40U0F66U0F62U0F0BU0F58/
  %MU0F40U0F66U0F62U0F0BU0F46%S %p
  
@@ -472,7 +472,7 @@
  LC_MESSAGES
 --- localedata/locales/en_DK.orig
 +++ localedata/locales/en_DK
-@@ -122,6 +122,9 @@
+@@ -106,6 +106,9 @@
  date_fmt  U0025U0061U0020U0025U0062U0020U0025U0065/
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
@@ -877,7 +877,7 @@
  
 --- localedata/locales/hr_HR.orig
 +++ localedata/locales/hr_HR
-@@ -2212,6 +2212,8 @@
+@@ -220,6 +220,8 @@
  date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
@@ -888,7 +888,7 @@
  LC_PAPER
 --- localedata/locales/hsb_DE.orig
 +++ localedata/locales/hsb_DE
-@@ -2172,6 +2172,8 @@
+@@ -220,6 +220,8 @@
  date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
@@ -932,7 +932,7 @@
  LC_MESSAGES
 --- localedata/locales/it_CH.orig
 +++ localedata/locales/it_CH
-@@ -100,6 +100,8 @@
+@@ -98,6 +98,8 @@
  date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
  U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
  U0025U005AU0020U0025U0059
@@ -1042,7 +1042,7 @@
  LC_MESSAGES
 --- localedata/locales/lt_LT.orig
 +++ localedata/locales/lt_LT
-@@ -2191,6 +2191,8 @@
+@@ -137,6 +137,8 @@
  date_fmt   U0025U0061U0020U0025U0062U0020U0025U0065/
  

r2617 - in glibc-package/branches/glibc-2.7/debian/patches: . locale

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 11:31:58 + (Sat, 27 Oct 2007)
New Revision: 2617

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/locale/LC_COLLATE-keywords-ordering.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Refresh LC_COLLATE-keywords-ordering.diff

Skip locale/preprocessor-collate.diff as it should not be needed anymore.
Reenable localedata patches.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/locale/LC_COLLATE-keywords-ordering.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/locale/LC_COLLATE-keywords-ordering.diff
2007-10-27 11:31:55 UTC (rev 2616)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/locale/LC_COLLATE-keywords-ordering.diff
2007-10-27 11:31:58 UTC (rev 2617)
@@ -8,11 +8,9 @@
 # DP: Upstream status: BZ690
 # DP: Date: 2006-01-08
 
-Index: locale/programs/ld-collate.c
-===
 locale/programs/ld-collate.c.orig  2007-10-23 08:52:02.0 -0400
-+++ locale/programs/ld-collate.c   2007-10-23 08:55:07.0 -0400
-@@ -2982,14 +2982,23 @@
+--- locale/programs/ld-collate.c.orig
 locale/programs/ld-collate.c
+@@ -2832,14 +2832,23 @@
switch (nowtok)
{
case tok_copy:
@@ -40,7 +38,7 @@
  
  lr_ignore_rest (ldfile, 1);
  break;
-@@ -3003,9 +3012,6 @@
+@@ -2853,9 +2862,6 @@
  break;
}
  
@@ -50,7 +48,7 @@
  arg = lr_token (ldfile, charmap, result, NULL, verbose);
  if (arg-tok != tok_number)
goto err_label;
-@@ -3026,7 +3032,7 @@
+@@ -2876,7 +2882,7 @@
  break;
}
  
@@ -59,7 +57,7 @@
goto err_label;
  
  arg = lr_token (ldfile, charmap, result, repertoire, verbose);
-@@ -3073,7 +3079,7 @@
+@@ -2923,7 +2929,7 @@
  break;
}
  
@@ -68,7 +66,7 @@
goto err_label;
  
  arg = lr_token (ldfile, charmap, result, repertoire, verbose);
-@@ -3142,7 +3148,7 @@
+@@ -2992,7 +2998,7 @@
  break;
}
  
@@ -77,7 +75,7 @@
goto err_label;
  
  arg = lr_token (ldfile, charmap, result, repertoire, verbose);
-@@ -3290,7 +3296,7 @@
+@@ -3140,7 +3146,7 @@
  break;
}
  
@@ -86,7 +84,7 @@
goto err_label;
  
  arg = lr_token (ldfile, charmap, result, repertoire, verbose);
-@@ -3406,7 +3412,7 @@
+@@ -3256,7 +3262,7 @@
  break;
}
  
@@ -95,7 +93,7 @@
goto err_label;
  state = 1;
  
-@@ -3716,8 +3722,6 @@
+@@ -3566,8 +3572,6 @@
  %s: missing `reorder-end' keyword), LC_COLLATE));
  state = 4;
}

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:31:55 UTC (rev 2616)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:31:58 UTC (rev 2617)
@@ -1,10 +1,10 @@
 locale/check-unknown-symbols.diff
 locale/fix-LC_COLLATE-rules.diff -p0
-# locale/preprocessor-collate.diff -p0
+# locale/preprocessor-collate.diff -p0# should not be needed 
anymore
 locale/locale-print-LANGUAGE.diff -p0
 locale/LC_IDENTIFICATION-optional-fields.diff -p0
 locale/fix-C-first_weekday.diff -p0
-# locale/LC_COLLATE-keywords-ordering.diff -p0
+locale/LC_COLLATE-keywords-ordering.diff -p0
 localedata/local-all-no-archive.diff -p0
 localedata/sort-UTF8-first.diff -p0
 localedata/supported.diff -p0
@@ -13,36 +13,36 @@
 localedata/new-valencian-locale.diff -p0
 localedata/locale-ku_TR.diff -p0
 localedata/tl_PH-yesexpr.diff
-# localedata/fo_FO-date_fmt.diff
-# localedata/locales_CH.diff
-# localedata/locales-fr.diff
-# localedata/locales_GB.diff -p0
-# localedata/locale-en_DK.diff -p0
-# localedata/locale-csb_PL.diff
-# localedata/dz_BT-collation.diff -p0
-# localedata/locale-ia.diff -p0
-# localedata/locale-zh_TW.diff -p0
-# localedata/locale-se_NO.diff -p0
-# localedata/tailor-iso14651_t1.diff -p0
-# localedata/tailor-iso14651_t1-common.diff 
-# localedata/fix-lang.diff -p0
-# localedata/cs_CZ-first_weekday.diff
-# localedata/da_DK-first_weekday.diff
-# localedata/pl_PL-first_weekday.diff
-# localedata/de_DE-first_weekday.diff
-# localedata/en_GB-first_weekday.diff
-# localedata/en_US-first_weekday.diff
-# localedata/et_EE-first_weekday.diff
-# localedata/fr_BE-first_weekday.diff
-# localedata/fr_CA-first_weekday.diff
-# localedata/fr_CH-first_weekday.diff
-# localedata/fr_FR-first_weekday.diff
-# localedata/fr_LU-first_weekday.diff
-# localedata/hu_HU-first_weekday.diff
-# localedata/nb_NO-first_weekday.diff
-# localedata/nn_NO-first_weekday.diff
-# localedata/sk_SK-first_weekday.diff
-# localedata/first_weekday.diff -p0
+localedata/fo_FO-date_fmt.diff

r2618 - in glibc-package/branches/glibc-2.7/debian: . patches patches/locale

2007-10-27 Thread madcoder
Author: madcoder
Date: 2007-10-27 11:32:02 + (Sat, 27 Oct 2007)
New Revision: 2618

Added:
   
glibc-package/branches/glibc-2.7/debian/patches/locale/preprocessor-collate-uli-sucks.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Fix Uli's preprocessor.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:31:58 UTC 
(rev 2617)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:32:02 UTC 
(rev 2618)
@@ -6,12 +6,14 @@
   * Update any/submitted-rfc3484-sortv4.diff.
   * Update localedata/*first_weekday.diff.
   * Remove localedata/fix-am_ET.diff (obsolete).
+  * Add locale/preprocessor-collate-uli-sucks.diff to fix endless loop when
+ifdef is used.
 
   [ Aurelien Jarno ]
   * Improve any/submitted-rfc3484-sortv4.diff.
   * Update hurd-i386/submitted-trivial.diff.
 
- -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 10:49:49 +0200
+ -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:29:45 +0200
 
 glibc (2.7-0exp1) experimental; urgency=low
 

Added: 
glibc-package/branches/glibc-2.7/debian/patches/locale/preprocessor-collate-uli-sucks.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/locale/preprocessor-collate-uli-sucks.diff
  (rev 0)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/locale/preprocessor-collate-uli-sucks.diff
  2007-10-27 11:32:02 UTC (rev 2618)
@@ -0,0 +1,11 @@
+--- locale/programs/ld-collate.c.orig
 locale/programs/ld-collate.c
+@@ -4034,6 +4034,8 @@
+arg-val.str.lenmb) == 0
+curdef-str[arg-val.str.lenmb] == '\0')
+ break;
++  else
++curdef = curdef-next;
+ 
+ if ((nowtok == tok_ifdef  curdef != NULL)
+ || (nowtok == tok_ifndef  curdef == NULL))

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:31:58 UTC (rev 2617)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:32:02 UTC (rev 2618)
@@ -1,6 +1,7 @@
 locale/check-unknown-symbols.diff
 locale/fix-LC_COLLATE-rules.diff -p0
-# locale/preprocessor-collate.diff -p0# should not be needed 
anymore
+# locale/preprocessor-collate.diff -p0# should not be needed 
anymore, but keep it anyways.
+locale/preprocessor-collate-uli-sucks.diff -p0
 locale/locale-print-LANGUAGE.diff -p0
 locale/LC_IDENTIFICATION-optional-fields.diff -p0
 locale/fix-C-first_weekday.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2614 - in glibc-package/branches/glibc-2.7/debian: . patches/hurd-i386

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 11:15:32 + (Sat, 27 Oct 2007)
New Revision: 2614

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-trivial.diff
Log:
  * Update hurd-i386/submitted-trivial.diff.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:14:34 UTC 
(rev 2613)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:15:32 UTC 
(rev 2614)
@@ -1,12 +1,17 @@
 glibc (2.7-0exp2) UNRELEASED; urgency=low
 
+  [ Pierre Habouzit ]
   * Remove any/local-iconv-fix-trampoline.diff (obsolete).
   * Remove any/submitted-strfry.diff (merged).
   * Update any/submitted-rfc3484-sortv4.diff.
   * Update localedata/*first_weekday.diff.
 
- -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 10:46:55 +0200
+  [ Aurelien Jarno ]
+  * Improve any/submitted-rfc3484-sortv4.diff.
+  * Update hurd-i386/submitted-trivial.diff.
 
+ -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:14:49 +0200
+
 glibc (2.7-0exp1) experimental; urgency=low
 
   [ Clint Adams ]

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-trivial.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-trivial.diff
2007-10-27 11:14:34 UTC (rev 2613)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-trivial.diff
2007-10-27 11:15:32 UTC (rev 2614)
@@ -1,42 +1,3 @@
-Not yet applied.  Needed on glibc-2_5-branch and HEAD.
-
-2006-06-13  Thomas Schwinge  [EMAIL PROTECTED]
-
-   * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
-   `__ASSEMBLER__'.
-   * sysdeps/mach/hurd/i386/tls.h: Likewise.
-
 sysdeps/mach/hurd/tls.h.orig
-+++ sysdeps/mach/hurd/tls.h
-@@ -20,7 +20,7 @@
- #ifndef _TLS_H
- #define _TLS_H
- 
--#if defined HAVE_TLS_SUPPORT  !defined ASSEMBLER
-+#if defined HAVE_TLS_SUPPORT  !defined __ASSEMBLER__
- 
- # include stddef.h
- # include stdbool.h
 sysdeps/mach/hurd/i386/tls.h.orig
-+++ sysdeps/mach/hurd/i386/tls.h
-@@ -29,7 +29,7 @@
-thread pointer points to is unspecified.  Allocate the TCB there.  */
- # define TLS_TCB_AT_TP1
- 
--# ifndef ASSEMBLER
-+# ifndef __ASSEMBLER__
- 
- /* Use i386-specific RPCs to arrange that %gs segment register prefix
-addresses the TCB in each thread.  */
-@@ -198,7 +198,7 @@
-   return err;
- }
- 
--# endif   /* !ASSEMBLER */
-+# endif   /* !__ASSEMBLER__ */
- #endif /* HAVE_TLS_SUPPORT */
- 
- #endif/* i386/tls.h */
 --- argp/argp-help.c.orig
 +++ argp/argp-help.c
 @@ -42,6 +42,7 @@


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2619 - in glibc-package/branches/glibc-2.7/debian: . patches patches/any

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 11:33:22 + (Sat, 27 Oct 2007)
New Revision: 2619

Added:
   glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
  * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper 
has still not managed to commit a correct version.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:32:02 UTC 
(rev 2618)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:33:22 UTC 
(rev 2619)
@@ -12,8 +12,10 @@
   [ Aurelien Jarno ]
   * Improve any/submitted-rfc3484-sortv4.diff.
   * Update hurd-i386/submitted-trivial.diff.
+  * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper 
+has still not managed to commit a correct version.
 
- -- Pierre Habouzit [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:29:45 +0200
+ -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:30:26 +0200
 
 glibc (2.7-0exp1) experimental; urgency=low
 

Added: glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff
===
--- glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff   
(rev 0)
+++ glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff   
2007-10-27 11:33:22 UTC (rev 2619)
@@ -0,0 +1,11 @@
+--- string/strfry.c2007-10-27 11:58:46.35000 +0200
 string/strfry.c.orig   2007-10-27 11:58:24.29000 +0200
+@@ -38,7 +38,7 @@
+ }
+ 
+   len = strlen (string) - 1;
+-  for (i = 0; i  len - 1; ++i)
++  for (i = 0; i  len; ++i)
+ {
+   int32_t j;
+   __random_r (rdata, j);

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:32:02 UTC (rev 2618)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:33:22 UTC (rev 2619)
@@ -140,6 +140,7 @@
 any/local-o_cloexec.diff -p0
 any/local-rtld.diff -p0
 any/local-sysctl.diff -p0
+any/local-strfry.diff -p0
 any/local-stubs_h.diff 
 any/local-stdio-lock.diff -p0
 any/local-tcsetaddr.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2620 - glibc-package/branches/glibc-2.7/debian/patches

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 11:37:34 + (Sat, 27 Oct 2007)
New Revision: 2620

Modified:
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Actually reenable hurd-i386/submitted-trivial.diff


Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:33:22 UTC (rev 2619)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:37:34 UTC (rev 2620)
@@ -77,7 +77,7 @@
 # hurd-i386/submitted-libc_once.diff -p0
 hurd-i386/submitted-stat.diff -p0
 hurd-i386/submitted-sysvshm.diff 
-# hurd-i386/submitted-trivial.diff -p0
+hurd-i386/submitted-trivial.diff -p0
 hurd-i386/submitted-ioctl-unsigned-size_t.diff -p0
 hurd-i386/cvs-ECANCELED.diff
 # hurd-i386/cvs-ioctl-delay.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2621 - in glibc-package/branches/glibc-2.7/debian: . patches patches/hppa

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 11:48:51 + (Sat, 27 Oct 2007)
New Revision: 2621

Removed:
   glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-threaddb.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
  * Remove hppa/submitted-threaddb.diff (merged).



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:37:34 UTC 
(rev 2620)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:48:51 UTC 
(rev 2621)
@@ -14,6 +14,7 @@
   * Update hurd-i386/submitted-trivial.diff.
   * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper 
 has still not managed to commit a correct version.
+  * Remove hppa/submitted-threaddb.diff (merged).
 
  -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:30:26 +0200
 

Deleted: 
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-threaddb.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-threaddb.diff
2007-10-27 11:37:34 UTC (rev 2620)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-threaddb.diff
2007-10-27 11:48:51 UTC (rev 2621)
@@ -1,19 +0,0 @@
-Fix the register offset for libthread_db to do THREAD_SELF properly.
-
 ports/sysdeps/hppa/nptl/tls.h.orig
-+++ ports/sysdeps/hppa/nptl/tls.h
-@@ -117,10 +117,11 @@
-   __self - 1; \
-})
- 
--/* FIXME */
--/* Magic for libthread_db to know how to do THREAD_SELF.  */
-+/* Magic for libthread_db to know how to do THREAD_SELF.
-+   Our thread pointer is stored in cr27.  See asm/elf.h for the offset into
-+   elf_gregset_t.  The thread descriptor is sizeof (struct pthread) away.  */
- # define DB_THREAD_SELF \
--  REGISTER (32, 32, 32 * 4, -sizeof (struct pthread))
-+  REGISTER (32, 32, 53 * 4, -sizeof (struct pthread))
- 
- /* Access to data in the thread descriptor is easy.  */
- # define THREAD_GETMEM(descr, member) \

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:37:34 UTC (rev 2620)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
11:48:51 UTC (rev 2621)
@@ -62,7 +62,6 @@
 hppa/submitted-lt.diff -p0
 # hppa/submitted-nptl-carlos.diff -p0
 hppa/submitted-pie.diff 
-# hppa/submitted-threaddb.diff -p0
 hppa/local-inlining.diff -p0
 hppa/local-linuxthreads.diff -p0
 hppa/local-linuxthreads-gscope.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2622 - in glibc-package/branches/glibc-2.7/debian: . patches patches/hppa

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 13:13:35 + (Sat, 27 Oct 2007)
New Revision: 2622

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-nptl-carlos.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
  * Update hppa/submitted-nptl-carlos.diff.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 11:48:51 UTC 
(rev 2621)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:13:35 UTC 
(rev 2622)
@@ -15,6 +15,7 @@
   * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper 
 has still not managed to commit a correct version.
   * Remove hppa/submitted-threaddb.diff (merged).
+  * Update hppa/submitted-nptl-carlos.diff.
 
  -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:30:26 +0200
 
@@ -54,13 +55,10 @@
 - Update localedata/sort-UTF8-first.diff.
 - Remove localedata/submitted-as_IN.diff (merged).
 - Remove hppa/submitted-multiple-threads.diff (merged).
-- Disable hppa/submitted-nptl-carlos.diff.
-- Disable hppa/submitted-threaddb.diff.
 - Remove hppa/submitted-ustat.diff (merged).
 - Disable hurd-i386/local-tls-support.diff.
 - Remove hurd-i386/cvs-sigsuspend-nocancel.diff (merged).
 - Disable hurd-i386/submitted-libc_once.diff.
-- Disable hurd-i386/submitted-trivial.diff.
 - Remove hurd-i386/cvs-lock-intern.diff (merged).
 - Disable hurd-i386/cvs-ioctl-delay.diff.
 - Remove sparc/local-undefined-registers.diff (obsolete).

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-nptl-carlos.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-nptl-carlos.diff 
2007-10-27 11:48:51 UTC (rev 2621)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/hppa/submitted-nptl-carlos.diff 
2007-10-27 13:13:35 UTC (rev 2622)
@@ -1,44 +1,3 @@
 elf/elf.h.orig
-+++ elf/elf.h
-@@ -1710,6 +1710,8 @@
- #define R_PARISC_LTOFF_FPTR14R62  /* LT-rel. fct ptr, right 14 
bits. */
- #define R_PARISC_FPTR64   64  /* 64 bits function address.  */
- #define R_PARISC_PLABEL32 65  /* 32 bits function address.  */
-+#define R_PARISC_PLABEL21L66  /* Left 21 bits of fdesc address */
-+#define R_PARISC_PLABEL14R70  /* Right 14 bits of fdesc address */
- #define R_PARISC_PCREL64  72  /* 64 bits PC-rel. address.  */
- #define R_PARISC_PCREL22F 74  /* 22 bits PC-rel. address.  */
- #define R_PARISC_PCREL14WR75  /* PC-rel. address, right 14 bits.  */
-@@ -1770,6 +1772,29 @@
- #define R_PARISC_LTOFF_TP16F  229 /* 16 bits LT-TP-rel. address.  */
- #define R_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address.  */
- #define R_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address.  */
-+
-+#define R_PARISC_GNU_VTENTRY232
-+#define R_PARISC_GNU_VTINHERIT  233
-+#define R_PARISC_TLS_GD21L  234   /* GD 21-bit left */
-+#define R_PARISC_TLS_GD14R  235   /* GD 14-bit right */
-+#define R_PARISC_TLS_GDCALL 236   /* GD call to __t_g_a */
-+#define R_PARISC_TLS_LDM21L 237   /* LD module 21-bit left */
-+#define R_PARISC_TLS_LDM14R 238   /* LD module 14-bit right */
-+#define R_PARISC_TLS_LDMCALL239   /* LD module call to __t_g_a */
-+#define R_PARISC_TLS_LDO21L 240   /* LD offset 21-bit left */
-+#define R_PARISC_TLS_LDO14R 241   /* LD offset 14-bit right */
-+#define R_PARISC_TLS_DTPMOD32   242   /* DTP module 32-bit */
-+#define R_PARISC_TLS_DTPMOD64   243   /* DTP module 64-bit */
-+#define R_PARISC_TLS_DTPOFF32   244   /* DTP offset 32-bit */
-+#define R_PARISC_TLS_DTPOFF64   245   /* DTP offset 32-bit */
-+
-+#define R_PARISC_TLS_LE21L  R_PARISC_TPREL21L
-+#define R_PARISC_TLS_LE14R  R_PARISC_TPREL14R
-+#define R_PARISC_TLS_IE21L  R_PARISC_LTOFF_TP21L
-+#define R_PARISC_TLS_IE14R  R_PARISC_LTOFF_TP14R
-+#define R_PARISC_TLS_TPREL32R_PARISC_TPREL32
-+#define R_PARISC_TLS_TPREL64R_PARISC_TPREL64
-+
- #define R_PARISC_HIRESERVE255
- 
- /* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr.  */
 --- elf/rtld.c.orig
 +++ elf/rtld.c
 @@ -379,14 +379,14 @@
@@ -61,80 +20,6 @@
  # endif
  # if USE___THREAD
bootstrap_map.l_tls_modid = 0;
 nptl/Makefile.orig
-+++ nptl/Makefile
-@@ -263,9 +263,9 @@
- # Files which must not be linked with libpthread.
- tests-nolibpthread = tst-unload
- 
--# This sets the stack resource limit to 1023kb, which is not a multiple
--# of the page size since every architecture's page size is  1k.
--tst-oddstacklimit-ENV = ; ulimit -s 1023;
-+# This sets the stack resource limit to 8193kb, which is not a multiple
-+# of the page size since every architecture's page size is 4096 bytes.
-+tst-oddstacklimit-ENV = ; ulimit -s 8193;
- 

r2623 - glibc-package/branches/glibc-2.7/debian/patches/any

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 13:22:24 + (Sat, 27 Oct 2007)
New Revision: 2623

Modified:
   glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff
Log:
Reverse any/local-strfry.diff


Modified: glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff
===
--- glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff   
2007-10-27 13:13:35 UTC (rev 2622)
+++ glibc-package/branches/glibc-2.7/debian/patches/any/local-strfry.diff   
2007-10-27 13:22:24 UTC (rev 2623)
@@ -1,11 +1,11 @@
 string/strfry.c2007-10-27 11:58:46.35000 +0200
-+++ string/strfry.c.orig   2007-10-27 11:58:24.29000 +0200
+--- string/strfry.c.orig   2007-10-27 11:58:24.29000 +0200
 string/strfry.c2007-10-27 11:58:46.35000 +0200
 @@ -38,7 +38,7 @@
  }
  
len = strlen (string) - 1;
--  for (i = 0; i  len - 1; ++i)
-+  for (i = 0; i  len; ++i)
+-  for (i = 0; i  len; ++i)
++  for (i = 0; i  len - 1; ++i)
  {
int32_t j;
__random_r (rdata, j);


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#448248: Fixes for SH4 targets

2007-10-27 Thread Arthur Loiret
Package: libc6
Version: 2.6.1-6
Severity: wishlist
Tags: patch


Dear glibc maintainers,

Here are two patches to fix build on sh4 targets, I would be glad if
they could be merged in the main debian package since I'm working on the
sh4 port.


Here is a small repo with sh4 cross-compilers to test build:

deb http://people.dunnewind.net/arthur/sh4/cross/ ./

sudo aptitude install gcc-4.2-sh4-linux-gnu ...


I'll try to keep the sh4 patches up-to-date here:
http://people.dunnewind.net/arthur/sh4/patches/


Thanks,

Arthur.

--- sysdeps/unix/sysv/linux/check_pf.c	2007-10-16 14:05:26.798517293 +
+++ sysdeps/unix/sysv/linux/check_pf.c	2007-10-16 14:06:11.811066397 +
@@ -25,6 +25,8 @@
 #include string.h
 #include time.h
 #include unistd.h
+#include alloca.h
+#include stdlib.h
 #include sys/socket.h
 
 #include asm/types.h
--- sysdeps/unix/sysv/linux/sh/Versions	2007-10-16 14:23:47.553278705 +
+++ sysdeps/unix/sysv/linux/sh/Versions	2007-10-16 14:24:32.517804705 +
@@ -2,6 +2,7 @@
   GLIBC_2.2 {
 # functions used in other libraries
 __xstat64; __fxstat64; __lxstat64;
+__fpscr_values;
 
 # a*
 alphasort64;
--- sysdeps/unix/sysv/linux/sh/sysdep.S	2007-10-16 14:23:56.151674031 +
+++ sysdeps/unix/sysv/linux/sh/sysdep.S	2007-10-16 14:26:10.525105917 +
@@ -32,3 +32,14 @@
 
 #define __syscall_error __syscall_error_1
 #include sysdeps/unix/sh/sysdep.S
+
+   .data
+   .align 3
+   .globl ___fpscr_values
+   .type ___fpscr_values, @object
+   .size ___fpscr_values, 8
+___fpscr_values:
+   .long 0
+   .long 0x8
+weak_alias (___fpscr_values, __fpscr_values)
+


signature.asc
Description: Digital signature


r2624 - in glibc-package/branches/glibc-2.7/debian: . patches patches/hurd-i386

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 13:37:03 + (Sat, 27 Oct 2007)
New Revision: 2624

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-libc_once.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
* Update hurd-i386/submitted-libc_once.diff.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:22:24 UTC 
(rev 2623)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:37:03 UTC 
(rev 2624)
@@ -12,12 +12,13 @@
   [ Aurelien Jarno ]
   * Improve any/submitted-rfc3484-sortv4.diff.
   * Update hurd-i386/submitted-trivial.diff.
-  * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper 
+  * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper
 has still not managed to commit a correct version.
   * Remove hppa/submitted-threaddb.diff (merged).
   * Update hppa/submitted-nptl-carlos.diff.
+  * Update hurd-i386/submitted-libc_once.diff.
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 13:30:26 +0200
+ -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:36:20 +0200
 
 glibc (2.7-0exp1) experimental; urgency=low
 
@@ -58,7 +59,6 @@
 - Remove hppa/submitted-ustat.diff (merged).
 - Disable hurd-i386/local-tls-support.diff.
 - Remove hurd-i386/cvs-sigsuspend-nocancel.diff (merged).
-- Disable hurd-i386/submitted-libc_once.diff.
 - Remove hurd-i386/cvs-lock-intern.diff (merged).
 - Disable hurd-i386/cvs-ioctl-delay.diff.
 - Remove sparc/local-undefined-registers.diff (obsolete).

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-libc_once.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-libc_once.diff
  2007-10-27 13:22:24 UTC (rev 2623)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/submitted-libc_once.diff
  2007-10-27 13:37:03 UTC (rev 2624)
@@ -18,24 +18,22 @@
 
 --- sysdeps/posix/getaddrinfo.c.orig
 +++ sysdeps/posix/getaddrinfo.c
-@@ -1927,11 +1927,13 @@
+@@ -1950,9 +1950,13 @@
if (naddrs  1)
  {
/* Read the config file.  */
-+  void _gaiconf_reload (void)
-+  {
-+if (gaiconf_reload_flag)
-+  gaiconf_reload ();
-+  }
++  void _gaiconf_reload (void) 
++  {
++if (gaiconf_reload_flag)
++  gaiconf_reload ();
++  }
__libc_once_define (static, once);
 -  __typeof (once) old_once = once;
 -  __libc_once (once, gaiconf_init);
--  if (old_once  gaiconf_reload_flag)
--  gaiconf_reload ();
 +  __libc_once_else (once, gaiconf_init, _gaiconf_reload);
- 
/* Sort results according to RFC 3484.  */
struct sort_result results[nresults];
+   struct addrinfo *q;
 --- bits/libc-lock.h.orig
 +++ bits/libc-lock.h
 @@ -89,7 +89,7 @@

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
13:22:24 UTC (rev 2623)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
13:37:03 UTC (rev 2624)
@@ -73,7 +73,7 @@
 hurd-i386/local-tls.diff 
 # hurd-i386/local-tls-support.diff -p0
 hurd-i386/submitted-ioctl-decode-argument.diff -p0
-# hurd-i386/submitted-libc_once.diff -p0
+hurd-i386/submitted-libc_once.diff -p0
 hurd-i386/submitted-stat.diff -p0
 hurd-i386/submitted-sysvshm.diff 
 hurd-i386/submitted-trivial.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2625 - in glibc-package/branches/glibc-2.7/debian: . patches patches/hurd-i386

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 13:40:05 + (Sat, 27 Oct 2007)
New Revision: 2625

Removed:
   
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/cvs-ioctl-delay.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
  * Remove hurd-i386/cvs-ioctl-delay.diff (merged).



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:37:03 UTC 
(rev 2624)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:40:05 UTC 
(rev 2625)
@@ -17,8 +17,9 @@
   * Remove hppa/submitted-threaddb.diff (merged).
   * Update hppa/submitted-nptl-carlos.diff.
   * Update hurd-i386/submitted-libc_once.diff.
+  * Remove hurd-i386/cvs-ioctl-delay.diff (merged).
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:36:20 +0200
+ -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:39:26 +0200
 
 glibc (2.7-0exp1) experimental; urgency=low
 
@@ -60,7 +61,6 @@
 - Disable hurd-i386/local-tls-support.diff.
 - Remove hurd-i386/cvs-sigsuspend-nocancel.diff (merged).
 - Remove hurd-i386/cvs-lock-intern.diff (merged).
-- Disable hurd-i386/cvs-ioctl-delay.diff.
 - Remove sparc/local-undefined-registers.diff (obsolete).
 - Remove all/local-pt_BR.diff (merged).
 - Remove any/cvs-ld_library_path.diff (merged).

Deleted: 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/cvs-ioctl-delay.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/cvs-ioctl-delay.diff  
2007-10-27 13:37:03 UTC (rev 2624)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/cvs-ioctl-delay.diff  
2007-10-27 13:40:05 UTC (rev 2625)
@@ -1,50 +0,0 @@
-Index: sysdeps/mach/hurd/bits/ioctls.h
-===
-RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/bits/ioctls.h,v
-retrieving revision 1.8
-retrieving revision 1.9
-diff -u -p -r1.8 -r1.9
 sysdeps/mach/hurd/bits/ioctls.h7 Jan 2006 23:29:39 -   1.8
-+++ sysdeps/mach/hurd/bits/ioctls.h10 Aug 2007 22:50:53 -  1.9
-@@ -1,4 +1,4 @@
--/* Copyright (C) 1992,93,96,97,98,99,2001 Free Software Foundation, Inc.
-+/* Copyright (C) 1992,93,96,97,98,99,2001,2007 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
-@@ -284,25 +284,30 @@ enum __ioctl_datum { IOC_8, IOC_16, IOC_
- #define   ODDP0x0040  /* get/send odd parity 
*/
- #define   EVENP   0x0080  /* get/send even parity 
*/
- #define   ANYP0x00c0  /* get any parity/send 
none */
--#define   NLDELAY 0x0300  /* \n delay */
-+#define   NLDLY   0x0300  /* \n delay */
-+#define   NLDELAY NLDLY   /* traditional BSD name 
*/
- #define   NL0 0x
- #define   NL1 0x0100  /* tty 37 */
- #define   NL2 0x0200  /* vt05 */
- #define   NL3 0x0300
--#define   TBDELAY 0x0c00  /* horizontal tab delay 
*/
-+#define   TABDLY  0x0c00  /* horizontal tab delay 
*/
-+#define   TBDELAY TABDLY  /* traditional BSD name 
*/
- #define   TAB00x
- #define   TAB10x0400  /* tty 37 */
- #define   TAB20x0800
- #define   XTABS   0x0c00  /* expand tabs on 
output */
--#define   CRDELAY 0x3000  /* \r delay */
-+#define   CRDLY   0x3000  /* \r delay */
-+#define   CRDELAY CRDLY   /* traditional BSD name 
*/
- #define   CR0 0x
- #define   CR1 0x1000  /* tn 300 */
- #define   CR2 0x2000  /* tty 37 */
- #define   CR3 0x3000  /* concept 100 */
--#define   VTDELAY 0x4000  /* vertical tab delay */
-+#define   VTDLY   0x4000  /* vertical tab delay */
-+#define   VTDELAY VTDLY   /* traditional BSD name 
*/
- #define   FF0 0x
- #define   FF1 0x4000  /* tty 37 */
--#define   BSDELAY 0x8000  /* \b delay */
-+#define   BSDLY   0x8000  /* \b delay */
-+#define   BSDELAY BSDLY   /* traditional BSD name 
*/
- #define   BS0 

r2626 - in glibc-package/branches/glibc-2.7/debian: . patches/hurd-i386

2007-10-27 Thread aurel32
Author: aurel32
Date: 2007-10-27 13:45:33 + (Sat, 27 Oct 2007)
New Revision: 2626

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/local-tls-support.diff
Log:

  * Update hurd-i386/local-tls-support.diff.


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:40:05 UTC 
(rev 2625)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:45:33 UTC 
(rev 2626)
@@ -18,8 +18,9 @@
   * Update hppa/submitted-nptl-carlos.diff.
   * Update hurd-i386/submitted-libc_once.diff.
   * Remove hurd-i386/cvs-ioctl-delay.diff (merged).
+  * Update hurd-i386/local-tls-support.diff.
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:39:26 +0200
+ -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:44:29 +0200
 
 glibc (2.7-0exp1) experimental; urgency=low
 
@@ -58,7 +59,6 @@
 - Remove localedata/submitted-as_IN.diff (merged).
 - Remove hppa/submitted-multiple-threads.diff (merged).
 - Remove hppa/submitted-ustat.diff (merged).
-- Disable hurd-i386/local-tls-support.diff.
 - Remove hurd-i386/cvs-sigsuspend-nocancel.diff (merged).
 - Remove hurd-i386/cvs-lock-intern.diff (merged).
 - Remove sparc/local-undefined-registers.diff (obsolete).

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/local-tls-support.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/local-tls-support.diff
2007-10-27 13:40:05 UTC (rev 2625)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/hurd-i386/local-tls-support.diff
2007-10-27 13:45:33 UTC (rev 2626)
@@ -1,6 +1,6 @@
 csu/libc-start.c.orig
-+++ csu/libc-start.c
-@@ -134,11 +134,13 @@
+--- csu/libc-start.c.orig  
 csu/libc-start.c   2007-10-27 15:42:32.0 +0200
+@@ -134,10 +134,12 @@
  }
  # endif
  
@@ -9,11 +9,296 @@
   functions are using thread functions if these are available and
   we need to setup errno.  */
__pthread_initialize_minimal ();
- #endif
 +#endif
  
- # ifndef SHARED
/* Set up the stack checker's canary.  */
+   uintptr_t stack_chk_guard = _dl_setup_stack_chk_guard ();
+--- csu/libc-start.c.orig.orig
 csu/libc-start.c.orig
+@@ -0,0 +1,253 @@
++/* Copyright (C) 1998-2006, 2007 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 stdlib.h
++#include stdio.h
++#include unistd.h
++#include ldsodefs.h
++#include bp-start.h
++#include bp-sym.h
++
++extern void __libc_init_first (int argc, char **argv, char **envp);
++
++extern int __libc_multiple_libcs;
++
++#include tls.h
++#ifndef SHARED
++# include dl-osinfo.h
++extern void __pthread_initialize_minimal (void);
++# ifndef THREAD_SET_STACK_GUARD
++/* Only exported for architectures that don't store the stack guard canary
++   in thread local area.  */
++uintptr_t __stack_chk_guard attribute_relro;
++# endif
++#endif
++
++#ifdef HAVE_PTR_NTHREADS
++/* We need atomic operations.  */
++# include atomic.h
++#endif
++
++
++#ifdef LIBC_START_MAIN
++# ifdef LIBC_START_DISABLE_INLINE
++#  define STATIC static
++# else
++#  define STATIC static inline __attribute__ ((always_inline))
++# endif
++#else
++# define STATIC
++# define LIBC_START_MAIN BP_SYM (__libc_start_main)
++#endif
++
++#ifdef MAIN_AUXVEC_ARG
++/* main gets passed a pointer to the auxiliary.  */
++# define MAIN_AUXVEC_DECL , void *
++# define MAIN_AUXVEC_PARAM, auxvec
++#else
++# define MAIN_AUXVEC_DECL
++# define MAIN_AUXVEC_PARAM
++#endif
++
++STATIC int LIBC_START_MAIN (int (*main) (int, char **, char **
++   MAIN_AUXVEC_DECL),
++  int argc,
++  char *__unbounded *__unbounded ubp_av,
++#ifdef LIBC_START_MAIN_AUXVEC_ARG
++  ElfW(auxv_t) *__unbounded auxvec,
++#endif
++  __typeof (main) init,
++  void (*fini) (void),
++  void (*rtld_fini) (void),
++  

Processing of glibc_2.7-0exp2_all.changes

2007-10-27 Thread Archive Administrator
glibc_2.7-0exp2_all.changes uploaded successfully to localhost
along with the files:
  glibc_2.7-0exp2.dsc
  glibc_2.7-0exp2.diff.gz
  glibc-doc_2.7-0exp2_all.deb
  locales_2.7-0exp2_all.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2627 - in glibc-package/branches/glibc-2.7/debian: . patches patches/localedata

2007-10-27 Thread schizo
Author: schizo
Date: 2007-10-27 14:30:36 + (Sat, 27 Oct 2007)
New Revision: 2627

Added:
   
glibc-package/branches/glibc-2.7/debian/patches/localedata/cy_GB-first_weekday.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
split cy_GB weekday change into its own patch


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 13:45:33 UTC 
(rev 2626)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 14:30:36 UTC 
(rev 2627)
@@ -22,7 +22,7 @@
 
  -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:44:29 +0200
 
-glibc (2.7-0exp1) experimental; urgency=low
+glibc (2.7-0exp2) experimental; urgency=low
 
   [ Clint Adams ]
   * New upstream release with linuxthreads snapshot.
@@ -55,6 +55,7 @@
 - Add localedata/nb_NO-first_weekday.diff.
 - Add localedata/nn_NO-first_weekday.diff.
 - Add localedata/sk_SK-first_weekday.diff.
+- Add localedata/cy_GB-first_weekday.diff.
 - Update localedata/sort-UTF8-first.diff.
 - Remove localedata/submitted-as_IN.diff (merged).
 - Remove hppa/submitted-multiple-threads.diff (merged).

Added: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/cy_GB-first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/cy_GB-first_weekday.diff
 (rev 0)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/cy_GB-first_weekday.diff
 2007-10-27 14:30:36 UTC (rev 2627)
@@ -0,0 +1,13 @@
+Index: pippi/localedata/locales/cy_GB
+===
+--- pipo/localedata/locales/cy_GB.orig 2007-10-22 22:17:08.0 -0400
 bipo/localedata/locales/cy_GB  2007-10-22 23:00:05.0 -0400
+@@ -253,6 +253,8 @@
+ date_fmtU0025U0061U0020U0025U0062U0020U0025U0065/
+ U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
+ U0025U005AU0020U0025U0059
++%  FIXME: found in CLDR
++first_weekday 2
+ END LC_TIME
+ 
+ LC_MESSAGES

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff   
2007-10-27 13:45:33 UTC (rev 2626)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/localedata/first_weekday.diff   
2007-10-27 14:30:36 UTC (rev 2627)
@@ -370,17 +370,6 @@
  first_weekday 2
  first_workday 2
  END LC_TIME
 localedata/locales/cy_GB.orig
-+++ localedata/locales/cy_GB
-@@ -253,6 +253,8 @@
- date_fmtU0025U0061U0020U0025U0062U0020U0025U0065/
- U0020U0025U0048U003AU0025U004DU003AU0025U0053U0020/
- U0025U005AU0020U0025U0059
-+%  FIXME: found in CLDR
-+first_weekday 2
- END LC_TIME
- 
- LC_MESSAGES
 --- localedata/locales/de_AT.orig
 +++ localedata/locales/de_AT
 @@ -121,6 +121,8 @@

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
13:45:33 UTC (rev 2626)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-10-27 
14:30:36 UTC (rev 2627)
@@ -43,6 +43,7 @@
 localedata/nb_NO-first_weekday.diff
 localedata/nn_NO-first_weekday.diff
 localedata/sk_SK-first_weekday.diff
+localedata/cy_GB-first_weekday.diff
 localedata/first_weekday.diff -p0
 
 alpha/local-gcc4.1.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



glibc_2.7-0exp2_all.changes ACCEPTED

2007-10-27 Thread Debian Installer

Accepted:
glibc-doc_2.7-0exp2_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-0exp2_all.deb
glibc_2.7-0exp2.diff.gz
  to pool/main/g/glibc/glibc_2.7-0exp2.diff.gz
glibc_2.7-0exp2.dsc
  to pool/main/g/glibc/glibc_2.7-0exp2.dsc
locales_2.7-0exp2_all.deb
  to pool/main/g/glibc/locales_2.7-0exp2_all.deb


Override entries for your package:
glibc-doc_2.7-0exp2_all.deb - optional doc
glibc_2.7-0exp2.dsc - source libs
locales_2.7-0exp2_all.deb - standard libs

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2628 - glibc-package/branches/glibc-2.7/debian

2007-10-27 Thread schizo
Author: schizo
Date: 2007-10-27 14:36:16 + (Sat, 27 Oct 2007)
New Revision: 2628

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
Log:
changelog three-card monte


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 14:30:36 UTC 
(rev 2627)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-10-27 14:36:16 UTC 
(rev 2628)
@@ -1,32 +1,7 @@
-glibc (2.7-0exp2) UNRELEASED; urgency=low
+glibc (2.7-0exp3) UNRELEASED; urgency=low
 
-  [ Pierre Habouzit ]
-  * Remove any/local-iconv-fix-trampoline.diff (obsolete).
-  * Remove any/submitted-strfry.diff (merged).
-  * Update any/submitted-rfc3484-sortv4.diff.
-  * Update localedata/*first_weekday.diff.
-  * Remove localedata/fix-am_ET.diff (obsolete).
-  * Add locale/preprocessor-collate-uli-sucks.diff to fix endless loop when
-ifdef is used.
-
-  [ Aurelien Jarno ]
-  * Improve any/submitted-rfc3484-sortv4.diff.
-  * Update hurd-i386/submitted-trivial.diff.
-  * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper
-has still not managed to commit a correct version.
-  * Remove hppa/submitted-threaddb.diff (merged).
-  * Update hppa/submitted-nptl-carlos.diff.
-  * Update hurd-i386/submitted-libc_once.diff.
-  * Remove hurd-i386/cvs-ioctl-delay.diff (merged).
-  * Update hurd-i386/local-tls-support.diff.
-
- -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 27 Oct 2007 15:44:29 +0200
-
-glibc (2.7-0exp2) experimental; urgency=low
-
   [ Clint Adams ]
   * New upstream release with linuxthreads snapshot.
-| *** Disable most locale/ and localedata/ patches *** |
 - Remove localedata/locale-de_CH.diff (merged).
 - Update locale/fix-LC_COLLATE-rules.diff.
 - Update locale/LC_COLLATE-keywords-ordering.diff.
@@ -79,6 +54,15 @@
   [ Aurelien Jarno ]
   * kfreebsd/local-sysdeps.diff: update to revision 2006 (from glibc-bsd).
   * any/submitted-longdouble.diff: update.
+  * Improve any/submitted-rfc3484-sortv4.diff.
+  * Update hurd-i386/submitted-trivial.diff.
+  * any/local-strfry.diff: new patch to fix strfry(), as Ulrich Drepper
+has still not managed to commit a correct version.
+  * Remove hppa/submitted-threaddb.diff (merged).
+  * Update hppa/submitted-nptl-carlos.diff.
+  * Update hurd-i386/submitted-libc_once.diff.
+  * Remove hurd-i386/cvs-ioctl-delay.diff (merged).
+  * Update hurd-i386/local-tls-support.diff.
 
   [ Petr Salinger]
   * any/local-linuxthreads-unwind.diff: provide unwind-resume routine for
@@ -86,6 +70,15 @@
   * any/local-stdio-lock.diff: make _IO_*_lock linuxthreads compliant.
   * any/local-o_cloexec.diff: don't assume O_CLOEXEC is always defined.
 
+  [ Pierre Habouzit ]
+  * Remove any/local-iconv-fix-trampoline.diff (obsolete).
+  * Remove any/submitted-strfry.diff (merged).
+  * Update any/submitted-rfc3484-sortv4.diff.
+  * Update localedata/*first_weekday.diff.
+  * Remove localedata/fix-am_ET.diff (obsolete).
+  * Add locale/preprocessor-collate-uli-sucks.diff to fix endless loop when
+ifdef is used.
+
  -- Clint Adams [EMAIL PROTECTED]  Sun, 21 Oct 2007 18:51:47 -0400
 
 glibc (2.6.1-6) unstable; urgency=low


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processing of glibc_2.7-0exp3_all.changes

2007-10-27 Thread Archive Administrator
glibc_2.7-0exp3_all.changes uploaded successfully to localhost
along with the files:
  glibc_2.7-0exp3.dsc
  glibc_2.7-0exp3.diff.gz
  glibc-doc_2.7-0exp3_all.deb
  locales_2.7-0exp3_all.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[Bug localedata/5224] New: unknown symbols in ig_NG

2007-10-27 Thread schizo at debian dot org
collation symbols 's-h-ig', 's-h', and 'S-H' are not defined in locales/ig_NG .

-- 
   Summary: unknown symbols in ig_NG
   Product: glibc
   Version: unspecified
Status: NEW
  Severity: normal
  Priority: P2
 Component: localedata
AssignedTo: libc-locales at sources dot redhat dot com
ReportedBy: schizo at debian dot org
CC: debian-glibc at lists dot debian dot org,glibc-bugs at
sources dot redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=5224

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



glibc_2.7-0exp3_all.changes ACCEPTED

2007-10-27 Thread Debian Installer

Accepted:
glibc-doc_2.7-0exp3_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-0exp3_all.deb
glibc_2.7-0exp3.diff.gz
  to pool/main/g/glibc/glibc_2.7-0exp3.diff.gz
glibc_2.7-0exp3.dsc
  to pool/main/g/glibc/glibc_2.7-0exp3.dsc
locales_2.7-0exp3_all.deb
  to pool/main/g/glibc/locales_2.7-0exp3_all.deb


Override entries for your package:
glibc-doc_2.7-0exp3_all.deb - optional doc
glibc_2.7-0exp3.dsc - source libs
locales_2.7-0exp3_all.deb - standard libs

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#442568: glibc: floor() is giving incorrect results on alpha architecture

2007-10-27 Thread Craig Prescott

Here's how my old EV45 runs your test code with
math_emu loaded:

imladris:~# ./floortest
DBL_MANT_DIG = 53
9007199254740991.00 9007199254740991.00

And here is without:

imladris:~# rmmod math_emu
imladris:~# ./floortest
DBL_MANT_DIG = 53
9007199254740991.00 0.00
floortest: floortest.c:12: main: Assertion `x == floor(x)' failed.
Aborted

This machine is not exactly up to date, but:

imladris:~# uname -a
Linux imladris 2.6.18-3-alpha-generic #1 Mon Dec 4 16:04:14 UTC 2006 
alpha GNU/Linux


This thread from back in February is probably of interest:

http://lists.debian.org/debian-alpha/2007/02/msg00016.html

At that time, it sounded like MATHEMU was going to end up
being built into alpha kernels at some point, instead of
being a module.  I guess this would solve the problem you
ran into?

Cheers,
Craig



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]