NOINET6 -> NO_INET6

This commit is contained in:
Ruslan Ermilov 2004-12-21 10:49:29 +00:00
parent 39a855c2a1
commit 731db6a428
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139115
25 changed files with 26 additions and 25 deletions

View file

@ -51,7 +51,7 @@
Note that we intentionally disable IPv6 support on the configure
command line; src/lib/bind/config.mk will re-enable it at compile
time if NOINET6 is not defined.
time if NO_INET6 is not defined.
8) Copy the resulting config.h to src/lib/bind, add an RCS id tag and
commit it. Do not commit any other file that was modified or

View file

@ -29,7 +29,7 @@ INTERNALLIB=
#.endif
# Enable IPv6 support if available
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+= -DWANT_IPV6
.endif

View file

@ -32,7 +32,7 @@ SHLIBDIR?= /lib
SHLIB_MAJOR= 1
CFLAGS+=-I. -I${.CURDIR}
CFLAGS+=-DIPSEC_DEBUG -DIPSEC
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif

View file

@ -7,7 +7,7 @@ CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
CFLAGS+=-DNOT_SENDMAIL -Dsm_snprintf=snprintf
CFLAGS+=-D_THREAD_SAFE
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DNETINET6
.endif

View file

@ -15,7 +15,7 @@ LFLAGS+=-Ppcapyy
CFLAGS+=-DHAVE_CONFIG_H -Dyylval=pcapyylval -I${.CURDIR} -I.
CFLAGS+=-D_U_="__attribute__((unused))"
CFLAGS+=-DHAVE_SNPRINTF -DHAVE_VSNPRINTF
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif

View file

@ -67,7 +67,7 @@
/* #undef NO_PROTOCHAIN */
/* IPv6 */
/* XXX Handled by Makefile, to handle NOINET6 */
/* XXX Handled by Makefile, to handle NO_INET6 */
/* #define INET6 1 */
/* Enable optimizer debugging */

View file

@ -6,7 +6,7 @@ SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
CFLAGS+=-DNEWDB -DNIS -DMAP_REGEX -DNOT_SENDMAIL
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DNETINET6
.endif

View file

@ -20,7 +20,7 @@ CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \
.if defined(NO_NIS)
CFLAGS+= -DUSE_GETDOMAIN
.endif
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif

View file

@ -7,7 +7,7 @@ CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \
-DFACILITY=LOG_DAEMON
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif

View file

@ -18,7 +18,7 @@
# Default build options. Basically tell the Makefiles which understand
# that to use the most compact possible version of the code.
#
buildopts -DNOPAM -DRELEASE_CRUNCH -DNONETGRAPH -DNOIPSEC -DNOINET6
buildopts -DNOPAM -DRELEASE_CRUNCH -DNONETGRAPH -DNOIPSEC -DNO_INET6
# directories where to look for sources of various binaries.
# @__CWD__@ is a magic keyword in the picobsd's (Makefile.conf)

View file

@ -119,7 +119,7 @@ CRUNCH_PROGS_sbin+= atm atmconfig fore_dnld ilmid
CRUNCH_LIBS+= -latm
.endif
.if !defined(NOINET6)
.if !defined(NO_INET6)
CRUNCH_PROGS_sbin+= ping6
.endif

View file

@ -115,7 +115,7 @@ _pfctl= pfctl
_pflogd= pflogd
.endif
.if !defined(NOINET6)
.if !defined(NO_INET6)
_ip6fw= ip6fw
_ping6= ping6
.endif

View file

@ -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

View file

@ -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.

View file

@ -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 \

View file

@ -5,14 +5,14 @@
KMOD= if_gif
SRCS= if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mac.h \
opt_mrouting.h
.if !defined(NOINET6)
.if !defined(NO_INET6)
SRCS+= in6_gif.c
.endif
opt_inet.h:
echo "#define INET 1" > ${.TARGET}
.if !defined(NOINET6)
.if !defined(NO_INET6)
opt_inet6.h:
echo "#define INET6 1" > ${.TARGET}
.endif

View file

@ -6,7 +6,7 @@ KMOD= ipl
SRCS= mlfk_ipl.c ip_nat.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \
ip_log.c ip_fil.c fil.c
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+= -DUSE_INET6
.endif
CFLAGS+= -I${.CURDIR}/../../contrib/ipfilter

View file

@ -20,7 +20,7 @@ opt_inet.h:
echo "#define INET 1" > opt_inet.h
opt_inet6.h:
.if defined(NOINET6)
.if defined(NO_INET6)
echo > opt_inet6.h
.else
echo "#define INET6 1" > opt_inet6.h

View file

@ -20,7 +20,7 @@ NO_GDB=
NO_HESIOD_LIBC=
NOHTML=
NO_I4B=
NOINET6=
NO_INET6=
NO_INFO=
NO_IPFILTER=
NO_KERBEROS=

View file

@ -215,7 +215,7 @@ _bluetooth= bluetooth
_keyserv= keyserv
.endif
.if !defined(NOINET6)
.if !defined(NO_INET6)
_mld6query= mld6query
_rip6query= rip6query
_route6d= route6d

View file

@ -48,7 +48,7 @@ CFLAGS+=-DPPP_CONFDIR=\"${PPP_CONFDIR}\"
CFLAGS+=-DNOKLDLOAD
.endif
.if defined(NOINET6)
.if defined(NO_INET6)
CFLAGS+=-DNOINET6
.endif

View file

@ -36,7 +36,7 @@ CSTD?= c89
CFLAGS+= -I${SMDIR} -I${SENDMAIL_DIR}/include -I.
CFLAGS+= ${DBMDEF} ${NIS} -DTCPWRAPPERS ${MAPS}
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+= -DNETINET6
.endif

View file

@ -9,7 +9,7 @@ SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c
CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DPROCESS_OPTIONS \
-DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif

View file

@ -8,7 +8,7 @@ SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c
CFLAGS+=-DREAL_DAEMON_DIR=\"/usr/libexec\" \
-DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10
.if !defined(NOINET6)
.if !defined(NO_INET6)
CFLAGS+=-DINET6
.endif

View file

@ -31,7 +31,7 @@ CFLAGS+= -I${.CURDIR} -I${TCPDUMP_DISTDIR}
CFLAGS+= -DHAVE_CONFIG_H
CFLAGS+= -D_U_="__attribute__((unused))"
.if !defined(NOINET6)
.if !defined(NO_INET6)
SRCS+= print-ip6.c print-ip6opts.c print-ripng.c print-icmp6.c \
print-frag6.c print-rt6.c print-ospf6.c print-dhcp6.c print-mobility.c
CFLAGS+= -DINET6