diff options
Diffstat (limited to 'src/lib/libc/net/Makefile.inc')
-rw-r--r-- | src/lib/libc/net/Makefile.inc | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/lib/libc/net/Makefile.inc b/src/lib/libc/net/Makefile.inc index 95f937a320..8b708aae9a 100644 --- a/src/lib/libc/net/Makefile.inc +++ b/src/lib/libc/net/Makefile.inc | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.25 1999/11/17 05:22:41 millert Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.26 1999/12/11 08:09:11 itojun Exp $ |
2 | 2 | ||
3 | # net sources | 3 | # net sources |
4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/net ${LIBCSRCDIR}/net | 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/net ${LIBCSRCDIR}/net |
@@ -19,6 +19,9 @@ SRCS+= base64.c freeaddrinfo.c gai_strerror.c getaddrinfo.c gethostnamadr.c \ | |||
19 | res_init.c res_mkquery.c res_query.c res_random.c res_send.c send.c \ | 19 | res_init.c res_mkquery.c res_query.c res_random.c res_send.c send.c \ |
20 | sethostent.c ethers.c rcmdsh.c | 20 | sethostent.c ethers.c rcmdsh.c |
21 | 21 | ||
22 | # IPv6 | ||
23 | SRCS+= ip6opt.c rthdr.c vars6.c | ||
24 | |||
22 | # machine-dependent net sources | 25 | # machine-dependent net sources |
23 | # m-d Makefile.inc must include sources for: | 26 | # m-d Makefile.inc must include sources for: |
24 | # htonl() htons() ntohl() ntohs() | 27 | # htonl() htons() ntohl() ntohs() |
@@ -28,7 +31,8 @@ SRCS+= base64.c freeaddrinfo.c gai_strerror.c getaddrinfo.c gethostnamadr.c \ | |||
28 | MAN+= byteorder.3 ethers.3 getaddrinfo.3 gethostbyname.3 getnameinfo.3 \ | 31 | MAN+= byteorder.3 ethers.3 getaddrinfo.3 gethostbyname.3 getnameinfo.3 \ |
29 | getnetent.3 getprotoent.3 getservent.3 inet.3 if_indextoname.3 \ | 32 | getnetent.3 getprotoent.3 getservent.3 inet.3 if_indextoname.3 \ |
30 | inet_net.3 iso_addr.3 link_addr.3 ns.3 ipx.3 \ | 33 | inet_net.3 iso_addr.3 link_addr.3 ns.3 ipx.3 \ |
31 | rcmd.3 rcmdsh.3 resolver.3 net_addrcmp.3 | 34 | rcmd.3 rcmdsh.3 resolver.3 net_addrcmp.3 \ |
35 | inet6_option_space.3 inet6_rthdr_space.3 | ||
32 | 36 | ||
33 | 37 | ||
34 | MLINKS+=byteorder.3 htonl.3 byteorder.3 htons.3 byteorder.3 ntohl.3 \ | 38 | MLINKS+=byteorder.3 htonl.3 byteorder.3 htons.3 byteorder.3 ntohl.3 \ |
@@ -64,3 +68,15 @@ MLINKS+=rcmd.3 iruserok.3 rcmd.3 rresvport.3 rcmd.3 ruserok.3 | |||
64 | MLINKS+=resolver.3 dn_comp.3 resolver.3 dn_expand.3 resolver.3 res_init.3 \ | 68 | MLINKS+=resolver.3 dn_comp.3 resolver.3 dn_expand.3 resolver.3 res_init.3 \ |
65 | resolver.3 res_mkquery.3 resolver.3 res_send.3 resolver.3 res_query.3 \ | 69 | resolver.3 res_mkquery.3 resolver.3 res_send.3 resolver.3 res_query.3 \ |
66 | resolver.3 res_search.3 | 70 | resolver.3 res_search.3 |
71 | MLINKS+=inet6_option_space.3 inet6_option_init.3 \ | ||
72 | inet6_option_space.3 inet6_option_append.3 \ | ||
73 | inet6_option_space.3 inet6_option_alloc.3 \ | ||
74 | inet6_option_space.3 inet6_option_next.3 \ | ||
75 | inet6_option_space.3 inet6_option_find.3 | ||
76 | MLINKS+=inet6_rthdr_space.3 inet6_rthdr_init.3 \ | ||
77 | inet6_rthdr_space.3 inet6_rthdr_add.3 \ | ||
78 | inet6_rthdr_space.3 inet6_rthdr_lasthop.3 \ | ||
79 | inet6_rthdr_space.3 inet6_rthdr_reverse.3 \ | ||
80 | inet6_rthdr_space.3 inet6_rthdr_segments.3 \ | ||
81 | inet6_rthdr_space.3 inet6_rthdr_getaddr.3 \ | ||
82 | inet6_rthdr_space.3 inet6_rthdr_getflags.3 | ||