Date: Fri, 01 Oct 1999 08:01:58 -0400 (EDT) From: John Baldwin <jobaldwi@vt.edu> To: Jeremy Shaffner <jer@jorsm.com> Cc: jseger@freebsd.org, cjclark@home.com, "Jason J. Horton" <jason@intercom.com>, "Matthew D. Fuller" <fullermd@futuresouth.com>, freebsd-stable@freebsd.org Subject: RE: NO_BIND option (Was Re: make world question) Message-ID: <199910011201.IAA72240@server.baldwin.cx> In-Reply-To: <Pine.BSF.3.95q.990930141042.15540A-100000@mercury.jorsm.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On 01-Oct-99 Jeremy Shaffner wrote: > > [Original thread can be found at the end] > > So, > > Here's what I've got so far: > > --- etc/make.conf.orig Mon Sep 20 20:59:31 1999 > +++ etc/make.conf Mon Sep 20 21:00:11 1999 > @@ -28,6 +28,9 @@ > # To avoid building sendmail > #NO_SENDMAIL= true > # > +# To avoid building BIND > +#NO_BIND= true > +# > # To have 'obj' symlinks created in your source directory > # (they aren't needed/necessary) > #OBJLINK= yes > > > --- libexec/Makefile.orig Mon Sep 20 21:00:27 1999 > +++ libexec/Makefile Mon Sep 20 23:18:14 1999 > @@ -3,12 +3,16 @@ > > # Present but disabled: kpasswdd > SUBDIR= atrun bootpd comsat fingerd ftpd getNAME getty \ > - makekey mknetid named-xfer rbootd revnetgroup rexecd \ > + makekey mknetid rbootd revnetgroup rexecd \ > rlogind rpc.rquotad rpc.rstatd rpc.rusersd rpc.rwalld \ > rpc.sprayd rshd talkd tftpd uucpd xtend ypxfr > > .if !defined(NO_SENDMAIL) > SUBDIR+=mail.local smrsh > +.endif > + > +.if !defined(NO_NAMED) ^^^^^^^^ -> shouldn't this be NO_BIND? > +SUBDIR+=named-xfer > .endif > > .if ${OBJFORMAT} == aout --- John Baldwin <jobaldwi@vt.edu> -- http://www.cslab.vt.edu/~jobaldwi/ PGP Key: http://www.cslab.vt.edu/~jobaldwi/pgpkey.asc "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199910011201.IAA72240>