patches/glibc/2.6/130-i686-assembler.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 744 4bf8448536d5
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@402
     1
2007-02-15  Khem Raj  <kraj@xxxxxxxxxx>
yann@402
     2
yann@402
     3
       * sysdeps/unix/sysv/linux/i386/sysdep.h: Re-define __i686.
yann@402
     4
       * nptl/sysdeps/pthread/pt-initfini.c: Ditto.
yann@402
     5
yann@402
     6
yann@402
     7
yann@402
     8
Index: glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h
yann@402
     9
===================================================================
yann@402
    10
--- glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h	(revision 1469)
yann@402
    11
+++ glibc-2.4/sysdeps/unix/sysv/linux/i386/sysdep.h	(working copy)
yann@402
    12
@@ -29,6 +29,10 @@
yann@402
    13
 #include <dl-sysdep.h>
yann@402
    14
 #include <tls.h>
yann@402
    15
 
yann@402
    16
+#if defined __i686 && defined __ASSEMBLER__
yann@402
    17
+#undef __i686
yann@402
    18
+#define __i686 __i686
yann@402
    19
+#endif
yann@402
    20
 
yann@402
    21
 /* For Linux we can use the system call table in the header file
yann@402
    22
 	/usr/include/asm/unistd.h
yann@402
    23
Index: glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c
yann@402
    24
===================================================================
yann@402
    25
--- glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c	(revision 1469)
yann@402
    26
+++ glibc-2.4/nptl/sysdeps/pthread/pt-initfini.c	(working copy)
yann@402
    27
@@ -45,6 +45,11 @@
yann@402
    28
 /* Embed an #include to pull in the alignment and .end directives. */
yann@402
    29
 asm ("\n#include \"defs.h\"");
yann@402
    30
 
yann@402
    31
+asm ("\n#if defined __i686 && defined __ASSEMBLER__");
yann@402
    32
+asm ("\n#undef __i686");
yann@402
    33
+asm ("\n#define __i686 __i686");
yann@402
    34
+asm ("\n#endif");
yann@402
    35
+
yann@402
    36
 /* The initial common code ends here. */
yann@402
    37
 asm ("\n/*@HEADER_ENDS*/");
yann@402
    38