wok view glibc/stuff/glibc-2.14.1-gcc_fix-1.patch @ rev 21820

syslinux/kbd: check kbd malloc pointer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 11:41:26 2019 +0200 (2019-08-25)
parents
children
line source
1 Submitted By: Matt Burgess <matthew_at_linuxfromscratch_dot_org>
2 Date: 2010-04-18
3 Initial Package Version: 2.11.1
4 Upstream Status: Not Submitted
5 Origin: http://www.eglibc.org/archives/patches/msg00073.html
6 Description: Fixes the following build problem with GCC-4.5.0:
8 /mnt/lfs/sources/libc-build/math/s_frexp.os.dt -MT /mnt/lfs/sources/libc-build/math/s_frexp.os
9 ./sysdeps/i386/fpu/s_frexp.S: Assembler messages:
10 ./sysdeps/i386/fpu/s_frexp.S:66: Error: invalid identifier for ".ifdef"
11 ./sysdeps/i386/fpu/s_frexp.S:66: Error: junk at end of line, first unrecognized character is `1'
12 ./sysdeps/i386/fpu/s_frexp.S:66: Error: junk at end of line, first unrecognized character is `1'
13 ./sysdeps/i386/fpu/s_frexp.S:66: Error: junk at end of line, first unrecognized character is `1'
14 ./sysdeps/i386/fpu/s_frexp.S:66: Error: junk at end of line, first unrecognized character is `.'
15 ./sysdeps/i386/fpu/s_frexp.S:66: Error: junk at end of line, first unrecognized character is `1'
16 ./sysdeps/i386/fpu/s_frexp.S:66: Error: expected comma after name `' in .size directive
17 ./sysdeps/i386/fpu/s_frexp.S:66: Error: ".endif" without ".if"
18 ./sysdeps/i386/fpu/s_frexp.S:66: Error: junk `.get_pc_thunk.dx' after expression
19 make[2]: *** [/mnt/lfs/sources/libc-build/math/s_frexp.os] Error 1
21 diff -Naur glibc-2.11.1.orig/nptl/sysdeps/pthread/pt-initfini.c glibc-2.11.1/nptl/sysdeps/pthread/pt-initfini.c
22 --- glibc-2.11.1.orig/nptl/sysdeps/pthread/pt-initfini.c 2009-12-08 20:10:20.000000000 +0000
23 +++ glibc-2.11.1/nptl/sysdeps/pthread/pt-initfini.c 2010-04-17 11:34:06.882681001 +0000
24 @@ -45,6 +45,11 @@
25 /* Embed an #include to pull in the alignment and .end directives. */
26 asm ("\n#include \"defs.h\"");
28 +asm ("\n#if defined __i686 && defined __ASSEMBLER__");
29 +asm ("\n#undef __i686");
30 +asm ("\n#define __i686 __i686");
31 +asm ("\n#endif");
32 +
33 /* The initial common code ends here. */
34 asm ("\n/*@HEADER_ENDS*/");
36 diff -Naur glibc-2.11.1.orig/sysdeps/unix/sysv/linux/i386/sysdep.h glibc-2.11.1/sysdeps/unix/sysv/linux/i386/sysdep.h
37 --- glibc-2.11.1.orig/sysdeps/unix/sysv/linux/i386/sysdep.h 2009-12-08 20:10:20.000000000 +0000
38 +++ glibc-2.11.1/sysdeps/unix/sysv/linux/i386/sysdep.h 2010-04-17 11:34:06.882681001 +0000
39 @@ -29,6 +29,10 @@
40 #include <dl-sysdep.h>
41 #include <tls.h>
43 +#if defined __i686 && defined __ASSEMBLER__
44 +#undef __i686
45 +#define __i686 __i686
46 +#endif
48 /* For Linux we can use the system call table in the header file
49 /usr/include/asm/unistd.h