r2638 - glibc-package/trunk/debian

2007-11-01 Thread madcoder
Author: madcoder
Date: 2007-11-01 10:08:46 + (Thu, 01 Nov 2007)
New Revision: 2638

Modified:
   glibc-package/trunk/debian/changelog
Log:
we're now epoche-d

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


Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2007-10-30 17:51:13 UTC (rev 
2637)
+++ glibc-package/trunk/debian/changelog2007-11-01 10:08:46 UTC (rev 
2638)
@@ -1,3 +1,11 @@
+glibc (1:2.6.1-7) unstable; urgency=high
+
+  * glibc 2.7-0exp5 wasn't meant for unstable, set urgency to high so that the
+migration of the very same package than -6 doesn't prevent migration too
+long, and gain a stupid epoch.
+
+ -- Pierre Habouzit [EMAIL PROTECTED]  Thu, 01 Nov 2007 11:08:06 +0100
+
 glibc (2.6.1-6) unstable; urgency=low
 
   [ Aurelien Jarno ]


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



r2639 - glibc-package/branches/glibc-2.7/debian

2007-11-01 Thread aurel32
Author: aurel32
Date: 2007-11-01 10:18:37 + (Thu, 01 Nov 2007)
New Revision: 2639

Modified:
   glibc-package/branches/glibc-2.7/debian/rules
Log:
Add a check to make sure the experimental version is not uploaded to unstable


Modified: glibc-package/branches/glibc-2.7/debian/rules
===
--- glibc-package/branches/glibc-2.7/debian/rules   2007-11-01 10:08:46 UTC 
(rev 2638)
+++ glibc-package/branches/glibc-2.7/debian/rules   2007-11-01 10:18:37 UTC 
(rev 2639)
@@ -156,6 +156,8 @@
 include debian/rules.d/*.mk
 
 clean:: debhelper-clean
+   #  Do not accidentally upload into unstable
+   dpkg-parsechangelog  | grep ^Distribution: | grep -q -v unstable
rm -rf $(patsubst %,debian/tmp-%,$(GLIBC_PASSES))
rm -rf $(build-tree)
rm -rf $(stamp)


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



r2640 - in glibc-package/branches/glibc-2.7/debian: . patches patches/alpha

2007-11-01 Thread madcoder
Author: madcoder
Date: 2007-11-01 13:41:15 + (Thu, 01 Nov 2007)
New Revision: 2640

Added:
   
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Hopefully fix alpha.

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-11-01 10:18:37 UTC 
(rev 2639)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 13:41:15 UTC 
(rev 2640)
@@ -86,8 +86,9 @@
   * Add locale/preprocessor-collate-uli-sucks.diff to revert Ulrich's
 preprocessor that isn't enough for Debian.
   * Update patches/locale/preprocessor-collate.diff.
+  * Add alpha/submitted-PTR_MANGLE.diff (Closes: #448508).
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Mon, 29 Oct 2007 10:54:31 +0100
+ -- Pierre Habouzit [EMAIL PROTECTED]  Thu, 01 Nov 2007 14:38:51 +0100
 
 glibc (2.6.1-6) unstable; urgency=low
 

Added: 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
(rev 0)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 13:41:15 UTC (rev 2640)
@@ -0,0 +1,78 @@
+--- glibc-2.7.orig/sysdeps/unix/alpha/sysdep.h
 glibc-2.7/sysdeps/unix/alpha/sysdep.h
+@@ -397,42 +397,4 @@
+   _sc_ret = _sc_0, _sc_err = _sc_19;  \
+ }
+ 
+-/* Pointer mangling support.  Note that tls access is slow enough that
+-   we don't deoptimize things by placing the pointer check value there.  */
+-
+-#include stdint.h
+-
+-#if defined NOT_IN_libc  defined IS_IN_rtld
+-# ifdef __ASSEMBLER__
+-#  define PTR_MANGLE(dst, src, tmp)   \
+-  ldahtmp, __pointer_chk_guard_local($29) !gprelhigh; \
+-  ldq tmp, __pointer_chk_guard_local(tmp) !gprellow;  \
+-  xor src, tmp, dst
+-#  define PTR_MANGLE2(dst, src, tmp)  \
+-  xor src, tmp, dst
+-#  define PTR_DEMANGLE(dst, tmp)   PTR_MANGLE(dst, dst, tmp)
+-#  define PTR_DEMANGLE2(dst, tmp)  PTR_MANGLE2(dst, dst, tmp)
+-# else
+-extern uintptr_t __pointer_chk_guard_local attribute_relro attribute_hidden;
+-#  define PTR_MANGLE(var) \
+-  (var) = (__typeof (var)) ((uintptr_t) (var) ^ __pointer_chk_guard_local)
+-#  define PTR_DEMANGLE(var)  PTR_MANGLE(var)
+-# endif
+-#elif defined PIC
+-# ifdef __ASSEMBLER__
+-#  define PTR_MANGLE(dst, src, tmp)   \
+-  ldq tmp, __pointer_chk_guard;   \
+-  xor src, tmp, dst
+-#  define PTR_MANGLE2(dst, src, tmp)  \
+-  xor src, tmp, dst
+-#  define PTR_DEMANGLE(dst, tmp)   PTR_MANGLE(dst, dst, tmp)
+-#  define PTR_DEMANGLE2(dst, tmp)  PTR_MANGLE2(dst, dst, tmp)
+-# else
+-extern uintptr_t __pointer_chk_guard attribute_relro;
+-#  define PTR_MANGLE(var) \
+-  (var) = (void *) ((uintptr_t) (var) ^ __pointer_chk_guard)
+-#  define PTR_DEMANGLE(var)  PTR_MANGLE(var)
+-# endif
+-#endif
+-
+ #endif /* ASSEMBLER */
+--- glibc-2.7.orig/sysdeps/unix/sysv/linux/alpha/sysdep.h
 glibc-2.7/sysdeps/unix/sysv/linux/alpha/sysdep.h
