Module Name: src Committed By: manu Date: Sun Jun 18 04:03:44 UTC 2017
Modified Files: src/lib/libc/net: Makefile.inc Log Message: Include IPv6 global variable in USE_INET6=no libc This ensures a binary built with USE_INET6=yes libc can still link at runtime with a USE_INET6=no libc. Of course IPv6 functionnality is not available, but dynamic linking is not killed by missing symbols such as in6addr_any. To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87 src/lib/libc/net/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/net/Makefile.inc diff -u src/lib/libc/net/Makefile.inc:1.86 src/lib/libc/net/Makefile.inc:1.87 --- src/lib/libc/net/Makefile.inc:1.86 Wed Apr 15 19:13:46 2015 +++ src/lib/libc/net/Makefile.inc Sun Jun 18 04:03:44 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.86 2015/04/15 19:13:46 mrg Exp $ +# $NetBSD: Makefile.inc,v 1.87 2017/06/18 04:03:44 manu Exp $ # @(#)Makefile.inc 8.2 (Berkeley) 9/5/93 # net sources @@ -21,8 +21,9 @@ SRCS+= hesiod.c SRCS+= getaddrinfo.c getnameinfo.c .if (${USE_INET6} != "no") -SRCS+= ip6opt.c rthdr.c vars6.c inet6_scopeid.c +SRCS+= ip6opt.c rthdr.c inet6_scopeid.c .endif +SRCS+= vars6.c SRCS+= if_indextoname.c if_nameindex.c if_nametoindex.c LPREFIX=_nsyy