summaryrefslogtreecommitdiff
path: root/libc/inet/Makefile.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-06 04:57:40 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-06 04:57:40 +0000
commitc47542925c44be2522adb442f268506dee9f34a7 (patch)
treebec955a1c15c5a41ca6c3a6fc3fc3c59f75e0f24 /libc/inet/Makefile.in
parentd2d573391d1cb10aa4f9ac4125741810354dd740 (diff)
as weber notes in Bug 99:
if_nameindex doesnt list all of my interfaces! this is because we are still using the old style ioctl(SIOCGIFINDEX) for gathering interface names/indexes. while this code is pretty small, the kernel does not return all interfaces via this method. so we import the new style netlink code from glibc and make it optional so those people who need the full functionality can get it.
Diffstat (limited to 'libc/inet/Makefile.in')
-rw-r--r--libc/inet/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/Makefile.in b/libc/inet/Makefile.in
index f4b6d26c5..49786ad5a 100644
--- a/libc/inet/Makefile.in
+++ b/libc/inet/Makefile.in
@@ -10,7 +10,7 @@ include $(top_srcdir)libc/inet/rpc/Makefile.in
CSRC:= getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \
inet_net.c ntop.c herror.c if_index.c gai_strerror.c getaddrinfo.c \
- in6_addr.c ether_addr.c ntohl.c opensock.c
+ in6_addr.c ether_addr.c ntohl.c opensock.c ifaddrs.c
MSRC1:= addr.c
MOBJ1:= inet_aton.o inet_addr.o inet_ntoa.o inet_makeaddr.o inet_lnaof.o \