+@@ -98,4 +98,30 @@
+   INTERNAL_SYSCALL1(name, err_out, nr, args); \
+ })
+ 
++/* Pointer mangling support.  Note that tls access is slow enough that
++   we don't deoptimize things by placing the pointer check value there.  */
++
++#include stdint.h
++
++#if defined NOT_IN_libc  defined IS_IN_rtld
++/* We cannot use the thread descriptor because in ld.so we use setjmp
++   earlier than the descriptor is initialized.  Using a global variable
++   is too complicated here since we have no PC-relative addressing mode.  */
++#else
++# ifdef __ASSEMBLER__
++#  define PTR_MANGLE(dst, src, tmp)   \
++  ldq tmp, __pointer_chk_guard;   \
++  xor src, tmp, dst
++#  define PTR_MANGLE2(dst, src, tmp)  \
++  xor src, tmp, dst
++#  define PTR_DEMANGLE(dst, tmp)   PTR_MANGLE(dst, dst, tmp)
++#  define PTR_DEMANGLE2(dst, tmp)  PTR_MANGLE2(dst, dst, tmp)
++# else
++extern uintptr_t __pointer_chk_guard attribute_relro;
++#  define PTR_MANGLE(var) \
++  (var) = (void *) ((uintptr_t) (var) ^ __pointer_chk_guard)
++#  define PTR_DEMANGLE(var)  PTR_MANGLE(var)
++# endif
++#endif
++
+ #endif /* _LINUX_ALPHA_SYSDEP_H */

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-11-01 
10:18:37 UTC (rev 2639)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-11-01 
13:41:15 UTC (rev 2640)
@@ -49,6 +49,7 @@
 
 

Processed: tagging 448508

