summaryrefslogtreecommitdiff
path: root/libc/inet/Makefile.in
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-19 17:21:52 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-01-21 09:14:30 +0100
commit81264e8097b705f3b2a7e29be0a1a2ea853230cb (patch)
tree0f8efc1f920a67377578f4c844872f387991d8a6 /libc/inet/Makefile.in
parent1571ed1315ff95278fed019b838f183ee37cc198 (diff)
ether_line: fix build for socket && !ip
The internal __ether_line helper needs ether_ntoa_r() Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/inet/Makefile.in')
-rw-r--r--libc/inet/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/Makefile.in b/libc/inet/Makefile.in
index 23e8732b2..81319452f 100644
--- a/libc/inet/Makefile.in
+++ b/libc/inet/Makefile.in
@@ -20,7 +20,7 @@ endif
ifneq ($(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6),)
CSRC += getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \
inet_net.c herror.c if_index.c gai_strerror.c getaddrinfo.c \
- ether_addr.c ifaddrs.c ntop.c
+ ifaddrs.c ntop.c
endif
ifeq ($(UCLIBC_HAS_IPV6),y)
CSRC += in6_addr.c
@@ -62,7 +62,7 @@ CSRC += $(socketcalls_CSRC) opensock.c
endif
ifneq ($(UCLIBC_HAS_SOCKET)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6),)
-CSRC += ethers.c
+CSRC += ethers.c ether_addr.c
endif
INET_SRC := $(patsubst %.c,$(INET_DIR)/%.c,$(CSRC))