summaryrefslogtreecommitdiffstats
path: root/recipes-append
diff options
context:
space:
mode:
authorZhenhua Luo <b19537@freescale.com>2012-03-09 10:57:35 +0000
committerMatthew McClintock <msm@freescale.com>2012-03-13 12:41:42 -0500
commit122c5bfdad95930de96e191aafb0304fded007b2 (patch)
treeea66cb9147fed9ceacd9eacd5913b10bb64734a1 /recipes-append
parent4f2d99fbb0afd19376e404583700ee31428f7c2e (diff)
downloadmeta-fsl-ppc-122c5bfdad95930de96e191aafb0304fded007b2.tar.gz
integrate fsl toolchain patches
binutils: bin.e500mc_nop.patch bin.e5500.patch bin.e6500-2.patch eglibc: generate-supported.mk glibc.e500mc_subspecies_of_powerpc_is_not_supported.patch glibc.fixgcc4.6.patch glibc.fix_prof.patch glibc.fix_sqrt.patch glibc.readv_proto.patch glibc.undefined_static.patch gcc: gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch gcc.fix_longversionstring.patch gcc.rm_slow_tests.patch gcc.fix_mingw32.patch gcc.fix_cloogstatic2.patch gcc.fix_build-with-cxx.patch gcc.e6500-FSF46.patch gcc.ld_unaligned-460.patch gcc.local_unaligned_altivec.patch gcc.soft_float-460.patch gcc.case_values.patch gcc.builtin_isel.patch gcc.experimental_move.patch gcc.widen_types-46.patch gcc.extelim-v3.patch gcc.e5500_mfocr.patch gcc.opt-array-offset.patch gcc.load_on_store_bypass-462.patch gcc.fix_constvector.patch gcc.fix_MTWX51204-dwarf-vector-reg.patch gcc.fix_ira-loop-pressure.patch optional_libstdc.patch gcc.remove_CCUNSmode_reference.patch gcc.check_path_validity.patch gcc.fix_header_issue.patch gcc.fix_SSIZE_MAX_undefine_issue.patch gettext: gettext.fix_testcase.patch Signed-off-by: Zhenhua Luo <b19537@freescale.com>
Diffstat (limited to 'recipes-append')
-rw-r--r--recipes-append/gettext/files/gettext.fix_testcase.patch13
-rw-r--r--recipes-append/gettext/gettext_0.18.1.1.bbappend5
2 files changed, 18 insertions, 0 deletions
diff --git a/recipes-append/gettext/files/gettext.fix_testcase.patch b/recipes-append/gettext/files/gettext.fix_testcase.patch
new file mode 100644
index 0000000..135f267
--- /dev/null
+++ b/recipes-append/gettext/files/gettext.fix_testcase.patch
@@ -0,0 +1,13 @@
1--- gettext-0.16.1/gettext-runtime/tests/test-lock.c-orig 2011-07-22 12:51:14.734334073 -0500
2+++ gettext-0.16.1/gettext-runtime/tests/test-lock.c 2011-07-22 12:43:59.962333864 -0500
3@@ -106,7 +106,9 @@
4 }
5 static inline void * gl_thread_self (void)
6 {
7- return (void *) pthread_self ();
8+ pthread_t x;
9+ x = pthread_self ();
10+ return (void *)&x;
11 }
12 #endif
13 #if TEST_PTH_THREADS
diff --git a/recipes-append/gettext/gettext_0.18.1.1.bbappend b/recipes-append/gettext/gettext_0.18.1.1.bbappend
new file mode 100644
index 0000000..937be22
--- /dev/null
+++ b/recipes-append/gettext/gettext_0.18.1.1.bbappend
@@ -0,0 +1,5 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
2
3SRC_URI += "file://gettext.fix_testcase.patch"
4
5PR .= "+${DISTRO}.0"