2007-11-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 tags 448508 + pending
Bug#448508: glibc_2.7-0exp4(alpha/experimental): FTBFS: undefined reference to 
`PTR_MANGLE'
Tags were: experimental
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



r2641 - in glibc-package/branches/glibc-2.7/debian: . rules.d sysdeps

2007-11-01 Thread aurel32
Author: aurel32
Date: 2007-11-01 14:25:41 + (Thu, 01 Nov 2007)
New Revision: 2641

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/rules
   glibc-package/branches/glibc-2.7/debian/rules.d/build.mk
   glibc-package/branches/glibc-2.7/debian/sysdeps/arm.mk
   glibc-package/branches/glibc-2.7/debian/sysdeps/armel.mk
   glibc-package/branches/glibc-2.7/debian/sysdeps/hppa.mk
Log:
  * debian/rules, debian/rules.d/build.mk: allow per architecture
TIMEOUTFACTOR.
  * sysdeps/arm.mk, sysdeps/armel.mk, sysdeps/hppa.mk: define 
TIMEOUTFACTOR.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 13:41:15 UTC 
(rev 2640)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 14:25:41 UTC 
(rev 2641)
@@ -70,6 +70,10 @@
   * Add arm/local-args6.diff: provide DOCARGS_6 and UNDOCARGS_5 for
 arm old-abi.
   * Add arm/local-lowlevellock.diff: new patch to fix build on arm.
+  * debian/rules, debian/rules.d/build.mk: allow per architecture
+TIMEOUTFACTOR.
+  * sysdeps/arm.mk, sysdeps/armel.mk, sysdeps/hppa.mk: define 
+TIMEOUTFACTOR.
 
   [ Petr Salinger]
   * any/local-linuxthreads-unwind.diff: provide unwind-resume routine for
@@ -88,7 +92,7 @@
   * Update patches/locale/preprocessor-collate.diff.
   * Add alpha/submitted-PTR_MANGLE.diff (Closes: #448508).
 
- -- Pierre Habouzit [EMAIL PROTECTED]  Thu, 01 Nov 2007 14:38:51 +0100
+ -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 01 Nov 2007 15:24:02 +0100
 
 glibc (2.6.1-6) unstable; urgency=low
 

Modified: glibc-package/branches/glibc-2.7/debian/rules
===
--- glibc-package/branches/glibc-2.7/debian/rules   2007-11-01 13:41:15 UTC 
(rev 2640)
+++ glibc-package/branches/glibc-2.7/debian/rules   2007-11-01 14:25:41 UTC 
(rev 2641)
@@ -95,6 +95,8 @@
 
 RUN_TESTSUITE = yes
 
+TIMEOUT_FACTOR = 1
+
 # Set CC for cross-compiling
 ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH))
 CC = $(DEB_HOST_GNU_TYPE)-gcc

Modified: glibc-package/branches/glibc-2.7/debian/rules.d/build.mk
===
--- glibc-package/branches/glibc-2.7/debian/rules.d/build.mk2007-11-01 
13:41:15 UTC (rev 2640)
+++ glibc-package/branches/glibc-2.7/debian/rules.d/build.mk2007-11-01 
14:25:41 UTC (rev 2641)
@@ -111,7 +111,7 @@
  echo -n Testsuite started:  | tee -a $(log_test); \
  date --rfc-2822 | tee -a $(log_test); \
  echo -- | tee -a $(log_test); \
- $(MAKE) -C $(DEB_BUILDDIR) -j $(NJOBS) -k check 21 | tee -a 
$(log_test); \
+ TIMEOUTFACTOR=$(call xx,TIMEOUTFACTOR) $(MAKE) -C $(DEB_BUILDDIR) 
-j $(NJOBS) -k check 21 | tee -a $(log_test); \
  echo -- | tee -a $(log_test); \
  echo -n Testsuite ended:  | tee -a $(log_test); \
  date --rfc-2822 | tee -a $(log_test); \

Modified: glibc-package/branches/glibc-2.7/debian/sysdeps/arm.mk
===
--- glibc-package/branches/glibc-2.7/debian/sysdeps/arm.mk  2007-11-01 
13:41:15 UTC (rev 2640)
+++ glibc-package/branches/glibc-2.7/debian/sysdeps/arm.mk  2007-11-01 
14:25:41 UTC (rev 2641)
@@ -3,3 +3,5 @@
 # We need __ARM_NR_set_tls syscall
 libc_MIN_KERNEL_SUPPORTED = 2.6.12
 
+# Some tests assume a fast machine
+TIMEOUTFACTOR=4

Modified: glibc-package/branches/glibc-2.7/debian/sysdeps/armel.mk
===
--- glibc-package/branches/glibc-2.7/debian/sysdeps/armel.mk2007-11-01 
13:41:15 UTC (rev 2640)
+++ glibc-package/branches/glibc-2.7/debian/sysdeps/armel.mk2007-11-01 
14:25:41 UTC (rev 2641)
@@ -3,3 +3,5 @@
 # First kernel version that supports EABI
 libc_MIN_KERNEL_SUPPORTED = 2.6.14
 
+# Some tests assume a fast machine
+TIMEOUTFACTOR=3

Modified: glibc-package/branches/glibc-2.7/debian/sysdeps/hppa.mk
===
--- glibc-package/branches/glibc-2.7/debian/sysdeps/hppa.mk 2007-11-01 
13:41:15 UTC (rev 2640)
+++ glibc-package/branches/glibc-2.7/debian/sysdeps/hppa.mk 2007-11-01 
14:25:41 UTC (rev 2641)
@@ -8,6 +8,9 @@
 # We need LWS CAS support
 libc_MIN_KERNEL_SUPPORTED = 2.6.9
 
+# Some tests assume a fast machine
+TIMEOUTFACTOR=2
+
 # hppa64 needs symlink /usr/hppa64-linux/include to /usr/include
 # (See: Bug#239020)  In future we may drop this file with supporting hppa64.
 


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



r2642 - glibc-package/branches/glibc-2.7/debian

2007-11-01 Thread aurel32
Author: aurel32
Date: 2007-11-01 14:27:12 + (Thu, 01 Nov 2007)
New Revision: 2642

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/locales-depver
Log:
  * locales-depver: tighten locales dependencies.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 14:25:41 UTC 
(rev 2641)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 14:27:12 UTC 
(rev 2642)
@@ -74,6 +74,7 @@
 TIMEOUTFACTOR.
   * sysdeps/arm.mk, sysdeps/armel.mk, sysdeps/hppa.mk: define 
 TIMEOUTFACTOR.
+  * locales-depver: tighten locales dependencies.
 
   [ Petr Salinger]
   * any/local-linuxthreads-unwind.diff: provide unwind-resume routine for

Modified: glibc-package/branches/glibc-2.7/debian/locales-depver
===
--- glibc-package/branches/glibc-2.7/debian/locales-depver  2007-11-01 
14:25:41 UTC (rev 2641)
+++ glibc-package/branches/glibc-2.7/debian/locales-depver  2007-11-01 
14:27:12 UTC (rev 2642)
@@ -13,8 +13,8 @@
 #  LOCALES_DEP_VER point to the highest value of LOCALES_COMPAT_VER when
 #  packages are available for all architectures in unstable.
 
-LOCALES_DEP_VER = 2.6-1
-LOCALES_COMPAT_VER = 2.6-1
+LOCALES_DEP_VER = 2.7-1
+LOCALES_COMPAT_VER = 2.7-1
 
 #  Previous versions:
-#2.5-1: glibc 2.6
+#2.6-1: glibc 2.6.1


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



r2643 - in glibc-package/branches/glibc-2.7/debian: . rules.d sysdeps

2007-11-01 Thread aurel32
Author: aurel32
Date: 2007-11-01 16:11:37 + (Thu, 01 Nov 2007)
New Revision: 2643

Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/rules
   glibc-package/branches/glibc-2.7/debian/rules.d/build.mk
   glibc-package/branches/glibc-2.7/debian/sysdeps/s390.mk
Log:
Fix TIMEOUTFACTOR, add a factor for s390


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 14:27:12 UTC 
(rev 2642)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 16:11:37 UTC 
(rev 2643)
@@ -72,7 +72,8 @@
   * Add arm/local-lowlevellock.diff: new patch to fix build on arm.
   * debian/rules, debian/rules.d/build.mk: allow per architecture
 TIMEOUTFACTOR.
-  * sysdeps/arm.mk, sysdeps/armel.mk, sysdeps/hppa.mk: define 
+  * sysdeps/arm.mk, sysdeps/armel.mk, sysdeps/hppa.mk, sysdeps/s390.mk:
+define.
 TIMEOUTFACTOR.
   * locales-depver: tighten locales dependencies.
 
@@ -93,7 +94,7 @@
   * Update patches/locale/preprocessor-collate.diff.
   * Add alpha/submitted-PTR_MANGLE.diff (Closes: #448508).
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 01 Nov 2007 15:24:02 +0100
+ -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 01 Nov 2007 17:11:10 +0100
 
 glibc (2.6.1-6) unstable; urgency=low
 

Modified: glibc-package/branches/glibc-2.7/debian/rules
===
--- glibc-package/branches/glibc-2.7/debian/rules   2007-11-01 14:27:12 UTC 
(rev 2642)
+++ glibc-package/branches/glibc-2.7/debian/rules   2007-11-01 16:11:37 UTC 
(rev 2643)
@@ -95,7 +95,7 @@
 
 RUN_TESTSUITE = yes
 
-TIMEOUT_FACTOR = 1
+TIMEOUTFACTOR = 1
 
 # Set CC for cross-compiling
 ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH))

Modified: glibc-package/branches/glibc-2.7/debian/rules.d/build.mk
===
--- glibc-package/branches/glibc-2.7/debian/rules.d/build.mk2007-11-01 
14:27:12 UTC (rev 2642)
+++ glibc-package/branches/glibc-2.7/debian/rules.d/build.mk2007-11-01 
16:11:37 UTC (rev 2643)
@@ -111,7 +111,7 @@
  echo -n Testsuite started:  | tee -a $(log_test); \
  date --rfc-2822 | tee -a $(log_test); \
  echo -- | tee -a $(log_test); \
- TIMEOUTFACTOR=$(call xx,TIMEOUTFACTOR) $(MAKE) -C $(DEB_BUILDDIR) 
-j $(NJOBS) -k check 21 | tee -a $(log_test); \
+ TIMEOUTFACTOR=$(TIMEOUTFACTOR) $(MAKE) -C $(DEB_BUILDDIR) -j 
$(NJOBS) -k check 21 | tee -a $(log_test); \
  echo -- | tee -a $(log_test); \
  echo -n Testsuite ended:  | tee -a $(log_test); \
  date --rfc-2822 | tee -a $(log_test); \

Modified: glibc-package/branches/glibc-2.7/debian/sysdeps/s390.mk
===
--- glibc-package/branches/glibc-2.7/debian/sysdeps/s390.mk 2007-11-01 
14:27:12 UTC (rev 2642)
+++ glibc-package/branches/glibc-2.7/debian/sysdeps/s390.mk 2007-11-01 
16:11:37 UTC (rev 2643)
@@ -1,3 +1,6 @@
+# Some tests assume a fast machine
+TIMEOUTFACTOR=2
+
 # build 64-bit (s390x) alternative library
 GLIBC_PASSES += s390x
 DEB_ARCH_REGULAR_PACKAGES += libc6-s390x libc6-dev-s390x


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



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

2007-11-01 Thread aurel32
Author: aurel32
Date: 2007-11-01 16:20:40 + (Thu, 01 Nov 2007)
New Revision: 2644

Added:
   
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
  * any/local-disable-tst-tgmath2.diff: new patch to disable tst-tgmath2,
which take too much resources during compilation.



Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 16:11:37 UTC 
(rev 2643)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 16:20:40 UTC 
(rev 2644)
@@ -76,6 +76,8 @@
 define.
 TIMEOUTFACTOR.
   * locales-depver: tighten locales dependencies.
+  * any/local-disable-tst-tgmath2.diff: new patch to disable tst-tgmath2,
+which take too much resources during compilation.
 
   [ Petr Salinger]
   * any/local-linuxthreads-unwind.diff: provide unwind-resume routine for
@@ -94,7 +96,7 @@
   * Update patches/locale/preprocessor-collate.diff.
   * Add alpha/submitted-PTR_MANGLE.diff (Closes: #448508).
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 01 Nov 2007 17:11:10 +0100
+ -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 01 Nov 2007 17:20:03 +0100
 
 glibc (2.6.1-6) unstable; urgency=low
 

Added: 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
  (rev 0)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
  2007-11-01 16:20:40 UTC (rev 2644)
@@ -0,0 +1,11 @@
+--- math/Makefile.orig
 math/Makefile
+@@ -90,7 +90,7 @@
+ # Rules for the test suite.
+ tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
+   test-misc test-fpucw tst-definitions test-tgmath test-tgmath-ret \
+-  bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int test-tgmath2
++  bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int
+ # We do the `long double' tests only if this data type is available.
+ test-longdouble-yes = test-ldouble test-ildoubl
+ distribute += $(test-longdouble-yes:=.c)

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-11-01 
16:11:37 UTC (rev 2643)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-11-01 
16:20:40 UTC (rev 2644)
@@ -148,6 +148,7 @@
 any/local-stubs_h.diff 
 any/local-stdio-lock.diff -p0
 any/local-tcsetaddr.diff -p0
