Revision a2b15f63780aa6b018cd6eb9d270d001d6ea7792 authored by Xin Li on 26 July 2013, 22:40:23 UTC, committed by Xin Li on 26 July 2013, 22:40:23 UTC
Fix a bug that allows remote client bypass the normal
access checks when when -network or -host restrictions
are used at the same time with -mapall. [13:08]

Security:	CVE-2013-4854
Security:	FreeBSD-SA-13:07.bind
Security:	CVE-2013-4851
Security:	FreeBSD-SA-13:08.nfsserver
Approved by:	so
1 parent e059881
Raw File
Makefile
#	@(#)Makefile	8.1 (Berkeley) 6/5/93
# $FreeBSD$

.include <bsd.own.mk>

# Do not include `info' in the SUBDIR list, it is handled separately.

SUBDIR=	${_colldef} \
	${_dict} \
	${_doc} \
	${_examples} \
	${_i18n} \
	${_man} \
	${_me} \
	misc \
	${_mk} \
	${_mklocale} \
	${_monetdef} \
	${_msgdef} \
	${_numericdef} \
	${_sendmail} \
	skel \
	${_snmp} \
	${_syscons} \
	tabset \
	termcap \
	${_timedef} \
	${_zoneinfo}

# NB: keep these sorted by MK_* knobs

.if ${MK_BSNMP} != "no"
_snmp=		snmp
.endif

.if ${MK_DICT} != "no"
_dict=		dict
.endif

.if ${MK_EXAMPLES} != "no"
_examples=	examples
.endif

.if ${MK_GROFF} != "no"
_me=		me
.endif

.if ${MK_ICONV} != "no"
_i18n=		i18n
.endif

.if ${MK_LOCALES} != "no"
_colldef =	colldef
_mklocale =	mklocale
_monetdef =	monetdef
_msgdef =	msgdef
_numericdef =	numericdef
_timedef =	timedef
.endif

.if ${MK_MAKE} != "no"
_mk=		mk
.endif

.if ${MK_MAN} != "no"
_man=		man
.endif

.if ${MK_SENDMAIL} != "no"
_sendmail=	 sendmail
.endif

.if ${MK_SHAREDOCS} != "no"
_doc=		doc
.endif

.if ${MK_SYSCONS} != "no"
_syscons=	syscons
.endif

.if ${MK_ZONEINFO} != "no"
_zoneinfo=	zoneinfo
.endif

.include <bsd.subdir.mk>
back to top