diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/glib-1.2/glib-1.2-1.2.10/posix-conf-changes | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/glib-1.2/glib-1.2-1.2.10/posix-conf-changes')
-rw-r--r-- | recipes/glib-1.2/glib-1.2-1.2.10/posix-conf-changes | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/recipes/glib-1.2/glib-1.2-1.2.10/posix-conf-changes b/recipes/glib-1.2/glib-1.2-1.2.10/posix-conf-changes new file mode 100644 index 0000000000..c4dab42542 --- /dev/null +++ b/recipes/glib-1.2/glib-1.2-1.2.10/posix-conf-changes @@ -0,0 +1,44 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- glib-1.2.10/gthread/gthread-posix.c~posix-conf-changes ++++ glib-1.2.10/gthread/gthread-posix.c +@@ -76,7 +76,7 @@ + int result; + + result = pthread_mutex_trylock ((pthread_mutex_t *) mutex); +-#ifdef HAVE_PTHREAD_MUTEX_TRYLOCK_POSIX ++#ifdef G_THREADS_IMPL_POSIX + if (result == EBUSY) + return FALSE; + posix_check_for_error (result); +@@ -127,7 +127,7 @@ + result = pthread_cond_timedwait ((pthread_cond_t *) cond, + (pthread_mutex_t *) entered_mutex, + &end_time); +-#ifdef HAVE_PTHREAD_COND_TIMEDWAIT_POSIX ++#ifdef G_THREADS_IMPL_POSIX + timed_out = (result == ETIMEDOUT); + #else + timed_out = (result == -1 && errno == EAGAIN); +@@ -170,15 +170,15 @@ + { + if (!private_key) + return NULL; +-#ifdef HAVE_PTHREAD_GETSPECIFIC_POSIX ++#ifdef G_THREADS_IMPL_POSIX + return pthread_getspecific (*(pthread_key_t *) private_key); +-#else /* HAVE_PTHREAD_GETSPECIFIC_POSIX */ ++#else /* G_THREADS_IMPL_DCE */ + { + void* data; + pthread_getspecific (*(pthread_key_t *) private_key, &data); + return data; + } +-#endif /* HAVE_PTHREAD_GETSPECIFIC_POSIX */ ++#endif /* G_THREADS_IMPL_POSIX*/ + } + + static GThreadFunctions g_thread_functions_for_glib_use_default = |