+any/local-disable-tst-tgmath2.diff -p0
 any/local-tst-mktime2.diff -p0
 any/local-dynamic-resolvconf.diff -p0
 any/submitted-nis-netgrp.diff -p0


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



Processing of glibc_2.7-0exp6_amd64.changes

2007-11-01 Thread Archive Administrator
glibc_2.7-0exp6_amd64.changes uploaded successfully to localhost
along with the files:
  glibc-doc_2.7-0exp6_all.deb
  locales_2.7-0exp6_all.deb

Greetings,

Your Debian queue daemon


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



Processing of glibc_2.7-0exp6_amd64.changes

2007-11-01 Thread Archive Administrator
glibc_2.7-0exp6_amd64.changes is already present on target host:
-rw-r--r-- 1 dak debadmin 6756 Nov 1 16:45 glibc_2.7-0exp6_amd64.changes
Either you already uploaded it, or someone else came first.
Job glibc_2.7-0exp6_amd64.changes removed.

Greetings,

Your Debian queue daemon


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



glibc_2.7-0exp6_amd64.changes REJECTED

2007-11-01 Thread Debian Installer

Rejected: no source found for glibc 2.7-0exp6 (glibc-doc_2.7-0exp6_all.deb).
Rejected: no source found for glibc 2.7-0exp6 (locales_2.7-0exp6_all.deb).


