aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-append/gettext/files/gettext.fix_testcase.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-append/gettext/files/gettext.fix_testcase.patch')
-rw-r--r--recipes-append/gettext/files/gettext.fix_testcase.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/recipes-append/gettext/files/gettext.fix_testcase.patch b/recipes-append/gettext/files/gettext.fix_testcase.patch
deleted file mode 100644
index 135f267..0000000
--- a/recipes-append/gettext/files/gettext.fix_testcase.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- gettext-0.16.1/gettext-runtime/tests/test-lock.c-orig 2011-07-22 12:51:14.734334073 -0500
-+++ gettext-0.16.1/gettext-runtime/tests/test-lock.c 2011-07-22 12:43:59.962333864 -0500
-@@ -106,7 +106,9 @@
- }
- static inline void * gl_thread_self (void)
- {
-- return (void *) pthread_self ();
-+ pthread_t x;
-+ x = pthread_self ();
-+ return (void *)&x;
- }
- #endif
- #if TEST_PTH_THREADS