diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-19 11:28:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-19 11:28:17 +0000 |
commit | 54d956c541aa6ea5a8e39d3db8bb3d4f3c9f4bb2 (patch) | |
tree | aadc83ae6ad21f6955b25ca5ab679e5c4d32304c /libc/inet/Makefile | |
parent | 8c4fbefcd9afcd0f3a8776eb8309ee2ed91ba970 (diff) |
Bart Visscher <magick@Linux-Fan.com> has added some missing IPV6 support, and
added several additional reentrant networking functions such that iptables now
runs with IPV6 support.
Diffstat (limited to 'libc/inet/Makefile')
-rw-r--r-- | libc/inet/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libc/inet/Makefile b/libc/inet/Makefile index 8f053f1f8..14c533be5 100644 --- a/libc/inet/Makefile +++ b/libc/inet/Makefile @@ -41,8 +41,9 @@ MOBJ2=encodeh.o decodeh.o encoded.o decoded.o lengthd.o encodeq.o \ formquery.o dnslookup.o resolveaddress.o resolvemailbox.o \ opennameservers.o closenameservers.o resolvename.o gethostbyname.o\ res_init.o res_query.o gethostbyaddr.o \ - get_hosts_byname.o get_hosts_byaddr.o read_etc_hosts.o \ - gethostbyname2.o getnameinfo.o gethostent.o sethostent.o endhostent.o + read_etc_hosts_r.o get_hosts_byname_r.o get_hosts_byaddr_r.o \ + gethostbyname2.o getnameinfo.o gethostent.o sethostent.o endhostent.o \ + gethostbyname_r.o gethostbyname2_r.o gethostbyaddr_r.o MSRC3=socketcalls.c MOBJ3= accept.o bind.o connect.o getpeername.o getsockname.o getsockopt.o \ @@ -50,7 +51,7 @@ MOBJ3= accept.o bind.o connect.o getpeername.o getsockname.o getsockopt.o \ setsockopt.o shutdown.o socket.o socketpair.o CSRC =getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \ - inet_net.c ntop.c herror.c + inet_net.c ntop.c herror.c if_nametoindex.c gai_strerror.c getaddrinfo.c COBJS=$(patsubst %.c,%.o, $(CSRC)) |