===

If you don't understand why your files were rejected, or if the
override file requires editing, reply to this email.


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



Processing of glibc_2.7-0exp6_amd64.changes

2007-11-01 Thread Archive Administrator
glibc_2.7-0exp6_amd64.changes uploaded successfully to localhost
along with the files:
  glibc-doc_2.7-0exp6_all.deb
  locales_2.7-0exp6_all.deb
  glibc_2.7-0exp6.diff.gz
  glibc_2.7-0exp6.dsc

Greetings,

Your Debian queue daemon


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



glibc_2.7-0exp6_amd64.changes REJECTED

2007-11-01 Thread Debian Installer

Rejected: glibc_2.7-0exp6.diff.gz: changes file doesn't list `source' in 
Architecture field.
Rejected: glibc_2.7-0exp6.dsc: changes file doesn't list `source' in 
Architecture field.
Rejected: no source found for glibc 2.7-0exp6 (glibc-doc_2.7-0exp6_all.deb).
Rejected: no source found for glibc 2.7-0exp6 (locales_2.7-0exp6_all.deb).


===

If you don't understand why your files were rejected, or if the
override file requires editing, reply to this email.


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



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

2007-11-01 Thread aurel32
Author: aurel32
Date: 2007-11-01 17:21:30 + (Thu, 01 Nov 2007)
New Revision: 2645

Added:
   
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-test-tgmath2.diff
Removed:
   
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
Modified:
   glibc-package/branches/glibc-2.7/debian/changelog
   glibc-package/branches/glibc-2.7/debian/patches/any/submitted-longdouble.diff
   glibc-package/branches/glibc-2.7/debian/patches/series
Log:
Fix test-tgmath2 patch


Modified: glibc-package/branches/glibc-2.7/debian/changelog
===
--- glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 16:20:40 UTC 
(rev 2644)
+++ glibc-package/branches/glibc-2.7/debian/changelog   2007-11-01 17:21:30 UTC 
(rev 2645)
@@ -1,4 +1,4 @@
-glibc (2.7-0exp5) UNRELEASED; urgency=low
+glibc (2.7-0exp7) UNRELEASED; urgency=low
 
   [ Clint Adams ]
   * New upstream release with linuxthreads snapshot.
@@ -76,7 +76,7 @@
 define.
 TIMEOUTFACTOR.
   * locales-depver: tighten locales dependencies.
-  * any/local-disable-tst-tgmath2.diff: new patch to disable tst-tgmath2,
+  * any/local-disable-test-tgmath2.diff: new patch to disable test-tgmath2,
 which take too much resources during compilation.
 
   [ Petr Salinger]

Copied: 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-test-tgmath2.diff
 (from rev 2644, 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff)
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-test-tgmath2.diff
 (rev 0)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-test-tgmath2.diff
 2007-11-01 17:21:30 UTC (rev 2645)
@@ -0,0 +1,11 @@
+--- math/Makefile.orig
 math/Makefile
+@@ -90,7 +90,7 @@
+ # Rules for the test suite.
+ tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
+   test-misc test-fpucw tst-definitions test-tgmath test-tgmath-ret \
+-  bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int test-tgmath2
++  bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int
+ # We do the `long double' tests only if this data type is available and
+ # distinct from `double'.
+ test-longdouble-yes = test-ldouble test-ildoubl

Deleted: 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
  2007-11-01 16:20:40 UTC (rev 2644)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/local-disable-tst-tgmath2.diff
  2007-11-01 17:21:30 UTC (rev 2645)
@@ -1,11 +0,0 @@
 math/Makefile.orig
