diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-10-27 12:38:43 +0200 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2011-10-27 12:41:26 +0200 |
commit | eb7d589d072d63b72cd48052ed6c5b010cca9769 (patch) | |
tree | 1e6f212c3b8eccc9a64e8a9a116fe02042718107 /libpthread/linuxthreads/manager.c | |
parent | 24a3d3860538b16684591bf86621332c18494806 (diff) |
pthreads: fix build when DNS resolver is not enabled.
Resolver state is only available if DNS resolver is enabled.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'libpthread/linuxthreads/manager.c')
-rw-r--r-- | libpthread/linuxthreads/manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/manager.c b/libpthread/linuxthreads/manager.c index 1dd626e23..b1482f162 100644 --- a/libpthread/linuxthreads/manager.c +++ b/libpthread/linuxthreads/manager.c @@ -293,7 +293,7 @@ pthread_start_thread(void *arg) /* Initialize thread-locale current locale to point to the global one. With __thread support, the variable's initializer takes care of this. */ __uselocale (LC_GLOBAL_LOCALE); -#else +#elif defined __UCLIBC_HAS_RESOLVER_SUPPORT__ /* Initialize __resp. */ __resp = &self->p_res; #endif |