patches/glibc/ports-2.6.1/100-ARM-NPTL.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 17 23:06:02 2010 +0100 (2010-01-17)
changeset 1740 c57458bb354d
parent 365 ba634892cc18
permissions -rw-r--r--
configure: do not require hg when configuring in an hg clone

When configuring in an hg clone, we need hg to compute the version string.
It can happen that users do not have Mercurial (eg. if they got a snapshot
rather that they did a full clone). In this case, we can still run, of
course, so simply fill the version string with a sufficiently explicit
value, that does not require hg. The date is a good candidate.
yann@365
     1
diff -durN glibc-2.6.1.orig/glibc-ports-2.6.1/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h glibc-2.6.1/glibc-ports-2.6.1/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h
yann@367
     2
--- glibc-2.6.1.orig/glibc-ports-2.6.1/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h	2005-11-16 20:22:59.000000000 +0100
yann@367
     3
+++ glibc-2.6.1/glibc-ports-2.6.1/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h	2007-09-06 13:53:16.000000000 +0200
yann@365
     4
@@ -126,3 +126,9 @@
yann@365
     5
 # define NO_CANCELLATION 1
yann@365
     6
 
yann@365
     7
 #endif
yann@365
     8
+
yann@365
     9
+#ifndef __ASSEMBLER__
yann@365
    10
+# define RTLD_SINGLE_THREAD_P \
yann@365
    11
+  __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
yann@365
    12
+                   header.multiple_threads) == 0, 1)
yann@365
    13
+#endif