]> git.pld-linux.org Git - packages/dietlibc.git/blame - dietlibc-gcc4.patch
- up to 0.30
[packages/dietlibc.git] / dietlibc-gcc4.patch
CommitLineData
f43fcbe3
PS
1--- dietlibc-0.28/libdl/_dl_main.c.orig 2005-01-29 03:29:16.000000000 +0100
2+++ dietlibc-0.28/libdl/_dl_main.c 2005-02-11 02:43:04.147148344 +0100
f43fcbe3
PS
3@@ -662,7 +662,7 @@
4
5 #ifdef WANT_LD_SO_GDB_SUPPORT
6 /* gdb debug break point */
7-static volatile void _dl_debug_state(void) {
8+static void _dl_debug_state(void) {
9 #ifdef DEBUG
10 struct _dl_handle*tmp;
11 pf(__FUNCTION__); pf(": r_state "); ph(_r_debug.r_state); pf("\n");
12@@ -676,7 +676,7 @@
13 }
14
15 /* gdb debug init stuff */
16-static struct r_debug _r_debug;
17+struct r_debug _r_debug;
18 #endif
19
20 /* now reuse some unchanged sources */
c7e8295f
PS
21--- dietlibc-0.29/libm/gamma.c.orig 2005-03-15 08:51:23.000000000 +0000
22+++ dietlibc-0.29/libm/gamma.c 2006-02-24 21:09:59.000000000 +0000
23@@ -33,19 +33,19 @@
24 #include <stdlib.h>
25 #include <math.h>
26
27-#define B0 + 1.0l/ 6/ 1/ 2
28-#define B1 - 1.0l/ 30/ 3/ 4
29-#define B2 + 1.0l/ 42/ 5/ 6
30-#define B3 - 1.0l/ 30/ 7/ 8
31-#define B4 + 5.0l/ 66/ 9/10
32-#define B5 - 691.0l/2730/11/12
33-#define B6 + 7.0l/ 6/13/14
34-#define B7 - 3617.0l/ 510/15/16
35-#define B8 + 43867.0l/ 798/17/18
36-#define B9 - 174611.0l/ 330/19/20
37-#define B10 + 854513.0l/ 138/21/22
38-#define B11 - 236364091.0l/2730/23/24
39-#define B12 + 8553103.0l/ 6/25/26
40+#define B0 + 1.0/ 6/ 1/ 2
41+#define B1 - 1.0/ 30/ 3/ 4
42+#define B2 + 1.0/ 42/ 5/ 6
43+#define B3 - 1.0/ 30/ 7/ 8
44+#define B4 + 5.0/ 66/ 9/10
45+#define B5 - 691.0/2730/11/12
46+#define B6 + 7.0/ 6/13/14
47+#define B7 - 3617.0/ 510/15/16
48+#define B8 + 43867.0/ 798/17/18
49+#define B9 - 174611.0/ 330/19/20
50+#define B10 + 854513.0/ 138/21/22
51+#define B11 - 236364091.0/2730/23/24
52+#define B12 + 8553103.0/ 6/25/26
53
54 static const double coeff[] = { B0, B1, B2, B3, B4, B5, B6, B7, B8, B9, B10 };
55 int signgam;
This page took 0.035749 seconds and 4 git commands to generate.