diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/examples/etc/make.conf | 2 | ||||
-rw-r--r-- | share/man/man5/make.conf.5 | 2 | ||||
-rw-r--r-- | share/mk/bsd.compat.mk | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 298e45a..f0f5a39 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -118,7 +118,7 @@ #NO_GAMES= # do not build games (games/ subdir) #NO_GDB= # do not build GDB #NO_I4B= # do not build isdn4bsd package -#NOINET6= # do not build IPv6 related programs and libraries +#NO_INET6= # do not build IPv6 related programs and libraries #NO_INFO= # do not make or install info files #NO_IPFILTER= # do not build IP Filter package #NOIPSEC= # do not build traceroute(8) with IPSEC support diff --git a/share/man/man5/make.conf.5 b/share/man/man5/make.conf.5 index f890524..302fe2b 100644 --- a/share/man/man5/make.conf.5 +++ b/share/man/man5/make.conf.5 @@ -454,7 +454,7 @@ Set to not build Set to not build programs used for program development, compilers, debuggers etc. -.It Va NOINET6 +.It Va NO_INET6 .Pq Vt bool Set to not build programs and libraries related to IPv6 networking. diff --git a/share/mk/bsd.compat.mk b/share/mk/bsd.compat.mk index fc1726f..92365b7 100644 --- a/share/mk/bsd.compat.mk +++ b/share/mk/bsd.compat.mk @@ -8,6 +8,7 @@ NOEXTRADEPEND:NO_EXTRADEPEND \ NOFSCHG:NO_FSCHG \ NOGAMES:NO_GAMES \ + NOINET6:NO_INET6 \ NOINFO:NO_INFO \ NOINFOCOMPRESS:NO_INFOCOMPRESS \ NOINSTALLLIB:NO_INSTALLLIB \ |