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/nptl/Makefile.in | |
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/nptl/Makefile.in')
-rw-r--r-- | libpthread/nptl/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl/Makefile.in b/libpthread/nptl/Makefile.in index 849bd5965..158bcae2d 100644 --- a/libpthread/nptl/Makefile.in +++ b/libpthread/nptl/Makefile.in @@ -19,7 +19,7 @@ libpthread-static-only-routines-y = pthread_atfork.c libpthread-routines- += $(notdir $(wildcard $(libpthread_DIR)/gen_*.c)) # dummy generated files libpthread-routines- += allocatestack.c # dummy included by pthread_create.c libpthread-routines- += pthread_mutex_getprioceiling.c pthread_mutex_setprioceiling.c # XXX: delete those or use them! -libpthread-routines-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += res.c +libpthread-routines-$(UCLIBC_HAS_RESOLVER_SUPPORT) += res.c libpthread-routines-$(UCLIBC_SUSV4_LEGACY) += pthread_getconcurrency.c \ pthread_setconcurrency libpthread_CSRC = $(filter-out $(libpthread-routines-) \ |