diff options
author | Daniel Mack <zonque@gmail.com> | 2011-07-13 00:30:48 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-08-26 09:29:52 +0200 |
commit | 466f11015f44dd6be48bc0295196a83421bceea5 (patch) | |
tree | 523f094649a86d9aeae4bf77b398c0c545a495cb /libc/inet/Makefile.in | |
parent | 6ca582ff96ae373e635a275626af1243a81d63a4 (diff) |
inet/resolv: add ns_{put,get}{16,32}
This patch introduces a new config directive
'UCLIBC_HAS_RESOLVER_SUPPORT' and adds the new symbols conditionally.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Diffstat (limited to 'libc/inet/Makefile.in')
-rw-r--r-- | libc/inet/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/inet/Makefile.in b/libc/inet/Makefile.in index d58822074..6c2c576f8 100644 --- a/libc/inet/Makefile.in +++ b/libc/inet/Makefile.in @@ -40,6 +40,8 @@ CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \ CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \ res_init.c res_query.c res_comp.c ns_name.c \ _res_state.c +CSRC-$(findstring y,$(UCLIBC_HAS_RESOLVER_SUPPORT)) += \ + ns_netint.c ## # unused ATM ## CSRC-y += encodep.c decodep.c formquery.c |