aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-04-29 18:00:58 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-04-29 18:00:58 +0000
commit0bfb383725ce73f682698dfbc6e710dca0ac8ec3 (patch)
treebc8db4c30092412af1b33c61b516a6c1a937901b /toolchain
parent8e0cdb1db7b290c38c769194b2d854ca8316ce36 (diff)
downloadmaster-187ad058-0bfb383725ce73f682698dfbc6e710dca0ac8ec3.tar.gz
master-187ad058-0bfb383725ce73f682698dfbc6e710dca0ac8ec3.tar.bz2
master-187ad058-0bfb383725ce73f682698dfbc6e710dca0ac8ec3.zip
fix uclibc gcc4 compile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@765 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/uClibc/patches/gcc4.0-fix.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches/gcc4.0-fix.patch b/toolchain/uClibc/patches/gcc4.0-fix.patch
new file mode 100644
index 0000000000..1dd50ce03c
--- /dev/null
+++ b/toolchain/uClibc/patches/gcc4.0-fix.patch
@@ -0,0 +1,23 @@
+diff -urN uClibc-0.9.27.old/ldso/include/ldso.h uClibc-0.9.27.dev/ldso/include/ldso.h
+--- uClibc-0.9.27.old/ldso/include/ldso.h 2005-01-12 08:59:21.000000000 +0100
++++ uClibc-0.9.27.dev/ldso/include/ldso.h 2005-04-29 17:44:05.000000000 +0200
+@@ -42,8 +42,6 @@
+ extern char *_dl_preload; /* Things to be loaded before the libs */
+ extern char *_dl_ldsopath; /* Where the shared lib loader was found */
+ extern const char *_dl_progname; /* The name of the executable being run */
+-extern unsigned char *_dl_malloc_addr; /* Lets _dl_malloc use the already allocated memory page */
+-extern unsigned char *_dl_mmap_zero; /* Also used by _dl_malloc */
+ extern int _dl_secure; /* Are we dealing with setuid stuff? */
+ extern size_t _dl_pagesize; /* Store the page size for use later */
+ extern const char *_dl_progname; /* The name of the shared library loader */
+diff -urN uClibc-0.9.27.old/libc/stdlib/malloc-standard/free.c uClibc-0.9.27.dev/libc/stdlib/malloc-standard/free.c
+--- uClibc-0.9.27.old/libc/stdlib/malloc-standard/free.c 2005-01-12 08:59:21.000000000 +0100
++++ uClibc-0.9.27.dev/libc/stdlib/malloc-standard/free.c 2005-04-29 17:46:43.000000000 +0200
+@@ -16,6 +16,7 @@
+
+ #include "malloc.h"
+
++static int __malloc_trim(size_t pad, mstate av);
+
+ /* ------------------------- malloc_trim -------------------------
+ malloc_trim(size_t pad);