-+++ math/Makefile
-@@ -90,7 +90,7 @@
- # Rules for the test suite.
- tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
-   test-misc test-fpucw tst-definitions test-tgmath test-tgmath-ret \
--  bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int test-tgmath2
-+  bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int
- # We do the `long double' tests only if this data type is available.
- test-longdouble-yes = test-ldouble test-ildoubl
- distribute += $(test-longdouble-yes:=.c)

Modified: 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-longdouble.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-longdouble.diff   
2007-11-01 16:20:40 UTC (rev 2644)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/any/submitted-longdouble.diff   
2007-11-01 17:21:30 UTC (rev 2645)
@@ -3,7 +3,7 @@
 @@ -91,13 +91,17 @@
  tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
test-misc test-fpucw tst-definitions test-tgmath test-tgmath-ret \
-   bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int test-tgmath2
+   bug-nextafter bug-nexttoward bug-tgmath1 test-tgmath-int
 -# We do the `long double' tests only if this data type is available and
 -# distinct from `double'.
 +# We do the `long double' tests only if this data type is available.

Modified: glibc-package/branches/glibc-2.7/debian/patches/series
===
--- glibc-package/branches/glibc-2.7/debian/patches/series  2007-11-01 
16:20:40 UTC (rev 2644)
+++ glibc-package/branches/glibc-2.7/debian/patches/series  2007-11-01 
17:21:30 UTC (rev 2645)
@@ -148,7 +148,7 @@
 any/local-stubs_h.diff 
 any/local-stdio-lock.diff -p0
 any/local-tcsetaddr.diff -p0
-any/local-disable-tst-tgmath2.diff -p0
+any/local-disable-test-tgmath2.diff -p0
 any/local-tst-mktime2.diff -p0
 any/local-dynamic-resolvconf.diff -p0
 any/submitted-nis-netgrp.diff -p0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of 

Processing of glibc_2.7-0exp6_amd64.changes

2007-11-01 Thread Archive Administrator
glibc_2.7-0exp6_amd64.changes uploaded successfully to localhost
along with the files:
  glibc-doc_2.7-0exp6_all.deb
  locales_2.7-0exp6_all.deb
  glibc_2.7-0exp6.diff.gz
  glibc_2.7-0exp6.dsc

Greetings,

Your Debian queue daemon


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



Processing of glibc_2.7-0exp6_amd64.changes

2007-11-01 Thread Archive Administrator
glibc_2.7-0exp6_amd64.changes is already present on target host:
-rw-r--r-- 1 dak debadmin 6909 Nov 1 17:50 glibc_2.7-0exp6_amd64.changes
Either you already uploaded it, or someone else came first.
Job glibc_2.7-0exp6_amd64.changes removed.

Greetings,

Your Debian queue daemon


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



glibc_2.7-0exp6_amd64.changes ACCEPTED

2007-11-01 Thread Debian Installer

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


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

Announcing to [EMAIL PROTECTED]
Closing bugs: 448508 


Thank you for your contribution to Debian.


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



Bug#448928: [INTL:nl] Dutch po-debconf translation

2007-11-01 Thread cobaco (aka Bart Cornelis)
Package: glibc
Severity: wishlist
Tags: patch l10n

Please find attached the dutch po-debconf translation. Please add 
it to your next package revision, it should be inserted in your package 
build-tree as debian/po/nl.po, TIA.

Feel free to mail me if this file needs updating at some future date.
-- 
cobaco (aka Bart Cornelis)



nl.po
Description: application/gettext


signature.asc
Description: This is a digitally signed message part.


Processing of glibc_2.7-0exp7_amd64.changes

2007-11-01 Thread Archive Administrator
glibc_2.7-0exp7_amd64.changes uploaded successfully to localhost
along with the files:
  glibc_2.7-0exp7.dsc
  glibc_2.7-0exp7.diff.gz
  glibc-doc_2.7-0exp7_all.deb
  locales_2.7-0exp7_all.deb
  libc6_2.7-0exp7_amd64.deb
  libc6-dev_2.7-0exp7_amd64.deb
  libc6-prof_2.7-0exp7_amd64.deb
  libc6-pic_2.7-0exp7_amd64.deb
  locales-all_2.7-0exp7_amd64.deb
  libc6-i386_2.7-0exp7_amd64.deb
  libc6-dev-i386_2.7-0exp7_amd64.deb
  nscd_2.7-0exp7_amd64.deb
  libc6-dbg_2.7-0exp7_amd64.deb
  libc6-udeb_2.7-0exp7_amd64.udeb
  libnss-dns-udeb_2.7-0exp7_amd64.udeb
  libnss-files-udeb_2.7-0exp7_amd64.udeb

Greetings,

Your Debian queue daemon


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



glibc override disparity

2007-11-01 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

libc6-i386_2.7-0exp7_amd64.deb: package says priority is optional, override 
says standard.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing [EMAIL PROTECTED])


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



glibc_2.7-0exp7_amd64.changes ACCEPTED

2007-11-01 Thread Debian Installer

Accepted:
glibc-doc_2.7-0exp7_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-0exp7_all.deb
glibc_2.7-0exp7.diff.gz
  to pool/main/g/glibc/glibc_2.7-0exp7.diff.gz
glibc_2.7-0exp7.dsc
  to pool/main/g/glibc/glibc_2.7-0exp7.dsc
