Add a NO_LPR option. Useful for people who want to use LPRng.

PR:	bin/18787 (David Gilbert <dgilbert@velocet.ca>)
This commit is contained in:
Tim Vanderhoek 2000-05-31 21:45:15 +00:00
parent 91bb0c05fe
commit 8c0e8d96d2
3 changed files with 6 additions and 1 deletions

View File

@ -45,6 +45,7 @@
#NO_CVS= true # do not build CVS
#NO_BIND= true # do not build BIND
#NO_FORTRAN= true # do not build g77 and related libraries
#NO_LPR= true # do not build lpr and related programs
#NO_MAILWRAPPER=true # do not build the mailwrapper(8) MTA selector
#NO_MODULES= true # do not build modules with the kernel
#NO_OBJC= true # do not build Objective C support

View File

@ -45,6 +45,7 @@
#NO_CVS= true # do not build CVS
#NO_BIND= true # do not build BIND
#NO_FORTRAN= true # do not build g77 and related libraries
#NO_LPR= true # do not build lpr and related programs
#NO_MAILWRAPPER=true # do not build the mailwrapper(8) MTA selector
#NO_MODULES= true # do not build modules with the kernel
#NO_OBJC= true # do not build Objective C support

View File

@ -43,7 +43,6 @@ SUBDIR= IPXrouted \
kbdmap \
kernbb \
keyserv \
lpr \
manctl \
memcontrol \
mergemaster \
@ -132,6 +131,10 @@ SUBDIR+=named \
nsupdate
.endif
.if !defined(NO_LPR)
SUBDIR+=lpr
.endif
.if !defined(NO_MAILWRAPPER)
SUBDIR+=mailwrapper
.endif