patches/glibc/ports-2.6.1/100-ARM-NPTL.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
parent 365 ba634892cc18
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
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