libc6-dbg_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6-dbg_2.7-0exp7_amd64.deb
libc6-dev-i386_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6-dev-i386_2.7-0exp7_amd64.deb
libc6-dev_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6-dev_2.7-0exp7_amd64.deb
libc6-i386_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6-i386_2.7-0exp7_amd64.deb
libc6-pic_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6-pic_2.7-0exp7_amd64.deb
libc6-prof_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6-prof_2.7-0exp7_amd64.deb
libc6-udeb_2.7-0exp7_amd64.udeb
  to pool/main/g/glibc/libc6-udeb_2.7-0exp7_amd64.udeb
libc6_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/libc6_2.7-0exp7_amd64.deb
libnss-dns-udeb_2.7-0exp7_amd64.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.7-0exp7_amd64.udeb
libnss-files-udeb_2.7-0exp7_amd64.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.7-0exp7_amd64.udeb
locales-all_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/locales-all_2.7-0exp7_amd64.deb
locales_2.7-0exp7_all.deb
  to pool/main/g/glibc/locales_2.7-0exp7_all.deb
nscd_2.7-0exp7_amd64.deb
  to pool/main/g/glibc/nscd_2.7-0exp7_amd64.deb


Override entries for your package:
glibc-doc_2.7-0exp7_all.deb - optional doc
glibc_2.7-0exp7.dsc - source libs
libc6-dbg_2.7-0exp7_amd64.deb - extra libdevel
libc6-dev-i386_2.7-0exp7_amd64.deb - optional libdevel
libc6-dev_2.7-0exp7_amd64.deb - optional libdevel
libc6-i386_2.7-0exp7_amd64.deb - standard libs
libc6-pic_2.7-0exp7_amd64.deb - optional libdevel
libc6-prof_2.7-0exp7_amd64.deb - extra libdevel
libc6-udeb_2.7-0exp7_amd64.udeb - extra debian-installer
libc6_2.7-0exp7_amd64.deb - required libs
libnss-dns-udeb_2.7-0exp7_amd64.udeb - extra debian-installer
libnss-files-udeb_2.7-0exp7_amd64.udeb - extra debian-installer
locales-all_2.7-0exp7_amd64.deb - extra libs
locales_2.7-0exp7_all.deb - standard libs
nscd_2.7-0exp7_amd64.deb - optional admin

Announcing to [EMAIL PROTECTED]
Closing bugs: 448508 


Thank you for your contribution to Debian.


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



r2646 - glibc-package/branches/glibc-2.7/debian/patches/alpha

2007-11-01 Thread madcoder
Author: madcoder
Date: 2007-11-01 20:57:54 + (Thu, 01 Nov 2007)
New Revision: 2646

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
Log:
Don't try to be smart, just fix the obvious issue first.

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


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 17:21:30 UTC (rev 2645)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 20:57:54 UTC (rev 2646)
@@ -45,7 +45,7 @@
  #endif /* ASSEMBLER */
 --- glibc-2.7.orig/sysdeps/unix/sysv/linux/alpha/sysdep.h
 +++ glibc-2.7/sysdeps/unix/sysv/linux/alpha/sysdep.h
-@@ -98,4 +98,30 @@
+@@ -98,4 +98,42 @@
INTERNAL_SYSCALL1(name, err_out, nr, args); \
  })
  
@@ -55,11 +55,23 @@
 +#include stdint.h
 +
 +#if defined NOT_IN_libc  defined IS_IN_rtld
-+/* We cannot use the thread descriptor because in ld.so we use setjmp
-+   earlier than the descriptor is initialized.  Using a global variable
-+   is too complicated here since we have no PC-relative addressing mode.  */
-+#else
 +# ifdef __ASSEMBLER__
++#  define PTR_MANGLE(dst, src, tmp)   \
++  ldahtmp, __pointer_chk_guard_local($29) !gprelhigh; \
++  ldq tmp, __pointer_chk_guard_local(tmp) !gprellow;  \
++  xor src, tmp, dst
++#  define PTR_MANGLE2(dst, src, tmp)  \
++  xor src, tmp, dst
++#  define PTR_DEMANGLE(dst, tmp)   PTR_MANGLE(dst, dst, tmp)
++#  define PTR_DEMANGLE2(dst, tmp)  PTR_MANGLE2(dst, dst, tmp)
++# else
++extern uintptr_t __pointer_chk_guard_local attribute_relro attribute_hidden;
++#  define PTR_MANGLE(var) \
++  (var) = (__typeof (var)) ((uintptr_t) (var) ^ __pointer_chk_guard_local)
++#  define PTR_DEMANGLE(var)  PTR_MANGLE(var)
++# endif
++#elif defined PIC
++# ifdef __ASSEMBLER__
 +#  define PTR_MANGLE(dst, src, tmp)   \
 +  ldq tmp, __pointer_chk_guard;   \
 +  xor src, tmp, dst


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



Processed: reopening 448508

2007-11-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.10
 reopen 448508
