Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/lib/libc/net Pull up following revision(s) (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/100346c828b5
branches:  netbsd-8
changeset: 850783:100346c828b5
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Jul 04 12:54:30 2017 +0000

description:
Pull up following revision(s) (requested by manu in ticket #78):
        lib/libc/net/Makefile.inc: revision 1.87
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.

diffstat:

 lib/libc/net/Makefile.inc |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 29cbb6035f2e -r 100346c828b5 lib/libc/net/Makefile.inc
--- a/lib/libc/net/Makefile.inc Tue Jul 04 12:47:58 2017 +0000
+++ b/lib/libc/net/Makefile.inc Tue Jul 04 12:54:30 2017 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.inc,v 1.86 2015/04/15 19:13:46 mrg Exp $
+#      $NetBSD: Makefile.inc,v 1.86.8.1 2017/07/04 12:54:30 martin Exp $
 #      @(#)Makefile.inc        8.2 (Berkeley) 9/5/93
 
 # net sources
@@ -21,8 +21,9 @@
 
 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



Home | Main Index | Thread Index | Old Index