summaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorUlf Samuelsson2007-08-28 20:21:00 +0200
committerUlf Samuelsson2007-08-28 20:21:00 +0200
commitf444143da50f7eb4987727e1a55ff3497505dd31 (patch)
tree7b0a9f326d5b773ee97dca049825ddf12a29b510 /toolchain
parentRemove mpg123 patch from current build, full removal pending (diff)
downloadbuildroot-f444143da50f7eb4987727e1a55ff3497505dd31.tar.gz
buildroot-f444143da50f7eb4987727e1a55ff3497505dd31.tar.xz
buildroot-f444143da50f7eb4987727e1a55ff3497505dd31.zip
Looking at the the gcc-4.2.1 patches for uClibc, I found that the
200-uclibc-locale and 205-uclibc-locale-update patches uses a not existing macro __UCLIBC_HAS_XCLOCALE__ while they should refer to __UCLIBC_HAS_XLOCALE__ Find attached the patches to fix the above mentioned patches Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/gcc/4.2.1/200-uclibc-locale.patch4
-rw-r--r--toolchain/gcc/4.2.1/205-uclibc-locale-update.patch8
2 files changed, 6 insertions, 6 deletions
diff --git a/toolchain/gcc/4.2.1/200-uclibc-locale.patch b/toolchain/gcc/4.2.1/200-uclibc-locale.patch
index ea21388b7..13e3d4659 100644
--- a/toolchain/gcc/4.2.1/200-uclibc-locale.patch
+++ b/toolchain/gcc/4.2.1/200-uclibc-locale.patch
@@ -381,7 +381,7 @@
+ __convert_from_v(char* __out,
+ const int __size __attribute__ ((__unused__)),
+ const char* __fmt,
-+#ifdef __UCLIBC_HAS_XCLOCALE__
++#ifdef __UCLIBC_HAS_XLOCALE__
+ _Tv __v, const __c_locale& __cloc, int __prec)
+ {
+ __c_locale __old = __gnu_cxx::__uselocale(__cloc);
@@ -398,7 +398,7 @@
+
+ const int __ret = std::snprintf(__out, __size, __fmt, __prec, __v);
+
-+#ifdef __UCLIBC_HAS_XCLOCALE__
++#ifdef __UCLIBC_HAS_XLOCALE__
+ __gnu_cxx::__uselocale(__old);
+#elif defined __UCLIBC_HAS_LOCALE__
+ std::setlocale(LC_ALL, __sav);
diff --git a/toolchain/gcc/4.2.1/205-uclibc-locale-update.patch b/toolchain/gcc/4.2.1/205-uclibc-locale-update.patch
index 86b284455..c9356044a 100644
--- a/toolchain/gcc/4.2.1/205-uclibc-locale-update.patch
+++ b/toolchain/gcc/4.2.1/205-uclibc-locale-update.patch
@@ -313,11 +313,11 @@
- __convert_from_v(char* __out,
- const int __size __attribute__ ((__unused__)),
- const char* __fmt,
--#ifdef __UCLIBC_HAS_XCLOCALE__
+-#ifdef __UCLIBC_HAS_XLOCALE__
- _Tv __v, const __c_locale& __cloc, int __prec)
+ inline int
+ __convert_from_v(const __c_locale&
-+#ifndef __UCLIBC_HAS_XCLOCALE__
++#ifndef __UCLIBC_HAS_XLOCALE__
+ __cloc __attribute__ ((__unused__))
+#endif
+ ,
@@ -326,7 +326,7 @@
+ const char* __fmt, ...)
{
+ va_list __args;
-+#ifdef __UCLIBC_HAS_XCLOCALE__
++#ifdef __UCLIBC_HAS_XLOCALE__
__c_locale __old = __gnu_cxx::__uselocale(__cloc);
#else
- _Tv __v, const __c_locale&, int __prec)
@@ -343,5 +343,5 @@
+ const int __ret = std::vsnprintf(__out, __size, __fmt, __args);
+ va_end(__args);
- #ifdef __UCLIBC_HAS_XCLOCALE__
+ #ifdef __UCLIBC_HAS_XLOCALE__
__gnu_cxx::__uselocale(__old);