NOATM -> NO_ATM
This commit is contained in:
+1
-1
@@ -42,7 +42,7 @@ _csu=csu/${MACHINE_ARCH}
|
|||||||
_csu=csu
|
_csu=csu
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
_libatm= libatm
|
_libatm= libatm
|
||||||
_libngatm= libngatm
|
_libngatm= libngatm
|
||||||
.endif
|
.endif
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
.PATH: ${.CURDIR}/../../../contrib/bsnmp/snmpd
|
.PATH: ${.CURDIR}/../../../contrib/bsnmp/snmpd
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
_snmp_atm= snmp_atm
|
_snmp_atm= snmp_atm
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ CRUNCH_PROGS_sbin= atacontrol badsect bsdlabel \
|
|||||||
restore rcorder route routed rtquery rtsol savecore \
|
restore rcorder route routed rtquery rtsol savecore \
|
||||||
slattach spppcontrol startslip swapon sysctl tunefs umount
|
slattach spppcontrol startslip swapon sysctl tunefs umount
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
CRUNCH_PROGS_sbin+= atm atmconfig fore_dnld ilmid
|
CRUNCH_PROGS_sbin+= atm atmconfig fore_dnld ilmid
|
||||||
CRUNCH_LIBS+= -latm
|
CRUNCH_LIBS+= -latm
|
||||||
.endif
|
.endif
|
||||||
|
|||||||
+1
-1
@@ -94,7 +94,7 @@ SUBDIR= adjkerntz \
|
|||||||
tunefs \
|
tunefs \
|
||||||
umount \
|
umount \
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
_atm= atm
|
_atm= atm
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
#
|
#
|
||||||
# To avoid building various parts of the base system:
|
# To avoid building various parts of the base system:
|
||||||
#NO_ACPI= # do not build acpiconf(8) and related programs
|
#NO_ACPI= # do not build acpiconf(8) and related programs
|
||||||
#NOATM= # do not build ATM related programs and libraries
|
#NO_ATM= # do not build ATM related programs and libraries
|
||||||
#NO_AUTHPF= # do not build and install authpf (setuid/gid)
|
#NO_AUTHPF= # do not build and install authpf (setuid/gid)
|
||||||
#NO_BLUETOOTH= # do not build Bluetooth related stuff
|
#NO_BLUETOOTH= # do not build Bluetooth related stuff
|
||||||
#NO_BOOT= # do not build boot blocks and loader
|
#NO_BOOT= # do not build boot blocks and loader
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
#NO_LIBTHR= # do not build libthr (1:1 threading library)
|
#NO_LIBTHR= # do not build libthr (1:1 threading library)
|
||||||
#NO_LPR= # do not build lpr and related programs
|
#NO_LPR= # do not build lpr and related programs
|
||||||
#NO_MAILWRAPPER= # do not build the mailwrapper(8) MTA selector
|
#NO_MAILWRAPPER= # do not build the mailwrapper(8) MTA selector
|
||||||
#NO_MAN= # do not build manual pages
|
#NO_MAN= # do not build manual pages
|
||||||
#NO_MODULES= # do not build modules with the kernel
|
#NO_MODULES= # do not build modules with the kernel
|
||||||
#NO_NIS= # do not build NIS support and related programs
|
#NO_NIS= # do not build NIS support and related programs
|
||||||
#NO_OBJC= # do not build Objective C support
|
#NO_OBJC= # do not build Objective C support
|
||||||
|
|||||||
@@ -463,7 +463,7 @@ programs and libraries related to IPv6 networking.
|
|||||||
Build
|
Build
|
||||||
.Xr ppp 8
|
.Xr ppp 8
|
||||||
without support for network address translation (NAT).
|
without support for network address translation (NAT).
|
||||||
.It Va NOATM
|
.It Va NO_ATM
|
||||||
.Pq Vt bool
|
.Pq Vt bool
|
||||||
Set to not build
|
Set to not build
|
||||||
programs and libraries related to ATM networking.
|
programs and libraries related to ATM networking.
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
.if !defined(BURN_BRIDGES)
|
.if !defined(BURN_BRIDGES)
|
||||||
.for oldnew in \
|
.for oldnew in \
|
||||||
|
NOATM:NO_ATM \
|
||||||
NOLIBC_R:NO_LIBC_R \
|
NOLIBC_R:NO_LIBC_R \
|
||||||
NOLIBPTHREAD:NO_LIBPTHREAD \
|
NOLIBPTHREAD:NO_LIBPTHREAD \
|
||||||
NOLIBTHR:NO_LIBTHR \
|
NOLIBTHR:NO_LIBTHR \
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ __<bsd.init.mk>__:
|
|||||||
.if exists(${.CURDIR}/../Makefile.inc)
|
.if exists(${.CURDIR}/../Makefile.inc)
|
||||||
.include "${.CURDIR}/../Makefile.inc"
|
.include "${.CURDIR}/../Makefile.inc"
|
||||||
.endif
|
.endif
|
||||||
|
.include <bsd.compat.mk>
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
.MAIN: all
|
.MAIN: all
|
||||||
.endif !target(__<bsd.init.mk>__)
|
.endif !target(__<bsd.init.mk>__)
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
KERNCONF?=GENERIC
|
KERNCONF?=GENERIC
|
||||||
NO_ACPI=
|
NO_ACPI=
|
||||||
NOATM=
|
NO_ATM=
|
||||||
NO_AUTHPF=
|
NO_AUTHPF=
|
||||||
NO_BLUETOOTH=
|
NO_BLUETOOTH=
|
||||||
NO_CVS=
|
NO_CVS=
|
||||||
|
|||||||
+1
-1
@@ -230,7 +230,7 @@ SUBDIR= alias \
|
|||||||
_truss= truss
|
_truss= truss
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
_atm= atm
|
_atm= atm
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -188,7 +188,7 @@ SUBDIR= ac \
|
|||||||
_sysinstall= sysinstall
|
_sysinstall= sysinstall
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
_atm= atm
|
_atm= atm
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
.PATH: ${.CURDIR}/../../../contrib/bsnmp/snmpd
|
.PATH: ${.CURDIR}/../../../contrib/bsnmp/snmpd
|
||||||
|
|
||||||
.if !defined(NOATM)
|
.if !defined(NO_ATM)
|
||||||
_snmp_atm= snmp_atm
|
_snmp_atm= snmp_atm
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ SRCS= acf.c arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c \
|
|||||||
WARNS?= 3
|
WARNS?= 3
|
||||||
.if defined(RELEASE_CRUNCH)
|
.if defined(RELEASE_CRUNCH)
|
||||||
CFLAGS+=-DRELEASE_CRUNCH
|
CFLAGS+=-DRELEASE_CRUNCH
|
||||||
NOATM=
|
NO_ATM=
|
||||||
NODES=
|
NODES=
|
||||||
NOI4B=
|
NOI4B=
|
||||||
NONAT=
|
NONAT=
|
||||||
@@ -60,7 +60,7 @@ LDADD+= -lalias
|
|||||||
DPADD+= ${LIBALIAS}
|
DPADD+= ${LIBALIAS}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if defined(NOATM)
|
.if defined(NO_ATM)
|
||||||
CFLAGS+=-DNOATM
|
CFLAGS+=-DNOATM
|
||||||
.else
|
.else
|
||||||
SRCS+= atm.c
|
SRCS+= atm.c
|
||||||
|
|||||||
Reference in New Issue
Block a user