From aa725129e840e596bbbf43b80fed6194a0dfbc72 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 23 Mar 2009 17:56:28 +0000 Subject: clean up uclibc patch/config version handling a bit git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14994 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../005-fix_internal_function_definition.patch | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 toolchain/uClibc/patches-0.9.29/005-fix_internal_function_definition.patch (limited to 'toolchain/uClibc/patches-0.9.29/005-fix_internal_function_definition.patch') diff --git a/toolchain/uClibc/patches-0.9.29/005-fix_internal_function_definition.patch b/toolchain/uClibc/patches-0.9.29/005-fix_internal_function_definition.patch new file mode 100644 index 000000000..fc66d1e7c --- /dev/null +++ b/toolchain/uClibc/patches-0.9.29/005-fix_internal_function_definition.patch @@ -0,0 +1,47 @@ +--- a/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h ++++ b/libc/sysdeps/linux/i386/bits/uClibc_arch_features.h +@@ -42,6 +42,8 @@ + /* define if target supports IEEE signed zero floats */ + #define __UCLIBC_HAVE_SIGNED_ZERO__ + ++#if defined _LIBC + #define internal_function __attribute__ ((regparm (3), stdcall)) ++#endif + + #endif /* _BITS_UCLIBC_ARCH_FEATURES_H */ +--- a/include/libc-symbols.h ++++ b/include/libc-symbols.h +@@ -22,6 +22,16 @@ + #ifndef _LIBC_SYMBOLS_H + #define _LIBC_SYMBOLS_H 1 + ++/* This is defined for the compilation of all C library code. features.h ++ tests this to avoid inclusion of stubs.h while compiling the library, ++ before stubs.h has been generated. Some library code that is shared ++ with other packages also tests this symbol to see if it is being ++ compiled as part of the C library. We must define this before including ++ config.h, because it makes some definitions conditional on whether libc ++ itself is being compiled, or just some generator program. */ ++#define _LIBC 1 ++ ++ + /* This file's macros are included implicitly in the compilation of every + file in the C library by -imacros. + +@@ -40,16 +50,6 @@ + + #include + +- +-/* This is defined for the compilation of all C library code. features.h +- tests this to avoid inclusion of stubs.h while compiling the library, +- before stubs.h has been generated. Some library code that is shared +- with other packages also tests this symbol to see if it is being +- compiled as part of the C library. We must define this before including +- config.h, because it makes some definitions conditional on whether libc +- itself is being compiled, or just some generator program. */ +-#define _LIBC 1 +- + /* Enable declarations of GNU extensions, since we are compiling them. */ + #define _GNU_SOURCE 1 + -- cgit v1.2.3