Add MK_FILE and MK_SQLITE3

- MK_FILE will conditionalize building lib/libmagic and usr.bin/file
- MK_SQLITE3 will conditionalize building lib/libsqlite3, and will disable
  MK_SVN/MK_SVNLITE by proxy
This commit is contained in:
Enji Cooper 2014-11-30 00:45:33 +00:00
parent 010546ec14
commit 65ea08621f
3 changed files with 13 additions and 0 deletions

View File

@ -81,6 +81,7 @@ __DEFAULT_YES_OPTIONS = \
EE \
EXAMPLES \
FDT \
FILE \
FINGER \
FLOPPY \
FMTREE \
@ -151,6 +152,7 @@ __DEFAULT_YES_OPTIONS = \
SOURCELESS \
SOURCELESS_HOST \
SOURCELESS_UCODE \
SQLITE3 \
SVNLITE \
SYSCALL_COMPAT \
SYSCONS \
@ -327,6 +329,11 @@ MK_KERBEROS:= no
MK_AUTHPF:= no
.endif
.if ${MK_SQLITE3} == "no"
MK_SVN:= no
MK_SVNLITE:= no
.endif
.if ${MK_TEXTPROC} == "no"
MK_GROFF:= no
.endif

View File

@ -0,0 +1,4 @@
.\" $FreeBSD$
Set to not build
.Xr file 1
and related programs.

View File

@ -0,0 +1,2 @@
.\" $FreeBSD$
Set to not build all sqlite3 applications and libraries.