Bug#448508: glibc_2.7-0exp4(alpha/experimental): FTBFS: undefined reference to 
`PTR_MANGLE'
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
Bug reopened, originator not changed.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



glibc-prof

2007-11-01 Thread Pierre Habouzit
  I discussed about this with Aurélien quickly on IRC today, but that's
an issue that I've been thinking about for some time. We currently build
a flavor of the libc with profiling support. With tools like oprofile
and the libc6-dbg package, the need for is is definitely smaller than
before. gprof is less accurate for timings, but more accurate to count
real number of times a function was called. Though I believe that people
wanting to do that usually care aboute _their_ code, and not really
aboute the libc itself.

  My point is that libc6-prof isn't terribly useful nowadays, and that
it's probably accountable for 25 to 33% of the libc build time (not the
test-suite though), which is probably a nice time save to make.

  I'd like to know what you people think, and I'll probably pop that
question on -devel@ if enough of us believe this package indeed has
leass meaning and could go away.

Cheers,
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpZ1ZupLThCI.pgp
Description: PGP signature


Re: glibc-prof

2007-11-01 Thread Daniel Jacobowitz
On Thu, Nov 01, 2007 at 10:07:51PM +0100, Pierre Habouzit wrote:
   I'd like to know what you people think, and I'll probably pop that
 question on -devel@ if enough of us believe this package indeed has
 leass meaning and could go away.

I think it's a good idea to drop libc6-prof, too.

-- 
Daniel Jacobowitz
CodeSourcery


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



r2647 - glibc-package/branches/glibc-2.7/debian/patches/alpha

2007-11-01 Thread madcoder
Author: madcoder
Date: 2007-11-01 21:28:38 + (Thu, 01 Nov 2007)
New Revision: 2647

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
Log:
we don't want stdint.h after all

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


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 20:57:54 UTC (rev 2646)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 21:28:38 UTC (rev 2647)
@@ -45,15 +45,13 @@
  #endif /* ASSEMBLER */
 --- glibc-2.7.orig/sysdeps/unix/sysv/linux/alpha/sysdep.h
 +++ glibc-2.7/sysdeps/unix/sysv/linux/alpha/sysdep.h
-@@ -98,4 +98,42 @@
+@@ -98,4 +98,40 @@
INTERNAL_SYSCALL1(name, err_out, nr, args); \
  })
  
 +/* Pointer mangling support.  Note that tls access is slow enough that
 +   we don't deoptimize things by placing the pointer check value there.  */
 +
-+#include stdint.h
-+
 +#if defined NOT_IN_libc  defined IS_IN_rtld
 +# ifdef __ASSEMBLER__
 +#  define PTR_MANGLE(dst, src, tmp)   \


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



r2648 - glibc-package/branches/glibc-2.7/debian/patches/alpha

2007-11-01 Thread madcoder
Author: madcoder
Date: 2007-11-01 23:42:11 + (Thu, 01 Nov 2007)
New Revision: 2648

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
Log:
Disable pointer mangling in the static libc.

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


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 21:28:38 UTC (rev 2647)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 23:42:11 UTC (rev 2648)
@@ -45,7 +45,7 @@
  #endif /* ASSEMBLER */
 --- glibc-2.7.orig/sysdeps/unix/sysv/linux/alpha/sysdep.h
 +++ glibc-2.7/sysdeps/unix/sysv/linux/alpha/sysdep.h
-@@ -98,4 +98,40 @@
+@@ -98,4 +98,44 @@
INTERNAL_SYSCALL1(name, err_out, nr, args); \
  })
  
@@ -83,6 +83,10 @@
 +  (var) = (void *) ((uintptr_t) (var) ^ __pointer_chk_guard)
 +#  define PTR_DEMANGLE(var)  PTR_MANGLE(var)
 +# endif
++#else
++/* Pointer mangling is not yet supported for static libc on alpha.  */
++# define PTR_MANGLE(var)   (void) (var)
++# define PTR_DEMANGLE(var) (void) (var)
 +#endif
 +
  #endif /* _LINUX_ALPHA_SYSDEP_H */


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



r2649 - glibc-package/branches/glibc-2.7/debian/patches/alpha

2007-11-01 Thread madcoder
Author: madcoder
Date: 2007-11-02 00:16:34 + (Fri, 02 Nov 2007)
New Revision: 2649

Modified:
   
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
Log:
We shall not define those in the assembly case.

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


Modified: 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff
===
--- 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-01 23:42:11 UTC (rev 2648)
+++ 
glibc-package/branches/glibc-2.7/debian/patches/alpha/submitted-PTR_MANGLE.diff 
2007-11-02 00:16:34 UTC (rev 2649)
@@ -45,7 +45,7 @@
  #endif /* ASSEMBLER */
 --- glibc-2.7.orig/sysdeps/unix/sysv/linux/alpha/sysdep.h
 +++ glibc-2.7/sysdeps/unix/sysv/linux/alpha/sysdep.h
-@@ -98,4 +98,44 @@
+@@ -98,4 +98,46 @@
INTERNAL_SYSCALL1(name, err_out, nr, args); \
  })
  
@@ -85,8 +85,10 @@
 +# endif
 +#else
 +/* Pointer mangling is not yet supported for static libc on alpha.  */
-+# define PTR_MANGLE(var)   (void) (var)
-+# define PTR_DEMANGLE(var) (void) (var)
++# ifndef __ASSEMBLER__
++#  define PTR_MANGLE(var)   (void) (var)
++#  define PTR_DEMANGLE(var) (void) (var)
++# endif
 +#endif
 +
  #endif /* _LINUX_ALPHA_SYSDEP_H */


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